-- MySQL dump 10.19  Distrib 10.3.37-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: midura5_wlvrot1
-- ------------------------------------------------------
-- Server version	10.3.37-MariaDB-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' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpwlvrot_bwg_album`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_album`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_album` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `description` mediumtext NOT NULL,
  `preview_image` mediumtext NOT NULL,
  `random_preview_image` mediumtext NOT NULL,
  `order` bigint(20) NOT NULL,
  `author` bigint(20) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `modified_date` int(10) NOT NULL,
  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 `wpwlvrot_bwg_album`
--

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

--
-- Table structure for table `wpwlvrot_bwg_album_gallery`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_album_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_album_gallery` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `album_id` bigint(20) NOT NULL,
  `is_album` tinyint(1) NOT NULL,
  `alb_gal_id` bigint(20) NOT NULL,
  `order` bigint(20) NOT NULL,
  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 `wpwlvrot_bwg_album_gallery`
--

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

--
-- Table structure for table `wpwlvrot_bwg_file_paths`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_file_paths`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_file_paths` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `is_dir` tinyint(1) DEFAULT 0,
  `path` mediumtext DEFAULT NULL,
  `type` varchar(5) DEFAULT NULL,
  `name` varchar(250) DEFAULT NULL,
  `filename` varchar(250) DEFAULT NULL,
  `alt` varchar(250) DEFAULT NULL,
  `thumb` varchar(250) DEFAULT NULL,
  `size` varchar(10) DEFAULT NULL,
  `resolution` varchar(15) DEFAULT NULL,
  `resolution_thumb` varchar(15) DEFAULT NULL,
  `credit` varchar(250) DEFAULT NULL,
  `aperture` int(10) DEFAULT NULL,
  `camera` varchar(250) DEFAULT NULL,
  `caption` varchar(250) DEFAULT NULL,
  `iso` int(10) DEFAULT NULL,
  `orientation` int(10) DEFAULT NULL,
  `copyright` varchar(250) DEFAULT NULL,
  `tags` mediumtext DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  `author` bigint(20) DEFAULT 1,
  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 `wpwlvrot_bwg_file_paths`
--

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

--
-- Table structure for table `wpwlvrot_bwg_gallery`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_gallery` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `description` mediumtext NOT NULL,
  `page_link` mediumtext NOT NULL,
  `preview_image` mediumtext NOT NULL,
  `random_preview_image` mediumtext NOT NULL,
  `order` bigint(20) NOT NULL,
  `author` bigint(20) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `gallery_type` varchar(32) NOT NULL,
  `gallery_source` varchar(256) NOT NULL,
  `autogallery_image_number` int(4) NOT NULL,
  `update_flag` varchar(32) NOT NULL,
  `modified_date` int(10) NOT NULL,
  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 `wpwlvrot_bwg_gallery`
--

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

--
-- Table structure for table `wpwlvrot_bwg_image`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_image` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `gallery_id` bigint(20) NOT NULL,
  `slug` longtext NOT NULL,
  `filename` varchar(255) NOT NULL,
  `image_url` mediumtext NOT NULL,
  `thumb_url` mediumtext NOT NULL,
  `description` mediumtext NOT NULL,
  `alt` mediumtext NOT NULL,
  `date` varchar(128) NOT NULL,
  `size` varchar(128) NOT NULL,
  `filetype` varchar(128) NOT NULL,
  `resolution` varchar(128) NOT NULL,
  `resolution_thumb` varchar(128) NOT NULL,
  `author` bigint(20) NOT NULL,
  `order` bigint(20) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `comment_count` bigint(20) NOT NULL,
  `avg_rating` float NOT NULL,
  `rate_count` bigint(20) NOT NULL,
  `hit_count` bigint(20) NOT NULL,
  `redirect_url` varchar(255) NOT NULL,
  `pricelist_id` bigint(20) NOT NULL,
  `modified_date` int(10) NOT NULL,
  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 `wpwlvrot_bwg_image`
--

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

--
-- Table structure for table `wpwlvrot_bwg_image_comment`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_image_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_image_comment` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `image_id` bigint(20) NOT NULL,
  `name` varchar(255) NOT NULL,
  `date` varchar(64) NOT NULL,
  `comment` mediumtext NOT NULL,
  `url` mediumtext NOT NULL,
  `mail` mediumtext NOT NULL,
  `published` tinyint(1) NOT NULL,
  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 `wpwlvrot_bwg_image_comment`
--

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

--
-- Table structure for table `wpwlvrot_bwg_image_rate`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_image_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_image_rate` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `image_id` bigint(20) NOT NULL,
  `rate` float NOT NULL,
  `ip` varchar(64) NOT NULL,
  `date` varchar(64) NOT NULL,
  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 `wpwlvrot_bwg_image_rate`
--

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

--
-- Table structure for table `wpwlvrot_bwg_image_tag`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_image_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_image_tag` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tag_id` bigint(20) NOT NULL,
  `image_id` bigint(20) NOT NULL,
  `gallery_id` bigint(20) NOT NULL,
  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 `wpwlvrot_bwg_image_tag`
--

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

--
-- Table structure for table `wpwlvrot_bwg_shortcode`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_shortcode`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_shortcode` (
  `id` bigint(20) NOT NULL,
  `tagtext` mediumtext NOT NULL,
  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 `wpwlvrot_bwg_shortcode`
--

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

--
-- Table structure for table `wpwlvrot_bwg_theme`
--

DROP TABLE IF EXISTS `wpwlvrot_bwg_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_bwg_theme` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `options` longtext NOT NULL,
  `default_theme` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_bwg_theme`
--

LOCK TABLES `wpwlvrot_bwg_theme` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_bwg_theme` DISABLE KEYS */;
INSERT INTO `wpwlvrot_bwg_theme` VALUES (1,'Light','{\"album_compact_back_font_color\":\"323A45\",\"album_compact_back_font_size\":15,\"album_compact_back_font_style\":\"Ubuntu\",\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_gal_title_align\":\"center\",\"album_compact_gal_title_font_color\":\"323A45\",\"album_compact_gal_title_font_size\":18,\"album_compact_gal_title_font_style\":\"Ubuntu\",\"album_compact_gal_title_font_weight\":\"bold\",\"album_compact_gal_title_margin\":\"0 2px 2px 2px\",\"album_compact_gal_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_bg_color\":\"000000\",\"album_compact_thumb_bg_transparent\":0,\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_width\":0,\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_hover_effect\":\"zoom\",\"album_compact_thumb_hover_effect_value\":\"1.08\",\"album_compact_thumb_margin\":4,\"album_compact_thumb_padding\":0,\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_thumb_transition\":1,\"album_compact_thumb_transparent\":100,\"album_compact_thumb_bg_transparency\":30,\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_title_font_color\":\"323A45\",\"album_compact_title_font_color_hover\":\"FFFFFF\",\"album_compact_title_font_size\":16,\"album_compact_title_font_style\":\"Ubuntu\",\"album_compact_title_font_weight\":\"bold\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_extended_back_font_color\":\"000000\",\"album_extended_back_font_size\":20,\"album_extended_back_font_style\":\"Ubuntu\",\"album_extended_back_font_weight\":\"bold\",\"album_extended_back_padding\":\"0\",\"album_extended_desc_font_color\":\"5C5C5C\",\"album_extended_desc_font_size\":16,\"album_extended_desc_font_style\":\"Ubuntu\",\"album_extended_desc_font_weight\":\"normal\",\"album_extended_desc_more_color\":\"007AFF\",\"album_extended_desc_more_size\":12,\"album_extended_desc_padding\":\"0px 0px 0px 0px\",\"album_extended_desc_span_border_color\":\"CCCCCC\",\"album_extended_desc_span_border_style\":\"none\",\"album_extended_desc_span_border_width\":0,\"album_extended_div_bg_color\":\"FAFAFA\",\"album_extended_div_bg_transparent\":0,\"album_extended_div_border_radius\":\"14px\",\"album_extended_div_margin\":\"20px 20px 0px 0px\",\"album_extended_div_padding\":0,\"album_extended_div_separator_color\":\"E0E0E0\",\"album_extended_div_separator_style\":\"solid\",\"album_extended_div_separator_width\":0,\"album_extended_gal_title_align\":\"right\",\"album_extended_gal_title_font_color\":\"CCCCCC\",\"album_extended_gal_title_font_size\":16,\"album_extended_gal_title_font_style\":\"Ubuntu\",\"album_extended_gal_title_font_weight\":\"bold\",\"album_extended_gal_title_margin\":\"2px\",\"album_extended_gal_title_shadow\":\"0px 0px 0px #888888\",\"album_extended_text_div_bg_color\":\"FAFAFA\",\"album_extended_text_div_border_color\":\"E8E8E8\",\"album_extended_text_div_border_radius\":\"0\",\"album_extended_text_div_border_style\":\"none\",\"album_extended_text_div_border_width\":0,\"album_extended_text_div_padding\":\"16px\",\"album_extended_thumb_align\":\"left\",\"album_extended_thumb_bg_color\":\"FFFFFF\",\"album_extended_thumb_bg_transparent\":0,\"album_extended_thumb_border_color\":\"FAFAFA\",\"album_extended_thumb_border_radius\":\"10px\",\"album_extended_thumb_border_style\":\"none\",\"album_extended_thumb_border_width\":0,\"album_extended_thumb_box_shadow\":\"\",\"album_extended_thumb_div_bg_color\":\"FAFAFA\",\"album_extended_thumb_div_border_color\":\"E8E8E8\",\"album_extended_thumb_div_border_radius\":\"\",\"album_extended_thumb_div_border_style\":\"none\",\"album_extended_thumb_div_border_width\":0,\"album_extended_thumb_div_padding\":\"14px\",\"album_extended_thumb_hover_effect\":\"none\",\"album_extended_thumb_hover_effect_value\":\"1.03\",\"album_extended_thumb_margin\":0,\"album_extended_thumb_padding\":0,\"album_extended_thumb_transition\":0,\"album_extended_thumb_transparent\":100,\"album_extended_thumbs_bg_color\":\"FFFFFF\",\"album_extended_title_desc_alignment\":\"top\",\"album_extended_title_font_color\":\"000000\",\"album_extended_title_font_size\":22,\"album_extended_title_font_style\":\"Ubuntu\",\"album_extended_title_font_weight\":\"bold\",\"album_extended_title_margin_bottom\":0,\"album_extended_title_padding\":\"0px 0px 0px 0px\",\"album_extended_title_span_border_color\":\"CCCCCC\",\"album_extended_title_span_border_style\":\"none\",\"album_extended_title_span_border_width\":0,\"album_masonry_back_font_color\":\"323A45\",\"album_masonry_back_font_size\":15,\"album_masonry_back_font_style\":\"Ubuntu\",\"album_masonry_back_font_weight\":\"bold\",\"album_masonry_back_padding\":\"0\",\"album_masonry_container_margin\":1,\"album_masonry_gal_title_align\":\"center\",\"album_masonry_gal_title_font_color\":\"323A45\",\"album_masonry_gal_title_font_size\":18,\"album_masonry_gal_title_font_style\":\"Ubuntu\",\"album_masonry_gal_title_font_weight\":\"bold\",\"album_masonry_gal_title_margin\":\"0 2px 2px 2px\",\"album_masonry_gal_title_shadow\":\"0px 0px 0px #888888\",\"album_masonry_thumb_align\":\"center\",\"album_masonry_thumb_bg_color\":\"000000\",\"album_masonry_thumb_bg_transparent\":0,\"album_masonry_thumb_border_color\":\"CCCCCC\",\"album_masonry_thumb_border_radius\":\"0\",\"album_masonry_thumb_border_style\":\"none\",\"album_masonry_thumb_border_width\":0,\"album_masonry_thumb_box_shadow\":\"\",\"album_masonry_thumb_hover_effect\":\"zoom\",\"album_masonry_thumb_hover_effect_value\":\"1.08\",\"album_masonry_thumb_margin\":0,\"album_masonry_thumb_padding\":4,\"album_masonry_thumb_title_font_color_hover\":\"FFFFFF\",\"album_masonry_thumb_title_pos\":\"bottom\",\"album_masonry_thumb_transition\":1,\"album_masonry_thumb_transparent\":100,\"album_masonry_thumbs_bg_color\":\"FFFFFF\",\"album_masonry_title_font_color\":\"323A45\",\"album_masonry_title_font_size\":16,\"album_masonry_title_font_style\":\"Ubuntu\",\"album_masonry_title_font_weight\":\"bold\",\"album_masonry_title_margin\":\"\",\"album_masonry_title_shadow\":\"0px 0px 0px #888888\",\"blog_style_align\":\"center\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_border_color\":\"F5F5F5\",\"blog_style_border_radius\":\"0\",\"blog_style_border_style\":\"solid\",\"blog_style_border_width\":1,\"blog_style_box_shadow\":\"\",\"blog_style_gal_title_align\":\"center\",\"blog_style_gal_title_font_color\":\"323A45\",\"blog_style_gal_title_font_size\":16,\"blog_style_gal_title_font_style\":\"Ubuntu\",\"blog_style_gal_title_font_weight\":\"bold\",\"blog_style_gal_title_margin\":\"2px\",\"blog_style_gal_title_shadow\":\"0px 0px 0px #888888\",\"blog_style_img_font_color\":\"000000\",\"blog_style_img_font_family\":\"Ubuntu\",\"blog_style_img_font_size\":16,\"blog_style_margin\":\"2px\",\"blog_style_padding\":\"0\",\"blog_style_share_buttons_align\":\"right\",\"blog_style_share_buttons_bg_color\":\"FFFFFF\",\"blog_style_share_buttons_bg_transparent\":0,\"blog_style_share_buttons_border_color\":\"000000\",\"blog_style_share_buttons_border_radius\":\"0\",\"blog_style_share_buttons_border_style\":\"none\",\"blog_style_share_buttons_border_width\":0,\"blog_style_share_buttons_color\":\"B3AFAF\",\"blog_style_share_buttons_font_size\":20,\"blog_style_share_buttons_margin\":\"5px auto 10px auto\",\"blog_style_transparent\":80,\"carousel_caption_background_color\":\"000000\",\"carousel_caption_bottom\":0,\"carousel_caption_p_color\":\"FFFFFF\",\"carousel_caption_p_font_size\":14,\"carousel_caption_p_font_weight\":\"bold\",\"carousel_caption_p_mergin\":0,\"carousel_caption_p_pedding\":5,\"carousel_close_btn_transparent\":50,\"carousel_close_rl_btn_hover_color\":\"191919\",\"carousel_cont_bg_color\":\"000000\",\"carousel_cont_btn_transparent\":0,\"carousel_feature_border_color\":\"5D204F\",\"carousel_feature_border_style\":\"none\",\"carousel_feature_border_width\":2,\"carousel_font_family\":\"arial\",\"carousel_mergin_bottom\":\"0.5\",\"carousel_play_pause_btn_size\":25,\"carousel_rl_btn_bg_color\":\"FFFFFF\",\"carousel_rl_btn_border_color\":\"FFFFFF\",\"carousel_rl_btn_border_radius\":\"20px\",\"carousel_rl_btn_border_style\":\"none\",\"carousel_rl_btn_border_width\":0,\"carousel_rl_btn_color\":\"303030\",\"carousel_rl_btn_height\":35,\"carousel_rl_btn_size\":15,\"carousel_rl_btn_style\":\"bwg-icon-angle\",\"carousel_rl_btn_width\":35,\"carousel_title_border_radius\":\"5px\",\"carousel_title_opacity\":100,\"carousel_gal_title_align\":\"center\",\"carousel_gal_title_font_color\":\"323A45\",\"carousel_gal_title_font_size\":16,\"carousel_gal_title_font_style\":\"Ubuntu\",\"carousel_gal_title_font_weight\":\"bold\",\"carousel_gal_title_margin\":\"2px\",\"carousel_gal_title_shadow\":\"0px 0px 0px #888888\",\"compact_container_margin\":\"1\",\"container_margin\":\"1\",\"image_browser_align\":\"center\",\"image_browser_bg_color\":\"EBEBEB\",\"image_browser_border_color\":\"F5F5F5\",\"image_browser_border_radius\":\"0\",\"image_browser_border_style\":\"none\",\"image_browser_border_width\":1,\"image_browser_box_shadow\":\"\",\"image_browser_full_bg_color\":\"F5F5F5\",\"image_browser_full_border_color\":\"F7F7F7\",\"image_browser_full_border_radius\":\"0\",\"image_browser_full_border_style\":\"none\",\"image_browser_full_border_width\":2,\"image_browser_full_padding\":\"4px\",\"image_browser_full_transparent\":90,\"image_browser_gal_title_align\":\"center\",\"image_browser_gal_title_font_color\":\"323A45\",\"image_browser_gal_title_font_size\":16,\"image_browser_gal_title_font_style\":\"Ubuntu\",\"image_browser_gal_title_font_weight\":\"bold\",\"image_browser_gal_title_margin\":\"2px\",\"image_browser_gal_title_shadow\":\"0px 0px 0px #888888\",\"image_browser_image_description_align\":\"center\",\"image_browser_image_description_bg_color\":\"EBEBEB\",\"image_browser_image_description_border_color\":\"FFFFFF\",\"image_browser_image_description_border_radius\":\"0\",\"image_browser_image_description_border_style\":\"none\",\"image_browser_image_description_border_width\":1,\"image_browser_image_description_margin\":\"0px 5px 0px 5px\",\"image_browser_image_description_padding\":\"8px 8px 8px 8px\",\"image_browser_image_title_align\":\"top\",\"image_browser_img_font_color\":\"000000\",\"image_browser_img_font_family\":\"Ubuntu\",\"image_browser_img_font_size\":15,\"image_browser_margin\":\"2px auto\",\"image_browser_padding\":\"4px\",\"image_browser_transparent\":80,\"lightbox_bg_color\":\"FFFFFF\",\"lightbox_bg_transparent\":100,\"lightbox_close_btn_bg_color\":\"FFFFFF\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_width\":2,\"lightbox_close_btn_box_shadow\":\"\",\"lightbox_close_btn_color\":\"808080\",\"lightbox_close_btn_full_color\":\"000000\",\"lightbox_close_btn_height\":30,\"lightbox_close_btn_right\":\"-15\",\"lightbox_close_btn_size\":20,\"lightbox_close_btn_top\":\"-20\",\"lightbox_close_btn_transparent\":60,\"lightbox_close_btn_width\":30,\"lightbox_close_rl_btn_hover_color\":\"808080\",\"lightbox_comment_author_font_size\":14,\"lightbox_comment_bg_color\":\"FFFFFF\",\"lightbox_comment_body_font_size\":12,\"lightbox_comment_button_bg_color\":\"2F2F2F\",\"lightbox_comment_button_border_color\":\"666666\",\"lightbox_comment_button_border_radius\":\"7px\",\"lightbox_comment_button_border_style\":\"none\",\"lightbox_comment_button_border_width\":1,\"lightbox_comment_button_padding\":\"10px 10px\",\"lightbox_comment_date_font_size\":10,\"lightbox_comment_font_color\":\"7A7A7A\",\"lightbox_comment_font_size\":12,\"lightbox_comment_font_style\":\"Ubuntu\",\"lightbox_comment_input_bg_color\":\"F7F8F9\",\"lightbox_comment_input_border_color\":\"EBEBEB\",\"lightbox_comment_input_border_radius\":\"7px\",\"lightbox_comment_input_border_style\":\"none\",\"lightbox_comment_input_border_width\":2,\"lightbox_comment_input_padding\":\"5px\",\"lightbox_comment_pos\":\"left\",\"lightbox_comment_separator_color\":\"383838\",\"lightbox_comment_separator_style\":\"none\",\"lightbox_comment_separator_width\":20,\"lightbox_comment_share_button_color\":\"808080\",\"lightbox_comment_width\":350,\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_color\":\"808080\",\"lightbox_ctrl_btn_height\":20,\"lightbox_ctrl_btn_margin_left\":7,\"lightbox_ctrl_btn_margin_top\":10,\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_transparent\":100,\"lightbox_ctrl_cont_bg_color\":\"FFFFFF\",\"lightbox_ctrl_cont_border_radius\":4,\"lightbox_ctrl_cont_transparent\":85,\"lightbox_description_color\":\"B0B0B0\",\"lightbox_description_font_size\":\"13\",\"lightbox_description_font_style\":\"Ubuntu\",\"lightbox_description_font_weight\":\"bold\",\"lightbox_filmstrip_pos\":\"bottom\",\"lightbox_filmstrip_rl_bg_color\":\"EBEBEB\",\"lightbox_filmstrip_rl_btn_color\":\"808080\",\"lightbox_filmstrip_rl_btn_size\":20,\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_filmstrip_thumb_active_border_width\":0,\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_border_style\":\"none\",\"lightbox_filmstrip_thumb_border_width\":1,\"lightbox_filmstrip_thumb_deactive_transparent\":80,\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_hit_align\":\"left\",\"lightbox_hit_bg_color\":\"000000\",\"lightbox_hit_bg_transparent\":\"70\",\"lightbox_hit_border_color\":\"000000\",\"lightbox_hit_border_radius\":\"5px\",\"lightbox_hit_border_style\":\"none\",\"lightbox_hit_border_width\":\"1\",\"lightbox_hit_color\":\"FFFFFF\",\"lightbox_hit_font_size\":14,\"lightbox_hit_font_style\":\"Ubuntu\",\"lightbox_hit_font_weight\":\"normal\",\"lightbox_hit_margin\":\"0 5px\",\"lightbox_hit_padding\":\"5px\",\"lightbox_hit_pos\":\"bottom\",\"lightbox_info_align\":\"left\",\"lightbox_info_bg_color\":\"FFFFFF\",\"lightbox_info_bg_transparent\":\"70\",\"lightbox_info_border_color\":\"000000\",\"lightbox_info_border_radius\":\"0px\",\"lightbox_info_border_style\":\"none\",\"lightbox_info_border_width\":\"1\",\"lightbox_info_margin\":\"10px 10px -5px 10px\",\"lightbox_info_padding\":\"10px 7px 44px 10px\",\"lightbox_info_pos\":\"bottom\",\"lightbox_overlay_bg_color\":\"EEEEEE\",\"lightbox_overlay_bg_transparent\":60,\"lightbox_rate_align\":\"left\",\"lightbox_rate_color\":\"F9D062\",\"lightbox_rate_hover_color\":\"F7B50E\",\"lightbox_rate_icon\":\"star\",\"lightbox_rate_padding\":\"15px\",\"lightbox_rate_pos\":\"top\",\"lightbox_rate_size\":\"20\",\"lightbox_rate_stars_count\":\"5\",\"lightbox_rl_btn_bg_color\":\"FFFFFF\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_width\":0,\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"ADADAD\",\"lightbox_rl_btn_height\":35,\"lightbox_rl_btn_size\":25,\"lightbox_rl_btn_style\":\"bwg-icon-angle\",\"lightbox_rl_btn_transparent\":\"60\",\"lightbox_rl_btn_width\":35,\"lightbox_title_color\":\"808080\",\"lightbox_title_font_size\":\"16\",\"lightbox_title_font_style\":\"Ubuntu\",\"lightbox_title_font_weight\":\"bold\",\"lightbox_toggle_btn_height\":20,\"lightbox_toggle_btn_width\":100,\"masonry_container_margin\":\"1\",\"masonry_description_color\":\"323A45\",\"masonry_description_font_size\":16,\"masonry_description_font_style\":\"Ubuntu\",\"masonry_thumb_align\":\"center\",\"masonry_thumb_bg_color\":\"000000\",\"masonry_thumb_bg_transparent\":\"0\",\"masonry_thumb_border_color\":\"CCCCCC\",\"masonry_thumb_border_radius\":\"0\",\"masonry_thumb_border_style\":\"none\",\"masonry_thumb_border_width\":\"0\",\"masonry_thumb_gal_title_align\":\"center\",\"masonry_thumb_gal_title_font_color\":\"323A45\",\"masonry_thumb_gal_title_font_size\":16,\"masonry_thumb_gal_title_font_style\":\"Ubuntu\",\"masonry_thumb_gal_title_font_weight\":\"bold\",\"masonry_thumb_gal_title_margin\":\"2px\",\"masonry_thumb_gal_title_shadow\":\"\",\"masonry_thumb_hover_effect\":\"zoom\",\"masonry_thumb_hover_effect_value\":\"1.08\",\"masonry_thumb_padding\":\"4\",\"masonry_thumb_title_font_color\":\"323A45\",\"masonry_thumb_title_font_color_hover\":\"FFFFFF\",\"masonry_thumb_title_font_size\":16,\"masonry_thumb_title_font_style\":\"Ubuntu\",\"masonry_thumb_title_font_weight\":\"bold\",\"masonry_thumb_title_margin\":\"2px\",\"masonry_thumb_transition\":\"1\",\"masonry_thumb_transparent\":\"100\",\"masonry_thumb_bg_transparency\":\"30\",\"masonry_thumbs_bg_color\":\"FFFFFF\",\"mosaic_container_margin\":\"1\",\"mosaic_thumb_align\":\"center\",\"mosaic_thumb_bg_color\":\"000000\",\"mosaic_thumb_bg_transparent\":\"0\",\"mosaic_thumb_border_color\":\"CCCCCC\",\"mosaic_thumb_border_radius\":\"0\",\"mosaic_thumb_border_style\":\"none\",\"mosaic_thumb_border_width\":\"0\",\"mosaic_thumb_gal_title_align\":\"center\",\"mosaic_thumb_gal_title_font_color\":\"323A45\",\"mosaic_thumb_gal_title_font_size\":16,\"mosaic_thumb_gal_title_font_style\":\"Ubuntu\",\"mosaic_thumb_gal_title_font_weight\":\"bold\",\"mosaic_thumb_gal_title_margin\":\"2px\",\"mosaic_thumb_gal_title_shadow\":\"\",\"mosaic_thumb_hover_effect\":\"zoom\",\"mosaic_thumb_hover_effect_value\":\"1.08\",\"mosaic_thumb_padding\":\"2\",\"mosaic_thumb_title_font_color\":\"323A45\",\"mosaic_thumb_title_font_color_hover\":\"FFFFFF\",\"mosaic_thumb_title_font_size\":16,\"mosaic_thumb_title_font_style\":\"Ubuntu\",\"mosaic_thumb_title_font_weight\":\"bold\",\"mosaic_thumb_title_margin\":\"2px\",\"mosaic_thumb_title_shadow\":\"\",\"mosaic_thumb_transition\":\"1\",\"mosaic_thumb_transparent\":\"100\",\"mosaic_thumb_bg_transparency\":\"30\",\"mosaic_thumbs_bg_color\":\"FFFFFF\",\"page_nav_align\":\"center\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_border_style\":\"solid\",\"page_nav_border_width\":1,\"page_nav_box_shadow\":\"0\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":100,\"page_nav_button_text\":0,\"page_nav_button_transition\":1,\"page_nav_font_color\":\"666666\",\"page_nav_font_size\":12,\"page_nav_font_style\":\"Ubuntu\",\"page_nav_font_weight\":\"bold\",\"page_nav_margin\":\"0\",\"page_nav_number\":0,\"page_nav_padding\":\"3px 6px\",\"page_nav_position\":\"bottom\",\"slideshow_close_btn_transparent\":100,\"slideshow_close_rl_btn_hover_color\":\"BABABA\",\"slideshow_cont_bg_color\":\"F2F2F2\",\"slideshow_description_background_color\":\"000000\",\"slideshow_description_border_radius\":\"0\",\"slideshow_description_color\":\"FFFFFF\",\"slideshow_description_font\":\"Ubuntu\",\"slideshow_description_font_size\":14,\"slideshow_description_opacity\":70,\"slideshow_description_padding\":\"5px 10px 5px 10px\",\"slideshow_dots_active_background_color\":\"FFFFFF\",\"slideshow_dots_active_border_color\":\"000000\",\"slideshow_dots_active_border_width\":1,\"slideshow_dots_background_color\":\"F2D22E\",\"slideshow_dots_border_radius\":\"5px\",\"slideshow_dots_height\":12,\"slideshow_dots_margin\":3,\"slideshow_dots_width\":12,\"slideshow_filmstrip_pos\":\"bottom\",\"slideshow_filmstrip_rl_bg_color\":\"F2F2F2\",\"slideshow_filmstrip_rl_btn_color\":\"BABABA\",\"slideshow_filmstrip_rl_btn_size\":20,\"slideshow_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"slideshow_filmstrip_thumb_active_border_width\":0,\"slideshow_filmstrip_thumb_border_color\":\"000000\",\"slideshow_filmstrip_thumb_border_radius\":\"0\",\"slideshow_filmstrip_thumb_border_style\":\"none\",\"slideshow_filmstrip_thumb_border_width\":0,\"slideshow_filmstrip_thumb_deactive_transparent\":100,\"slideshow_filmstrip_thumb_margin\":\"0px 2px 0 0 \",\"slideshow_play_pause_btn_size\":35,\"slideshow_rl_btn_bg_color\":\"FFFFFF\",\"slideshow_rl_btn_border_color\":\"FFFFFF\",\"slideshow_rl_btn_border_radius\":\"20px\",\"slideshow_rl_btn_border_style\":\"none\",\"slideshow_rl_btn_border_width\":0,\"slideshow_rl_btn_box_shadow\":\"\",\"slideshow_rl_btn_color\":\"D6D6D6\",\"slideshow_rl_btn_height\":37,\"slideshow_rl_btn_size\":12,\"slideshow_rl_btn_style\":\"bwg-icon-angle\",\"slideshow_rl_btn_width\":37,\"slideshow_title_background_color\":\"000000\",\"slideshow_title_border_radius\":\"5px\",\"slideshow_title_color\":\"FFFFFF\",\"slideshow_title_font\":\"Ubuntu\",\"slideshow_title_font_size\":16,\"slideshow_title_opacity\":70,\"slideshow_title_padding\":\"0 0 0 0\",\"thumb_align\":\"center\",\"thumb_bg_color\":\"000000\",\"thumb_bg_transparent\":0,\"thumb_border_color\":\"CCCCCC\",\"thumb_border_radius\":\"0\",\"thumb_border_style\":\"none\",\"thumb_border_width\":0,\"thumb_box_shadow\":\"\",\"thumb_gal_title_align\":\"center\",\"thumb_gal_title_font_color\":\"323A45\",\"thumb_gal_title_font_size\":18,\"thumb_gal_title_font_style\":\"Ubuntu\",\"thumb_gal_title_font_weight\":\"bold\",\"thumb_gal_title_margin\":\"2px\",\"thumb_gal_title_shadow\":\"\",\"thumb_hover_effect\":\"zoom\",\"thumb_hover_effect_value\":\"1.08\",\"thumb_margin\":\"4\",\"thumb_padding\":\"0\",\"thumb_title_font_color\":\"323A45\",\"thumb_title_font_color_hover\":\"FFFFFF\",\"thumb_title_font_size\":16,\"thumb_title_font_style\":\"Ubuntu\",\"thumb_title_font_weight\":\"bold\",\"thumb_title_margin\":\"2px\",\"thumb_description_font_color\":\"323A45\",\"thumb_description_font_style\":\"Ubuntu\",\"thumb_description_font_size\":12,\"thumb_title_pos\":\"bottom\",\"thumb_title_shadow\":\"\",\"thumb_transition\":1,\"thumb_transparent\":100,\"thumb_bg_transparency\":30,\"thumbs_bg_color\":\"FFFFFF\",\"tags_view\":1,\"tags_but_font_color\":\"323A45\",\"tags_but_font_size\":14,\"tags_but_font_style\":\"Ubuntu\",\"tags_but_font_weight\":\"normal\",\"tags_but_margin\":\"0px 5px 10px 5px\",\"tags_but_padding\":\"6px 6px 6px 6px\",\"tags_but_border_width\":0,\"tags_but_border_style\":\"none\",\"tags_but_border_color\":\"E9EBEE\",\"tags_but_border_radius\":\"4px\",\"tags_but_bg_color\":\"E9EBEE\",\"tags_but_active_bg_color\":\"2160B5\",\"tags_but_active_color\":\"FFFFFF\",\"tags_but_see_all_size\":14,\"tags_but_see_all_color\":\"323A45\",\"tags_but_see_all_back_color\":\"F8F8F8\",\"tags_but_see_all_border_w\":1,\"tags_but_see_all_border_s\":\"solid\",\"tags_but_see_all_border_c\":\"E5E5E5\",\"tags_but_see_all_border_r\":\"20px\"}',1),(2,'Dark','{\"album_compact_back_font_color\":\"323A45\",\"album_compact_back_font_size\":15,\"album_compact_back_font_style\":\"Ubuntu\",\"album_compact_back_font_weight\":\"normal\",\"album_compact_back_padding\":\"0\",\"album_compact_gal_title_align\":\"center\",\"album_compact_gal_title_font_color\":\"323A45\",\"album_compact_gal_title_font_size\":18,\"album_compact_gal_title_font_style\":\"Ubuntu\",\"album_compact_gal_title_font_weight\":\"bold\",\"album_compact_gal_title_margin\":\"0 2px 2px 2px\",\"album_compact_gal_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_bg_color\":\"000000\",\"album_compact_thumb_bg_transparent\":100,\"album_compact_thumb_border_color\":\"000000\",\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_width\":1,\"album_compact_thumb_box_shadow\":\"\",\"album_compact_thumb_hover_effect\":\"rotate\",\"album_compact_thumb_hover_effect_value\":\"2deg\",\"album_compact_thumb_margin\":4,\"album_compact_thumb_padding\":4,\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_thumb_transition\":1,\"album_compact_thumb_transparent\":100,\"album_compact_thumb_bg_transparency\":30,\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_title_font_color\":\"CCCCCC\",\"album_compact_title_font_color_hover\":\"FFFFFF\",\"album_compact_title_font_size\":16,\"album_compact_title_font_style\":\"Ubuntu\",\"album_compact_title_font_weight\":\"bold\",\"album_compact_title_margin\":\"5px\",\"album_compact_title_shadow\":\"\",\"album_extended_back_font_color\":\"323A45\",\"album_extended_back_font_size\":15,\"album_extended_back_font_style\":\"Ubuntu\",\"album_extended_back_font_weight\":\"bold\",\"album_extended_back_padding\":\"0\",\"album_extended_desc_font_color\":\"000000\",\"album_extended_desc_font_size\":14,\"album_extended_desc_font_style\":\"Ubuntu\",\"album_extended_desc_font_weight\":\"normal\",\"album_extended_desc_more_color\":\"FFC933\",\"album_extended_desc_more_size\":12,\"album_extended_desc_padding\":\"2px\",\"album_extended_desc_span_border_color\":\"CCCCCC\",\"album_extended_desc_span_border_style\":\"none\",\"album_extended_desc_span_border_width\":1,\"album_extended_div_bg_color\":\"FFFFFF\",\"album_extended_div_bg_transparent\":0,\"album_extended_div_border_radius\":\"\",\"album_extended_div_margin\":\"0 0 5px 0\",\"album_extended_div_padding\":10,\"album_extended_div_separator_color\":\"CCCCCC\",\"album_extended_div_separator_style\":\"none\",\"album_extended_div_separator_width\":1,\"album_extended_gal_title_align\":\"center\",\"album_extended_gal_title_font_color\":\"323A45\",\"album_extended_gal_title_font_size\":18,\"album_extended_gal_title_font_style\":\"Ubuntu\",\"album_extended_gal_title_font_weight\":\"bold\",\"album_extended_gal_title_margin\":\"0 2px 2px 2px\",\"album_extended_gal_title_shadow\":\"0px 0px 0px #888888\",\"album_extended_text_div_bg_color\":\"FFFFFF\",\"album_extended_text_div_border_color\":\"CCCCCC\",\"album_extended_text_div_border_radius\":\"0\",\"album_extended_text_div_border_style\":\"none\",\"album_extended_text_div_border_width\":1,\"album_extended_text_div_padding\":\"5px\",\"album_extended_thumb_align\":\"left\",\"album_extended_thumb_bg_color\":\"E8E8E8\",\"album_extended_thumb_bg_transparent\":100,\"album_extended_thumb_border_color\":\"E8E8E8\",\"album_extended_thumb_border_radius\":\"0\",\"album_extended_thumb_border_style\":\"none\",\"album_extended_thumb_border_width\":4,\"album_extended_thumb_box_shadow\":\"\",\"album_extended_thumb_div_bg_color\":\"FFFFFF\",\"album_extended_thumb_div_border_color\":\"CCCCCC\",\"album_extended_thumb_div_border_radius\":\"\",\"album_extended_thumb_div_border_style\":\"none\",\"album_extended_thumb_div_border_width\":0,\"album_extended_thumb_div_padding\":\"0\",\"album_extended_thumb_hover_effect\":\"rotate\",\"album_extended_thumb_hover_effect_value\":\"2deg\",\"album_extended_thumb_margin\":2,\"album_extended_thumb_padding\":4,\"album_extended_thumb_transition\":0,\"album_extended_thumb_transparent\":100,\"album_extended_thumbs_bg_color\":\"FFFFFF\",\"album_extended_title_desc_alignment\":\"top\",\"album_extended_title_font_color\":\"000000\",\"album_extended_title_font_size\":16,\"album_extended_title_font_style\":\"Ubuntu\",\"album_extended_title_font_weight\":\"bold\",\"album_extended_title_margin_bottom\":2,\"album_extended_title_padding\":\"2px\",\"album_extended_title_span_border_color\":\"CCCCCC\",\"album_extended_title_span_border_style\":\"none\",\"album_extended_title_span_border_width\":1,\"album_masonry_back_font_color\":\"323A45\",\"album_masonry_back_font_size\":15,\"album_masonry_back_font_style\":\"Ubuntu\",\"album_masonry_back_font_weight\":\"normal\",\"album_masonry_back_padding\":\"0\",\"album_masonry_container_margin\":1,\"album_masonry_gal_title_align\":\"center\",\"album_masonry_gal_title_font_color\":\"323A45\",\"album_masonry_gal_title_font_size\":18,\"album_masonry_gal_title_font_style\":\"Ubuntu\",\"album_masonry_gal_title_font_weight\":\"bold\",\"album_masonry_gal_title_margin\":\"0 2px 2px 2px\",\"album_masonry_gal_title_shadow\":\"0px 0px 0px #888888\",\"album_masonry_thumb_align\":\"center\",\"album_masonry_thumb_bg_color\":\"000000\",\"album_masonry_thumb_bg_transparent\":100,\"album_masonry_thumb_border_color\":\"000000\",\"album_masonry_thumb_border_radius\":\"0\",\"album_masonry_thumb_border_style\":\"none\",\"album_masonry_thumb_border_width\":1,\"album_masonry_thumb_box_shadow\":\"\",\"album_masonry_thumb_hover_effect\":\"zoom\",\"album_masonry_thumb_hover_effect_value\":\"2deg\",\"album_masonry_thumb_margin\":4,\"album_masonry_thumb_padding\":4,\"album_masonry_thumb_title_font_color_hover\":\"FFFFFF\",\"album_masonry_thumb_title_pos\":\"bottom\",\"album_masonry_thumb_transition\":1,\"album_masonry_thumb_transparent\":100,\"album_masonry_thumbs_bg_color\":\"FFFFFF\",\"album_masonry_title_font_color\":\"323A45\",\"album_masonry_title_font_size\":16,\"album_masonry_title_font_style\":\"Ubuntu\",\"album_masonry_title_font_weight\":\"bold\",\"album_masonry_title_margin\":\"5px\",\"album_masonry_title_shadow\":\"\",\"blog_style_align\":\"center\",\"blog_style_bg_color\":\"E8E8E8\",\"blog_style_border_color\":\"CCCCCC\",\"blog_style_border_radius\":\"0\",\"blog_style_border_style\":\"none\",\"blog_style_border_width\":1,\"blog_style_box_shadow\":\"\",\"blog_style_gal_title_align\":\"center\",\"blog_style_gal_title_font_color\":\"323A45\",\"blog_style_gal_title_font_size\":16,\"blog_style_gal_title_font_style\":\"Ubuntu\",\"blog_style_gal_title_font_weight\":\"bold\",\"blog_style_gal_title_margin\":\"2px\",\"blog_style_gal_title_shadow\":\"0px 0px 0px #888888\",\"blog_style_img_font_color\":\"000000\",\"blog_style_img_font_family\":\"Ubuntu\",\"blog_style_img_font_size\":16,\"blog_style_margin\":\"2px\",\"blog_style_padding\":\"4px\",\"blog_style_share_buttons_align\":\"right\",\"blog_style_share_buttons_bg_color\":\"FFFFFF\",\"blog_style_share_buttons_bg_transparent\":0,\"blog_style_share_buttons_border_color\":\"000000\",\"blog_style_share_buttons_border_radius\":\"0\",\"blog_style_share_buttons_border_style\":\"none\",\"blog_style_share_buttons_border_width\":0,\"blog_style_share_buttons_color\":\"A1A1A1\",\"blog_style_share_buttons_font_size\":20,\"blog_style_share_buttons_margin\":\"5px auto 10px auto\",\"blog_style_transparent\":70,\"carousel_caption_background_color\":\"000000\",\"carousel_caption_bottom\":0,\"carousel_caption_p_color\":\"FFFFFF\",\"carousel_caption_p_font_size\":14,\"carousel_caption_p_font_weight\":\"bold\",\"carousel_caption_p_mergin\":0,\"carousel_caption_p_pedding\":5,\"carousel_close_btn_transparent\":100,\"carousel_close_rl_btn_hover_color\":\"CCCCCC\",\"carousel_cont_bg_color\":\"000000\",\"carousel_cont_btn_transparent\":0,\"carousel_feature_border_color\":\"5D204F\",\"carousel_feature_border_style\":\"solid\",\"carousel_feature_border_width\":2,\"carousel_font_family\":\"Ubuntu\",\"carousel_mergin_bottom\":\"0.5\",\"carousel_play_pause_btn_size\":20,\"carousel_rl_btn_bg_color\":\"000000\",\"carousel_rl_btn_border_color\":\"FFFFFF\",\"carousel_rl_btn_border_radius\":\"20px\",\"carousel_rl_btn_border_style\":\"none\",\"carousel_rl_btn_border_width\":0,\"carousel_rl_btn_color\":\"FFFFFF\",\"carousel_rl_btn_height\":40,\"carousel_rl_btn_size\":20,\"carousel_rl_btn_style\":\"bwg-icon-chevron\",\"carousel_rl_btn_width\":40,\"carousel_title_border_radius\":\"5px\",\"carousel_title_opacity\":100,\"carousel_gal_title_align\":\"center\",\"carousel_gal_title_font_color\":\"323A45\",\"carousel_gal_title_font_size\":16,\"carousel_gal_title_font_style\":\"Ubuntu\",\"carousel_gal_title_font_weight\":\"bold\",\"carousel_gal_title_margin\":\"2px\",\"carousel_gal_title_shadow\":\"0px 0px 0px #888888\",\"compact_container_margin\":\"1\",\"container_margin\":\"1\",\"image_browser_align\":\"center\",\"image_browser_bg_color\":\"E8E8E8\",\"image_browser_border_color\":\"E8E8E8\",\"image_browser_border_radius\":\"2px\",\"image_browser_border_style\":\"none\",\"image_browser_border_width\":1,\"image_browser_box_shadow\":\"\",\"image_browser_full_bg_color\":\"FFFFFF\",\"image_browser_full_border_color\":\"EDEDED\",\"image_browser_full_border_radius\":\"0\",\"image_browser_full_border_style\":\"solid\",\"image_browser_full_border_width\":1,\"image_browser_full_padding\":\"4px\",\"image_browser_full_transparent\":90,\"image_browser_gal_title_align\":\"center\",\"image_browser_gal_title_font_color\":\"323A45\",\"image_browser_gal_title_font_size\":16,\"image_browser_gal_title_font_style\":\"Ubuntu\",\"image_browser_gal_title_font_weight\":\"bold\",\"image_browser_gal_title_margin\":\"2px\",\"image_browser_gal_title_shadow\":\"0px 0px 0px #888888\",\"image_browser_image_description_align\":\"center\",\"image_browser_image_description_bg_color\":\"E8E8E8\",\"image_browser_image_description_border_color\":\"FFFFFF\",\"image_browser_image_description_border_radius\":\"0\",\"image_browser_image_description_border_style\":\"none\",\"image_browser_image_description_border_width\":1,\"image_browser_image_description_margin\":\"24px 0px 0px 0px\",\"image_browser_image_description_padding\":\"8px 8px 8px 8px\",\"image_browser_image_title_align\":\"top\",\"image_browser_img_font_color\":\"000000\",\"image_browser_img_font_family\":\"Ubuntu\",\"image_browser_img_font_size\":14,\"image_browser_margin\":\"2px auto\",\"image_browser_padding\":\"4px\",\"image_browser_transparent\":80,\"lightbox_bg_color\":\"000000\",\"lightbox_bg_transparent\":100,\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_width\":0,\"lightbox_close_btn_box_shadow\":\"\",\"lightbox_close_btn_color\":\"FFFFFF\",\"lightbox_close_btn_full_color\":\"FFFFFF\",\"lightbox_close_btn_height\":20,\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_size\":10,\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_transparent\":95,\"lightbox_close_btn_width\":20,\"lightbox_close_rl_btn_hover_color\":\"FFFFFF\",\"lightbox_comment_author_font_size\":14,\"lightbox_comment_bg_color\":\"000000\",\"lightbox_comment_body_font_size\":12,\"lightbox_comment_button_bg_color\":\"333333\",\"lightbox_comment_button_border_color\":\"666666\",\"lightbox_comment_button_border_radius\":\"3px\",\"lightbox_comment_button_border_style\":\"none\",\"lightbox_comment_button_border_width\":1,\"lightbox_comment_button_padding\":\"3px 10px\",\"lightbox_comment_date_font_size\":10,\"lightbox_comment_font_color\":\"CCCCCC\",\"lightbox_comment_font_size\":12,\"lightbox_comment_font_style\":\"Ubuntu\",\"lightbox_comment_input_bg_color\":\"333333\",\"lightbox_comment_input_border_color\":\"666666\",\"lightbox_comment_input_border_radius\":\"0\",\"lightbox_comment_input_border_style\":\"none\",\"lightbox_comment_input_border_width\":1,\"lightbox_comment_input_padding\":\"3px\",\"lightbox_comment_pos\":\"left\",\"lightbox_comment_separator_color\":\"2B2B2B\",\"lightbox_comment_separator_style\":\"solid\",\"lightbox_comment_separator_width\":1,\"lightbox_comment_share_button_color\":\"FFFFFF\",\"lightbox_comment_width\":400,\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_color\":\"FFFFFF\",\"lightbox_ctrl_btn_height\":20,\"lightbox_ctrl_btn_margin_left\":7,\"lightbox_ctrl_btn_margin_top\":10,\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_transparent\":80,\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_border_radius\":4,\"lightbox_ctrl_cont_transparent\":80,\"lightbox_description_color\":\"FFFFFF\",\"lightbox_description_font_size\":14,\"lightbox_description_font_style\":\"Ubuntu\",\"lightbox_description_font_weight\":\"normal\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"2B2B2B\",\"lightbox_filmstrip_rl_btn_color\":\"FFFFFF\",\"lightbox_filmstrip_rl_btn_size\":20,\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_filmstrip_thumb_active_border_width\":0,\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_border_style\":\"none\",\"lightbox_filmstrip_thumb_border_width\":1,\"lightbox_filmstrip_thumb_deactive_transparent\":80,\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_hit_align\":\"left\",\"lightbox_hit_bg_color\":\"000000\",\"lightbox_hit_bg_transparent\":70,\"lightbox_hit_border_color\":\"000000\",\"lightbox_hit_border_radius\":\"5px\",\"lightbox_hit_border_style\":\"none\",\"lightbox_hit_border_width\":1,\"lightbox_hit_color\":\"FFFFFF\",\"lightbox_hit_font_size\":14,\"lightbox_hit_font_style\":\"Ubuntu\",\"lightbox_hit_font_weight\":\"normal\",\"lightbox_hit_margin\":\"0 5px\",\"lightbox_hit_padding\":\"5px\",\"lightbox_hit_pos\":\"bottom\",\"lightbox_info_align\":\"right\",\"lightbox_info_bg_color\":\"000000\",\"lightbox_info_bg_transparent\":70,\"lightbox_info_border_color\":\"000000\",\"lightbox_info_border_radius\":\"5px\",\"lightbox_info_border_style\":\"none\",\"lightbox_info_border_width\":1,\"lightbox_info_margin\":\"15px\",\"lightbox_info_padding\":\"5px\",\"lightbox_info_pos\":\"top\",\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":70,\"lightbox_rate_align\":\"right\",\"lightbox_rate_color\":\"F9D062\",\"lightbox_rate_hover_color\":\"F7B50E\",\"lightbox_rate_icon\":\"star\",\"lightbox_rate_padding\":\"15px\",\"lightbox_rate_pos\":\"bottom\",\"lightbox_rate_size\":20,\"lightbox_rate_stars_count\":5,\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_width\":2,\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"FFFFFF\",\"lightbox_rl_btn_height\":40,\"lightbox_rl_btn_size\":20,\"lightbox_rl_btn_style\":\"bwg-icon-chevron\",\"lightbox_rl_btn_transparent\":80,\"lightbox_rl_btn_width\":40,\"lightbox_title_color\":\"FFFFFF\",\"lightbox_title_font_size\":18,\"lightbox_title_font_style\":\"Ubuntu\",\"lightbox_title_font_weight\":\"bold\",\"lightbox_toggle_btn_height\":14,\"lightbox_toggle_btn_width\":100,\"masonry_container_margin\":\"1\",\"masonry_description_color\":\"323A45\",\"masonry_description_font_size\":16,\"masonry_description_font_style\":\"Ubuntu\",\"masonry_thumb_align\":\"center\",\"masonry_thumb_bg_color\":\"000000\",\"masonry_thumb_bg_transparent\":0,\"masonry_thumb_border_color\":\"CCCCCC\",\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_style\":\"none\",\"masonry_thumb_border_width\":1,\"masonry_thumb_gal_title_align\":\"center\",\"masonry_thumb_gal_title_font_color\":\"323A45\",\"masonry_thumb_gal_title_font_size\":16,\"masonry_thumb_gal_title_font_style\":\"Ubuntu\",\"masonry_thumb_gal_title_font_weight\":\"bold\",\"masonry_thumb_gal_title_margin\":\"2px\",\"masonry_thumb_gal_title_shadow\":\"\",\"masonry_thumb_hover_effect\":\"zoom\",\"masonry_thumb_hover_effect_value\":\"1.08\",\"masonry_thumb_padding\":4,\"masonry_thumb_title_font_color\":\"323A45\",\"masonry_thumb_title_font_color_hover\":\"FFFFFF\",\"masonry_thumb_title_font_size\":16,\"masonry_thumb_title_font_style\":\"Ubuntu\",\"masonry_thumb_title_font_weight\":\"bold\",\"masonry_thumb_title_margin\":\"2px\",\"masonry_thumb_transition\":1,\"masonry_thumb_transparent\":80,\"masonry_thumb_bg_transparency\":30,\"masonry_thumbs_bg_color\":\"FFFFFF\",\"mosaic_container_margin\":\"1\",\"mosaic_thumb_align\":\"center\",\"mosaic_thumb_bg_color\":\"000000\",\"mosaic_thumb_bg_transparent\":0,\"mosaic_thumb_border_color\":\"CCCCCC\",\"mosaic_thumb_border_radius\":\"2px\",\"mosaic_thumb_border_style\":\"none\",\"mosaic_thumb_border_width\":1,\"mosaic_thumb_gal_title_align\":\"center\",\"mosaic_thumb_gal_title_font_color\":\"323A45\",\"mosaic_thumb_gal_title_font_size\":16,\"mosaic_thumb_gal_title_font_style\":\"Ubuntu\",\"mosaic_thumb_gal_title_font_weight\":\"bold\",\"mosaic_thumb_gal_title_margin\":\"2px\",\"mosaic_thumb_gal_title_shadow\":\"\",\"mosaic_thumb_hover_effect\":\"rotate\",\"mosaic_thumb_hover_effect_value\":\"2deg\",\"mosaic_thumb_padding\":4,\"mosaic_thumb_title_font_color\":\"323A45\",\"mosaic_thumb_title_font_color_hover\":\"FFFFFF\",\"mosaic_thumb_title_font_size\":16,\"mosaic_thumb_title_font_style\":\"Ubuntu\",\"mosaic_thumb_title_font_weight\":\"bold\",\"mosaic_thumb_title_margin\":\"2px\",\"mosaic_thumb_title_shadow\":\"0px 0px 0px #888888\",\"mosaic_thumb_transition\":1,\"mosaic_thumb_transparent\":80,\"mosaic_thumb_bg_transparency\":30,\"mosaic_thumbs_bg_color\":\"FFFFFF\",\"page_nav_align\":\"center\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_border_style\":\"none\",\"page_nav_border_width\":1,\"page_nav_box_shadow\":\"0\",\"page_nav_button_bg_color\":\"FCFCFC\",\"page_nav_button_bg_transparent\":100,\"page_nav_button_text\":0,\"page_nav_button_transition\":1,\"page_nav_font_color\":\"666666\",\"page_nav_font_size\":12,\"page_nav_font_style\":\"Ubuntu\",\"page_nav_font_weight\":\"bold\",\"page_nav_margin\":\"0\",\"page_nav_number\":0,\"page_nav_padding\":\"3px 6px\",\"page_nav_position\":\"bottom\",\"slideshow_close_btn_transparent\":100,\"slideshow_close_rl_btn_hover_color\":\"DBDBDB\",\"slideshow_cont_bg_color\":\"000000\",\"slideshow_description_background_color\":\"000000\",\"slideshow_description_border_radius\":\"0\",\"slideshow_description_color\":\"FFFFFF\",\"slideshow_description_font\":\"Ubuntu\",\"slideshow_description_font_size\":14,\"slideshow_description_opacity\":70,\"slideshow_description_padding\":\"5px 10px 5px 10px\",\"slideshow_dots_active_background_color\":\"292929\",\"slideshow_dots_active_border_color\":\"FFC933\",\"slideshow_dots_active_border_width\":2,\"slideshow_dots_background_color\":\"292929\",\"slideshow_dots_border_radius\":\"10px\",\"slideshow_dots_height\":10,\"slideshow_dots_margin\":1,\"slideshow_dots_width\":10,\"slideshow_filmstrip_pos\":\"bottom\",\"slideshow_filmstrip_rl_bg_color\":\"303030\",\"slideshow_filmstrip_rl_btn_color\":\"FFFFFF\",\"slideshow_filmstrip_rl_btn_size\":20,\"slideshow_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"slideshow_filmstrip_thumb_active_border_width\":0,\"slideshow_filmstrip_thumb_border_color\":\"000000\",\"slideshow_filmstrip_thumb_border_radius\":\"0\",\"slideshow_filmstrip_thumb_border_style\":\"none\",\"slideshow_filmstrip_thumb_border_width\":1,\"slideshow_filmstrip_thumb_deactive_transparent\":80,\"slideshow_filmstrip_thumb_margin\":\"0 1px\",\"slideshow_play_pause_btn_size\":60,\"slideshow_rl_btn_bg_color\":\"000000\",\"slideshow_rl_btn_border_color\":\"FFFFFF\",\"slideshow_rl_btn_border_radius\":\"20px\",\"slideshow_rl_btn_border_style\":\"none\",\"slideshow_rl_btn_border_width\":0,\"slideshow_rl_btn_box_shadow\":\"\",\"slideshow_rl_btn_color\":\"FFFFFF\",\"slideshow_rl_btn_height\":40,\"slideshow_rl_btn_size\":20,\"slideshow_rl_btn_style\":\"bwg-icon-arrow\",\"slideshow_rl_btn_width\":40,\"slideshow_title_background_color\":\"000000\",\"slideshow_title_border_radius\":\"5px\",\"slideshow_title_color\":\"FFFFFF\",\"slideshow_title_font\":\"Ubuntu\",\"slideshow_title_font_size\":16,\"slideshow_title_opacity\":70,\"slideshow_title_padding\":\"5px 10px 5px 10px\",\"thumb_align\":\"center\",\"thumb_bg_color\":\"000000\",\"thumb_bg_transparent\":0,\"thumb_border_color\":\"FFFFFF\",\"thumb_border_radius\":\"0\",\"thumb_border_style\":\"none\",\"thumb_border_width\":5,\"thumb_box_shadow\":\"\",\"thumb_gal_title_align\":\"center\",\"thumb_gal_title_font_color\":\"323A45\",\"thumb_gal_title_font_size\":18,\"thumb_gal_title_font_style\":\"Ubuntu\",\"thumb_gal_title_font_weight\":\"bold\",\"thumb_gal_title_margin\":\"2px\",\"thumb_gal_title_shadow\":\"\",\"thumb_hover_effect\":\"zoom\",\"thumb_hover_effect_value\":\"1.08\",\"thumb_margin\":\"4\",\"thumb_padding\":\"0\",\"thumb_title_font_color\":\"323A45\",\"thumb_title_font_color_hover\":\"FFFFFF\",\"thumb_title_font_size\":16,\"thumb_title_font_style\":\"Ubuntu\",\"thumb_title_font_weight\":\"bold\",\"thumb_title_margin\":\"5px\",\"thumb_description_font_color\":\"323A45\",\"thumb_description_font_style\":\"Ubuntu\",\"thumb_description_font_size\":12,\"thumb_title_pos\":\"bottom\",\"thumb_title_shadow\":\"\",\"thumb_transition\":1,\"thumb_transparent\":100,\"thumb_bg_transparency\":30,\"thumbs_bg_color\":\"FFFFFF\",\"tags_view\":1,\"tags_but_font_color\":\"323A45\",\"tags_but_font_size\":14,\"tags_but_font_style\":\"Ubuntu\",\"tags_but_font_weight\":\"normal\",\"tags_but_margin\":\"0px 5px 10px 5px\",\"tags_but_padding\":\"6px 6px 6px 6px\",\"tags_but_border_width\":0,\"tags_but_border_style\":\"none\",\"tags_but_border_color\":\"E9EBEE\",\"tags_but_border_radius\":\"4px\",\"tags_but_bg_color\":\"E9EBEE\",\"tags_but_active_bg_color\":\"2160B5\",\"tags_but_active_color\":\"FFFFFF\",\"tags_but_see_all_size\":14,\"tags_but_see_all_color\":\"323A45\",\"tags_but_see_all_back_color\":\"F8F8F8\",\"tags_but_see_all_border_w\":1,\"tags_but_see_all_border_s\":\"solid\",\"tags_but_see_all_border_c\":\"E5E5E5\",\"tags_but_see_all_border_r\":\"20px\"}',0);
/*!40000 ALTER TABLE `wpwlvrot_bwg_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_cff_facebook_feed_locator`
--

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

--
-- Dumping data for table `wpwlvrot_cff_facebook_feed_locator`
--

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

--
-- Table structure for table `wpwlvrot_cff_feed_caches`
--

DROP TABLE IF EXISTS `wpwlvrot_cff_feed_caches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_cff_feed_caches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` bigint(20) unsigned NOT NULL DEFAULT 1,
  `cache_key` varchar(255) NOT NULL DEFAULT '',
  `cache_value` longtext NOT NULL DEFAULT '',
  `cron_update` varchar(20) NOT NULL DEFAULT 'yes',
  `last_updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_cff_feed_caches`
--

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

--
-- Table structure for table `wpwlvrot_cff_feeds`
--

DROP TABLE IF EXISTS `wpwlvrot_cff_feeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_cff_feeds` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_name` text NOT NULL DEFAULT '',
  `feed_title` text NOT NULL DEFAULT '',
  `settings` longtext NOT NULL DEFAULT '',
  `author` bigint(20) unsigned NOT NULL DEFAULT 1,
  `status` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `author` (`author`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_cff_feeds`
--

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

--
-- Table structure for table `wpwlvrot_cff_sources`
--

DROP TABLE IF EXISTS `wpwlvrot_cff_sources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_cff_sources` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` varchar(255) NOT NULL DEFAULT '',
  `account_type` varchar(255) NOT NULL DEFAULT '',
  `privilege` varchar(255) NOT NULL DEFAULT '',
  `access_token` varchar(1000) NOT NULL DEFAULT '',
  `username` varchar(255) NOT NULL DEFAULT '',
  `info` text NOT NULL DEFAULT '',
  `error` text NOT NULL DEFAULT '',
  `expires` datetime NOT NULL,
  `last_updated` datetime NOT NULL,
  `author` bigint(20) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `account_type` (`account_type`(191)),
  KEY `author` (`author`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_cff_sources`
--

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

--
-- Table structure for table `wpwlvrot_commentmeta`
--

DROP TABLE IF EXISTS `wpwlvrot_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_commentmeta`
--

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

--
-- Table structure for table `wpwlvrot_comments`
--

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

--
-- Dumping data for table `wpwlvrot_comments`
--

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

--
-- Table structure for table `wpwlvrot_fusion_form_entries`
--

DROP TABLE IF EXISTS `wpwlvrot_fusion_form_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_fusion_form_entries` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `form_id` bigint(20) NOT NULL,
  `field_id` bigint(20) NOT NULL,
  `value` longtext DEFAULT NULL,
  `privacy` tinyint(1) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_fusion_form_entries`
--

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

--
-- Table structure for table `wpwlvrot_fusion_form_fields`
--

DROP TABLE IF EXISTS `wpwlvrot_fusion_form_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_fusion_form_fields` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `field_name` varchar(256) NOT NULL,
  `field_label` varchar(256) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_fusion_form_fields`
--

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

--
-- Table structure for table `wpwlvrot_fusion_form_submissions`
--

DROP TABLE IF EXISTS `wpwlvrot_fusion_form_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_fusion_form_submissions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `time` datetime NOT NULL,
  `source_url` varchar(512) NOT NULL,
  `post_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `ip` varchar(512) DEFAULT NULL,
  `is_read` tinyint(1) DEFAULT NULL,
  `privacy_scrub_date` date DEFAULT NULL,
  `on_privacy_scrub` varchar(20) NOT NULL,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_fusion_form_submissions`
--

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

--
-- Table structure for table `wpwlvrot_fusion_forms`
--

DROP TABLE IF EXISTS `wpwlvrot_fusion_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_fusion_forms` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `views` bigint(20) DEFAULT 0,
  `submissions_count` bigint(20) DEFAULT 0,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_fusion_forms`
--

LOCK TABLES `wpwlvrot_fusion_forms` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_fusion_forms` DISABLE KEYS */;
INSERT INTO `wpwlvrot_fusion_forms` VALUES (1,141,77,0,NULL),(2,1547,98,0,NULL),(3,1818,374,0,NULL),(4,573,1,0,NULL);
/*!40000 ALTER TABLE `wpwlvrot_fusion_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_links`
--

DROP TABLE IF EXISTS `wpwlvrot_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_links`
--

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

--
-- Table structure for table `wpwlvrot_options`
--

DROP TABLE IF EXISTS `wpwlvrot_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM AUTO_INCREMENT=11999 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_options`
--

LOCK TABLES `wpwlvrot_options` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_options` DISABLE KEYS */;
INSERT INTO `wpwlvrot_options` VALUES (1,'siteurl','https://test-site.wlvrotary.org','yes'),(2,'home','https://test-site.wlvrotary.org','yes'),(3,'blogname','Rotary Club of Westlake Village Sunrise','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','subscriptions@goodcausepartners.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','0','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'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:33:\"duplicate-post/duplicate-post.php\";i:1;s:19:\"eventON/eventon.php\";i:2;s:45:\"eventon-ics-importer/eventon-ics-importer.php\";i:3;s:33:\"fusion-builder/fusion-builder.php\";i:4;s:27:\"fusion-core/fusion-core.php\";i:5;s:37:\"paypal-donations/paypal-donations.php\";i:6;s:21:\"photonic/photonic.php\";i:7;s:27:\"svg-support/svg-support.php\";i:8;s:24:\"wordpress-seo/wp-seo.php\";i:9;s:23:\"wp-smushit/wp-smush.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Avada','yes'),(41,'stylesheet','Avada-Child-Theme','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','53496','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i: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:5:{s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:43:\"the-events-calendar/the-events-calendar.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:45:\"custom-facebook-feed/custom-facebook-feed.php\";a:2:{i:0;s:39:\"CustomFacebookFeed\\Custom_Facebook_Feed\";i:1;s:13:\"cff_uninstall\";}s:49:\"tenweb-speed-optimizer/tenweb_speed_optimizer.php\";a:2:{i:0;s:31:\"\\TenWebOptimizer\\OptimizerAdmin\";i:1;s:13:\"two_uninstall\";}s:37:\"paypal-donations/paypal-donations.php\";a:2:{i:0;s:15:\"PayPalDonations\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','1700','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1676849577','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wpwlvrot_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:93:{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:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:14:\"manage_eventon\";b:1;s:15:\"publish_eventon\";b:1;s:16:\"publish_eventons\";b:1;s:12:\"edit_eventon\";b:1;s:13:\"edit_eventons\";b:1;s:20:\"edit_others_eventons\";b:1;s:21:\"edit_private_eventons\";b:1;s:23:\"edit_published_eventons\";b:1;s:13:\"read_eventons\";b:1;s:21:\"read_private_eventons\";b:1;s:14:\"delete_eventon\";b:1;s:15:\"delete_eventons\";b:1;s:23:\"delete_private_eventons\";b:1;s:25:\"delete_published_eventons\";b:1;s:22:\"delete_others_eventons\";b:1;s:20:\"assign_eventon_terms\";b:1;s:20:\"manage_eventon_terms\";b:1;s:18:\"edit_eventon_terms\";b:1;s:20:\"delete_eventon_terms\";b:1;s:35:\"manage_custom_facebook_feed_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:47:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:10:\"copy_posts\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:39:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;s:10:\"copy_posts\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:37:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:10:\"copy_posts\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:11:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";a:6:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:8:\"search-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:21:\"avada-footer-widget-1\";a:5:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:21:\"avada-footer-widget-2\";a:0:{}s:21:\"avada-footer-widget-3\";a:0:{}s:21:\"avada-footer-widget-4\";a:0:{}s:25:\"avada-slidingbar-widget-1\";a:0:{}s:25:\"avada-slidingbar-widget-2\";a:0:{}s:25:\"avada-slidingbar-widget-3\";a:0:{}s:25:\"avada-slidingbar-widget-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:13:{i:1673384434;a:1:{s:25:\"group_post_scheduler_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1673384650;a:1:{s:22:\"photonic_token_monitor\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1673386379;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:1673390340;a:1:{s:22:\"evo_cron_daily_actions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1673393577;a:5:{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;}}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:1673393686;a:4:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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;}}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:1673395200;a:1:{s:22:\"wdev_logger_clear_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:1673400799;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1673406500;a:1:{s:22:\"evoics_schedule_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1673410610;a:2:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1673479977;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1673822340;a:1:{s:17:\"evo_check_updates\";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;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a: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'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:1:{s:22:\"zX61OwLrSgAszxuhwpyLwk\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BFgPPPhVZwikpTYPXRWIBEs8ulusGm/\";s:10:\"created_at\";i:1673244565;}}','yes'),(119,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1661299431;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(1157,'tribe_last_generate_rewrite_rules','1661314612.7582','yes'),(125,'https_detection_errors','a:0:{}','yes'),(1355,'_transient_health-check-site-status-result','{\"good\":16,\"recommended\":4,\"critical\":1}','yes'),(11987,'_site_transient_timeout_theme_roots','1673369805','no'),(11988,'_site_transient_theme_roots','a:6:{s:17:\"Avada-Child-Theme\";s:7:\"/themes\";s:5:\"Avada\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(184,'revslider-valid-notice','false','yes'),(2456,'_evo_products','a:27:{s:7:\"eventon\";a:17:{s:4:\"slug\";s:7:\"eventon\";s:11:\"plugin_slug\";s:19:\"eventON/eventon.php\";s:7:\"version\";s:5:\"4.2.2\";s:2:\"ID\";s:3:\"EVO\";s:15:\"envato_username\";s:8:\"mattgcmp\";s:3:\"key\";s:36:\"8fb23133-c282-4f2b-af2a-04d9b968f00d\";s:5:\"buyer\";s:8:\"mattgcmp\";s:15:\"remote_validity\";s:5:\"valid\";s:6:\"status\";s:6:\"active\";s:14:\"remote_version\";s:5:\"4.2.2\";s:6:\"tested\";s:3:\"6.1\";s:8:\"requires\";s:3:\"5.0\";s:12:\"last_updated\";s:10:\"2022-10-27\";s:11:\"lastchecked\";s:10:\"1673279629\";s:15:\"active_installs\";i:60130;s:7:\"package\";s:89:\"http://get.myeventon.com/download.php?plugin=eventon&key=64f1e2a6b52a6c80e830c334a995cab7\";s:18:\"package_expiration\";i:1672617600;}s:19:\"eventon-action-user\";a:3:{s:4:\"slug\";s:19:\"eventon-action-user\";s:11:\"plugin_slug\";s:43:\"eventon-action-user/eventon-action-user.php\";s:6:\"status\";s:7:\"removed\";}s:24:\"eventon-action-user-plus\";a:3:{s:4:\"slug\";s:24:\"eventon-action-user-plus\";s:11:\"plugin_slug\";s:53:\"eventon-action-user-plus/eventon-action-user-plus.php\";s:6:\"status\";s:7:\"removed\";}s:11:\"eventon-api\";a:3:{s:4:\"slug\";s:11:\"eventon-api\";s:11:\"plugin_slug\";s:27:\"eventon-api/eventon-api.php\";s:6:\"status\";s:7:\"removed\";}s:16:\"eventon-bookings\";a:3:{s:4:\"slug\";s:16:\"eventon-bookings\";s:11:\"plugin_slug\";s:37:\"eventon-bookings/eventon-bookings.php\";s:6:\"status\";s:7:\"removed\";}s:17:\"eventon-countdown\";a:3:{s:4:\"slug\";s:17:\"eventon-countdown\";s:11:\"plugin_slug\";s:39:\"eventon-countdown/eventon-countdown.php\";s:6:\"status\";s:7:\"removed\";}s:20:\"eventon-csv-importer\";a:3:{s:4:\"slug\";s:20:\"eventon-csv-importer\";s:11:\"plugin_slug\";s:45:\"eventon-csv-importer/eventon-csv-importer.php\";s:6:\"status\";s:7:\"removed\";}s:18:\"eventon-daily-view\";a:3:{s:4:\"slug\";s:18:\"eventon-daily-view\";s:11:\"plugin_slug\";s:41:\"eventon-daily-view/eventon-daily-view.php\";s:6:\"status\";s:7:\"removed\";}s:23:\"eventon-dynamic-pricing\";a:3:{s:4:\"slug\";s:23:\"eventon-dynamic-pricing\";s:11:\"plugin_slug\";s:51:\"eventon-dynamic-pricing/eventon-dynamic-pricing.php\";s:6:\"status\";s:7:\"removed\";}s:19:\"eventon-event-lists\";a:3:{s:4:\"slug\";s:19:\"eventon-event-lists\";s:11:\"plugin_slug\";s:43:\"eventon-event-lists/eventon-event-lists.php\";s:6:\"status\";s:7:\"removed\";}s:20:\"eventon-event-photos\";a:3:{s:4:\"slug\";s:20:\"eventon-event-photos\";s:11:\"plugin_slug\";s:45:\"eventon-event-photos/eventon-event-photos.php\";s:6:\"status\";s:7:\"removed\";}s:20:\"eventon-event-slider\";a:3:{s:4:\"slug\";s:20:\"eventon-event-slider\";s:11:\"plugin_slug\";s:45:\"eventon-event-slider/eventon-event-slider.php\";s:6:\"status\";s:7:\"removed\";}s:18:\"eventon-events-map\";a:3:{s:4:\"slug\";s:18:\"eventon-events-map\";s:11:\"plugin_slug\";s:41:\"eventon-events-map/eventon-events-map.php\";s:6:\"status\";s:7:\"removed\";}s:16:\"eventon-full-cal\";a:3:{s:4:\"slug\";s:16:\"eventon-full-cal\";s:11:\"plugin_slug\";s:37:\"eventon-full-cal/eventon-full-cal.php\";s:6:\"status\";s:7:\"removed\";}s:20:\"eventon-ics-importer\";a:7:{s:4:\"slug\";s:20:\"eventon-ics-importer\";s:11:\"plugin_slug\";s:45:\"eventon-ics-importer/eventon-ics-importer.php\";s:6:\"status\";s:7:\"removed\";s:7:\"version\";s:5:\"1.1.4\";s:10:\"guide_file\";s:81:\"https://test-site.wlvrotary.org/wp-content/plugins/eventon-ics-importer/guide.php\";s:2:\"ID\";s:0:\"\";s:14:\"remote_version\";s:5:\"1.1.4\";}s:19:\"eventon-lists-items\";a:3:{s:4:\"slug\";s:19:\"eventon-lists-items\";s:11:\"plugin_slug\";s:43:\"eventon-lists-items/eventon-lists-items.php\";s:6:\"status\";s:7:\"removed\";}s:14:\"eventon-qrcode\";a:3:{s:4:\"slug\";s:14:\"eventon-qrcode\";s:11:\"plugin_slug\";s:33:\"eventon-qrcode/eventon-qrcode.php\";s:6:\"status\";s:7:\"removed\";}s:17:\"eventon-reminders\";a:3:{s:4:\"slug\";s:17:\"eventon-reminders\";s:11:\"plugin_slug\";s:39:\"eventon-reminders/eventon-reminders.php\";s:6:\"status\";s:7:\"removed\";}s:16:\"eventon-reviewer\";a:3:{s:4:\"slug\";s:16:\"eventon-reviewer\";s:11:\"plugin_slug\";s:37:\"eventon-reviewer/eventon-reviewer.php\";s:6:\"status\";s:7:\"removed\";}s:11:\"eventon-rss\";a:3:{s:4:\"slug\";s:11:\"eventon-rss\";s:11:\"plugin_slug\";s:27:\"eventon-rss/eventon-rss.php\";s:6:\"status\";s:7:\"removed\";}s:12:\"eventon-rsvp\";a:3:{s:4:\"slug\";s:12:\"eventon-rsvp\";s:11:\"plugin_slug\";s:29:\"eventon-rsvp/eventon-rsvp.php\";s:6:\"status\";s:7:\"removed\";}s:13:\"eventon-seats\";a:3:{s:4:\"slug\";s:13:\"eventon-seats\";s:11:\"plugin_slug\";s:31:\"eventon-seats/eventon-seats.php\";s:6:\"status\";s:7:\"removed\";}s:25:\"eventon-speakers-schedule\";a:3:{s:4:\"slug\";s:25:\"eventon-speakers-schedule\";s:11:\"plugin_slug\";s:55:\"eventon-speakers-schedule/eventon-speakers-schedule.php\";s:6:\"status\";s:7:\"removed\";}s:18:\"eventon-subscriber\";a:3:{s:4:\"slug\";s:18:\"eventon-subscriber\";s:11:\"plugin_slug\";s:41:\"eventon-subscriber/eventon-subscriber.php\";s:6:\"status\";s:7:\"removed\";}s:15:\"eventon-tickets\";a:3:{s:4:\"slug\";s:15:\"eventon-tickets\";s:11:\"plugin_slug\";s:35:\"eventon-tickets/eventon-tickets.php\";s:6:\"status\";s:7:\"removed\";}s:19:\"eventon-weekly-view\";a:3:{s:4:\"slug\";s:19:\"eventon-weekly-view\";s:11:\"plugin_slug\";s:43:\"eventon-weekly-view/eventon-weekly-view.php\";s:6:\"status\";s:7:\"removed\";}s:16:\"eventon-wishlist\";a:3:{s:4:\"slug\";s:16:\"eventon-wishlist\";s:11:\"plugin_slug\";s:37:\"eventon-wishlist/eventon-wishlist.php\";s:6:\"status\";s:7:\"removed\";}}','yes'),(2458,'_evo_prods_last_check','1673279629','yes'),(2926,'widget_photonic-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(11430,'_transient_timeout_avada_premium_plugins_info','1673388891','no'),(5363,'_site_transient_avada_addons_json','{\"418947\":{\"post_title\":\"Custom Search Element\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2021\\/04\\/custom_search_880_660.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2021\\/04\\/imgpsh_fullsize_anim.jpeg\",\"plugin_name\":\"Custom Search Element\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/custom-search-element-for-avada-builder\\/31213422?ref=ThemeFusion\",\"new\":false,\"date\":1618918239},\"416560\":{\"post_title\":\"Custom Field Element\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2018\\/08\\/custom_fields_element.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2018\\/08\\/custom_fields_element.jpg\",\"plugin_name\":\"Custom Field Element\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/custom-field-element-for-fusion-builder\\/22247344?ref=ThemeFusion\",\"new\":false,\"date\":1533635113},\"416071\":{\"post_title\":\"Elegant Elements\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/12\\/elegant_elements.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/12\\/elegant_elements.jpg\",\"plugin_name\":\"Elegant Elements\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/elegant-elements-for-fusion-builder\\/21113424?ref=ThemeFusion\",\"new\":false,\"date\":1513943064},\"415029\":{\"post_title\":\"Custom Post Types and Taxonomies\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/35815191-ee7402b4-0a65-11e8-8c17-78079117d5b4.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/35815191-ee7402b4-0a65-11e8-8c17-78079117d5b4.jpg\",\"plugin_name\":\"Fusion Builder Custom Post Types and Taxonomies\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/custom-post-types-and-taxonomies-for-fusion-builder\\/15572585?ref=ThemeFusion\",\"new\":false,\"date\":1479378733},\"415031\":{\"post_title\":\"Elegant Tabs\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/elegant_tabs.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/elegant_tabs.jpg\",\"plugin_name\":\"Elegant Tabs for Fusion Builder\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/elegant-tabs-for-fusion-builder\\/18795917?ref=ThemeFusion\",\"new\":false,\"date\":1479292408},\"415041\":{\"post_title\":\"Coming Soon\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/10\\/coming_soon.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/10\\/coming_soon.jpg\",\"plugin_name\":null,\"description\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/avada-responsive-multipurpose-theme\\/2833226?ref=ThemeFusion\",\"new\":false,\"date\":1475330672}}','no'),(11542,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1673366260','no'),(11543,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1673323060','no'),(11544,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1673366260','no'),(11545,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/12/episode-46-the-wp-bloopers-podcast/\'>WP Briefing: Episode 46: The WP Bloopers Podcast</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\'>WP Briefing: Episode 45: State of the Word Reflections</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2023/01/state-of-the-word-2/\'>Matt: State of the Word</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/support-inclusion-in-tech-with-winstina-hughes-post-status-draft-136/\'>Post Status: Support Inclusion in Tech with Winstina Hughes — Post Status Draft 136</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/do-the-woo-is-headed-to-wordcamp-asia/\'>Do The Woo Community: Do the Woo is Headed to WordCamp Asia</a></li></ul></div>','no'),(6274,'event_type_children','a:0:{}','yes'),(8486,'fusion_core_flush_permalinks','1','yes'),(9405,'_site_transient_timeout_browser_ec8c936136150844c6d12856ff49c7cc','1673809132','no'),(9406,'_site_transient_browser_ec8c936136150844c6d12856ff49c7cc','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:4:\"16.2\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(5361,'_site_transient_fusion_wordpress_org_plugins','a:7:{s:3:\"pwa\";a:25:{s:4:\"name\";s:3:\"PWA\";s:4:\"slug\";s:3:\"pwa\";s:7:\"version\";s:5:\"0.7.1\";s:6:\"author\";s:100:\"<a href=\"https://github.com/GoogleChromeLabs/pwa-wp/graphs/contributors\">PWA Plugin Contributors</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/westonruter/\";s:12:\"contributors\";a:5:{s:6:\"google\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/google/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2adafb3bf578fd97d8d2ea1c2ccb3db3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Google\";}s:3:\"xwp\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/xwp/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/98d36ee8047719c185f19a00f7184c2c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:3:\"XWP\";}s:6:\"rtcamp\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/rtcamp/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c425b1be9dbbb2b45fb026ca564b81da?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"rtCamp\";}s:11:\"westonruter\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/westonruter/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/989838a2534d491ccb184d5b8a654f99?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Weston Ruter\";}s:13:\"albertomedina\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/albertomedina/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c61e7d8efedcd6e9bf7a0c6025f80489?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Alberto Medina\";}}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:78;s:7:\"ratings\";a:5:{i:5;i:14;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:5;}s:11:\"num_ratings\";i:19;s:15:\"support_threads\";i:6;s:24:\"support_threads_resolved\";i:4;s:15:\"active_installs\";i:40000;s:12:\"last_updated\";s:21:\"2022-05-26 5:38pm GMT\";s:5:\"added\";s:10:\"2018-07-12\";s:8:\"homepage\";s:42:\"https://github.com/GoogleChromeLabs/pwa-wp\";s:8:\"sections\";a:4:{s:11:\"description\";s:4472:\"<blockquote cite=\"https://developers.google.com/web/progressive-web-apps/\"><p>\nProgressive Web Apps are user experiences that have the reach of the web, and are:</p>\n<ul>\n<li><a href=\"https://developers.google.com/web/progressive-web-apps/#reliable\" rel=\"nofollow ugc\">Reliable</a> &#8211; Load instantly and never show the downasaur, even in uncertain network conditions.</li>\n<li><a href=\"https://developers.google.com/web/progressive-web-apps/#fast\" rel=\"nofollow ugc\">Fast</a> &#8211; Respond quickly to user interactions with silky smooth animations and no janky scrolling.</li>\n<li><a href=\"https://developers.google.com/web/progressive-web-apps/#engaging\" rel=\"nofollow ugc\">Engaging</a> &#8211; Feel like a natural app on the device, with an immersive user experience.</li>\n</ul>\n<p>This new level of quality allows Progressive Web Apps to earn a place on the user&#8217;s home screen.\n</p></blockquote>\n<p>Continue reading more about <a href=\"https://web.dev/progressive-web-apps/\" rel=\"nofollow ugc\">Progressive Web Apps</a> (PWA) from Google.</p>\n<p>In general a PWA depends on the following technologies to be available:</p>\n<ul>\n<li><a href=\"https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API\" rel=\"nofollow ugc\">Service Workers</a></li>\n<li><a href=\"https://developer.mozilla.org/en-US/docs/Web/Manifest\" rel=\"nofollow ugc\">Web App Manifest</a></li>\n<li><a href=\"https://en.wikipedia.org/wiki/HTTPS\" rel=\"nofollow ugc\">HTTPS</a></li>\n</ul>\n<p>This plugin serves as a place to implement support for these in WordPress with the intention of being proposed for core merge, piece by piece. Case in point, the HTTPS functionality from this plugin has largely been made part of Core: <a href=\"https://make.wordpress.org/core/2021/02/22/improved-https-detection-and-migration-in-wordpress-5-7/\" rel=\"nofollow ugc\">Improved HTTPS detection and migration in WordPress 5.7</a>.</p>\n<p>This feature plugin is <em>not</em> intended to obsolete the other plugins and themes which turn WordPress sites into PWAs. Rather, this plugin is intended to provide the PWA building blocks and coordination mechanism for these themes and plugins to not reinvent the wheel and also to not conflict with each other. For example, a theme that implements the app shell model should be able to extend the core service worker while a plugin that provides push notifications should be able to do the same. Themes and plugins no longer should have to each create a service worker on their own, something which is inherently problematic because only one service worker can be active at a time: only one service worker can win. If you are developing a plugin or theme that includes a service worker, consider relying on this PWA plugin, or at least only use the built-in implementation as a fallback for when the PWA plugin is not available.</p>\n<p>In versions prior to 0.6, no caching strategies were added by default. The only service worker behavior was to serve an offline template when the client&#8217;s connection is down or the site is down, and also to serve an error page when the server returns with 500 Internal Server Error. As of 0.6, there is a new “Offline browsing” toggle on the Reading Settings screen in the admin. It is disabled by default, but when enabled a <a href=\"https://web.dev/offline-cookbook/#network-falling-back-to-cache\" rel=\"nofollow ugc\">network-first</a> caching strategy is registered for navigations so that the offline page won&#8217;t be shown when accessing previously-accessed pages. The network-first strategy is also used for assets from themes, plugins, and WordPress core. In addition, uploaded images get served with a <a href=\"https://web.dev/offline-cookbook/#stale-while-revalidate\" rel=\"nofollow ugc\">stale-while-revalidate</a> strategy. For all the details on these changes, see the <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/pull/338\" rel=\"nofollow ugc\">pull request</a>.</p>\n<p>Documentation for the plugin can be found on the <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/wiki\" rel=\"nofollow ugc\">GitHub project Wiki</a>.</p>\n<p><strong>Development of this plugin is done <a href=\"https://github.com/GoogleChromeLabs/pwa-wp\" rel=\"nofollow ugc\">on GitHub</a>. Pull requests welcome. Please see <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/issues\" rel=\"nofollow ugc\">issues</a> reported there before going to the <a href=\"https://wordpress.org/support/plugin/pwa\">plugin forum</a>.</strong></p>\n\";s:3:\"faq\";s:446:\"<p>Please see the <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/wiki/FAQ\" rel=\"nofollow ugc\">frequently asked questions</a> on the GitHub project wiki. Don&#8217;t see an answer to your question? Please <a href=\"https://wordpress.org/support/plugin/pwa/\">search the support forum</a> to see if someone has asked your question. Otherwise, please <a href=\"https://wordpress.org/support/plugin/pwa/#new-post\">open a new support topic</a>.</p>\n\";s:9:\"changelog\";s:162:\"<p>For the plugin’s changelog, please see <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/releases\" rel=\"nofollow ugc\">the Releases page on GitHub</a>.</p>\n\";s:7:\"reviews\";s:13590:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Awesome</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/san-lohat/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bf334b99a1afebb61da9499965762ec0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bf334b99a1afebb61da9499965762ec0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/san-lohat/\" class=\"reviewer-name\">San Lohat</a> on <span class=\"review-date\">September 11, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Thanks for developing this best plugin</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">nothing</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/rbavarchi/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1d5f5a33fa9addf35cf2d6a08a1a876a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1d5f5a33fa9addf35cf2d6a08a1a876a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/rbavarchi/\" class=\"reviewer-name\">rbavarchi</a> on <span class=\"review-date\">June 6, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">This app is supposed to be an extension for PWA but when u download it, you cant use it because there is nothing, no panel nothing. No documentation to help neitheir.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">no options</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/beddtimemedia/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/18a88c0d1eb29b960f7e776411bfa5b8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/18a88c0d1eb29b960f7e776411bfa5b8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/beddtimemedia/\" class=\"reviewer-name\">beddtimemedia</a> on <span class=\"review-date\">April 15, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">so far this isn\'t worth getting, there aren\'t any options no changes to my site, it didnt change a single thing</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Works neatly</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/aurelienpierre/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e0fb97531f28593a553b2b2a657de0d7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e0fb97531f28593a553b2b2a657de0d7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/aurelienpierre/\" class=\"reviewer-name\">aurelienpierre</a> on <span class=\"review-date\">October 2, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Plus nice support</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Nice Plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ngbaze/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/178787c8ff4cc319849d8545fd6e0e57?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/178787c8ff4cc319849d8545fd6e0e57?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ngbaze/\" class=\"reviewer-name\">NG Baze <small>(ngbaze)</small></a> on <span class=\"review-date\">July 17, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Nice one.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Can&#039;t get it to work</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/crocoart/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/cdae8b25f64ba65fd615b1af09bc3c3c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/cdae8b25f64ba65fd615b1af09bc3c3c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/crocoart/\" class=\"reviewer-name\">crocoart</a> on <span class=\"review-date\">July 4, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Can\'t get the Add to home screen to show on ios devices which pretty much makes this useless.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">nice</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/calvin85mathias/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a3555307b29e54b42c7cbf760c8c7f11?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a3555307b29e54b42c7cbf760c8c7f11?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/calvin85mathias/\" class=\"reviewer-name\">calvin85mathias</a> on <span class=\"review-date\">February 19, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">nice</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Works like a charme</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/per4mance/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6e6215f8c6a6fad37e40b996fdd4a8f9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6e6215f8c6a6fad37e40b996fdd4a8f9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/per4mance/\" class=\"reviewer-name\">Thorsten :-) <small>(per4mance)</small></a> on <span class=\"review-date\">February 5, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Hi,\nThank you for this great plugin it works for me on WP/BP. This is an amazing idea, and it works with W3 Total Cache too.\n\nDo you have any suggestions for me, how to implement a feature as \"add website to home\" when a user uses an iPhone or android?\n\nThank you :-)</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It worked very well</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/heitor_tito/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ca0bf246069ecc57b41cdc0fee1268e0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ca0bf246069ecc57b41cdc0fee1268e0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/heitor_tito/\" class=\"reviewer-name\">Heitor_tito</a> on <span class=\"review-date\">February 3, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Certainly the idea of not reinventing the wheel makes perfect sense.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Simple and usefull</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/fellyph/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6f9ecd567b678e503b3ee10ebb0f050c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6f9ecd567b678e503b3ee10ebb0f050c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/fellyph/\" class=\"reviewer-name\">Fellyph Cintra <small>(fellyph)</small></a> on <span class=\"review-date\">July 6, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">The plugin helped me to convert my blog in a PWA, only the short_name was an issue and fixed using the small plugin to include an extra field.</div>\n</div>\n\";}s:13:\"download_link\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.7.1.zip\";s:11:\"screenshots\";a:0:{}s:4:\"tags\";a:4:{s:20:\"progressive-web-apps\";s:20:\"progressive web apps\";s:3:\"pwa\";s:3:\"pwa\";s:15:\"service-workers\";s:16:\"service-workers.\";s:16:\"web-app-manifest\";s:16:\"web app manifest\";}s:8:\"versions\";a:9:{s:5:\"0.1.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.1.0.zip\";s:5:\"0.2.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.2.0.zip\";s:5:\"0.3.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.3.0.zip\";s:5:\"0.4.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.4.0.zip\";s:5:\"0.5.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.5.0.zip\";s:5:\"0.6.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.6.0.zip\";s:5:\"0.7.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.7.0.zip\";s:5:\"0.7.1\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.7.1.zip\";s:5:\"trunk\";s:46:\"https://downloads.wordpress.org/plugin/pwa.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:58:\"https://ps.w.org/pwa/assets/banner-772x250.png?rev=2272148\";s:4:\"high\";s:59:\"https://ps.w.org/pwa/assets/banner-1544x500.png?rev=2272148\";}}s:11:\"woocommerce\";a:25:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"version\";s:5:\"7.0.0\";s:6:\"author\";s:48:\"<a href=\"https://woocommerce.com\">Automattic</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/woothemes/\";s:12:\"contributors\";a:14:{s:10:\"automattic\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/automattic/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/687b3bf96c41800814e3b93766444283?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Automattic\";}s:10:\"mikejolley\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/mikejolley/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9b87f99f47e30735e1136c5141531fdf?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Mike Jolley (a11n)\";}s:11:\"jameskoster\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/jameskoster/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/19a6a101c57df54bc1c40adcfba785d8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"James Koster\";}s:14:\"claudiosanches\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/claudiosanches/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/908480753c07509e76322dc17d305c8b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Claudio Sanches\";}s:13:\"rodrigosprimo\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/rodrigosprimo/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/f2271ae6814a29d8cbf38ae2d0305a72?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Rodrigo Primo\";}s:15:\"peterfabian1000\";a:3:{s:7:\"profile\";s:47:\"https://profiles.wordpress.org/peterfabian1000/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/be249b86dddbf495565a36196625d77a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Peter Fabian\";}s:7:\"vedjain\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/vedjain/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7a640eb2847d9a0a0d5e6af385e21881?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Vedanshu Jain\";}s:8:\"jamosova\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/jamosova/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eb515897a71b0df82ccd2788548588c4?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Julia Amosova\";}s:16:\"obliviousharmony\";a:3:{s:7:\"profile\";s:48:\"https://profiles.wordpress.org/obliviousharmony/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/185f31c1e5af65fee78506769ca13276?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"obliviousharmony\";}s:9:\"konamiman\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/konamiman/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b9a819e803dd87615c4aeb33192db976?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"konamiman\";}s:8:\"sadowski\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/sadowski/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/766381c51d7072d1f48ee8878e2ce3af?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"sadowski\";}s:8:\"wpmuguru\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/wpmuguru/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7b8ff059b9a4504dfbaebd4dd190466e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Ron Rennick\";}s:5:\"royho\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/royho/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/715b4097a10f874f8681b15608687f83?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"royho\";}s:13:\"barryhughes-1\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/barryhughes-1/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4d7aea8e7879e3ea257ddb4a99a300f1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Barry\";}}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"7.2\";s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:3284;i:4;i:160;i:3;i:92;i:2;i:92;i:1;i:342;}s:11:\"num_ratings\";i:3970;s:15:\"support_threads\";i:1869;s:24:\"support_threads_resolved\";i:1572;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2022-10-11 6:31pm GMT\";s:5:\"added\";s:10:\"2011-09-27\";s:8:\"homepage\";s:24:\"https://woocommerce.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:11839:\"<p>WooCommerce is <a href=\"https://trends.builtwith.com/shop\" rel=\"nofollow ugc\">the world’s most popular</a> open-source eCommerce solution.</p>\n<p>Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.</p>\n<p>Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.</p>\n<ul>\n<li><strong>Create beautiful, enticing storefronts</strong> with <a href=\"https://woocommerce.com/product-category/themes/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">themes</a> suited to your brand and industry.</li>\n<li><strong>Increase revenue</strong> with an optimized <a href=\"https://woocommerce.com/checkout-blocks/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">shopping cart experience</a> that converts.</li>\n<li><strong>Customize product pages in minutes</strong> using modular <a href=\"https://docs.woocommerce.com/document/woocommerce-blocks/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">product blocks</a>.</li>\n<li>Showcase physical and digital goods, product variations, custom configurations, instant downloads, and affiliate items.</li>\n<li>Sell <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">subscriptions</a>, <a href=\"https://woocommerce.com/products/woocommerce-bookings/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">bookings</a>, or <a href=\"https://woocommerce.com/products/woocommerce-memberships/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">memberships</a>, with our developer-vetted extensions.</li>\n<li><strong>Rise to the top of search results</strong> by leveraging <a href=\"https://www.searchenginejournal.com/wordpress-best-cms-seo/\" rel=\"nofollow ugc\">WordPress’ SEO advantage</a>.</li>\n<li><strong>Build on a platform that scales.</strong> Get flexible eCommerce for <a href=\"https://woocommerce.com/high-volume-stores/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">high-volume stores</a>. </li>\n</ul>\n<p>Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional <a href=\"https://docs.woocommerce.com/document/woocommerce-setup-wizard/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Setup Wizard</a>.</p>\n<ul>\n<li><strong>Choose how you want to get paid</strong>. Conveniently manage payments from the comfort of your store with <a href=\"https://woocommerce.com/payments/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Payments</a> (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">100+ payment gateways</a> – including <a href=\"https://woocommerce.com/products/stripe/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Stripe</a>, <a href=\"https://woocommerce.com/products/woocommerce-gateway-paypal-checkout/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">PayPal</a>, and <a href=\"https://woocommerce.com/products/square/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Square</a>.</li>\n<li><strong>Configure your shipping options</strong>. Print USPS labels right from your dashboard and even schedule a pickup with <a href=\"https://woocommerce.com/products/shipping/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Shipping</a> (U.S.-only). Connect with <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">well-known carriers</a> such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.</li>\n<li><strong>Simplify sales tax</strong>. Add <a href=\"https://woocommerce.com/products/tax/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Tax</a> or <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/tax?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">similar integrated services</a> to make automated calculations a reality.</li>\n</ul>\n<h4>Grow your business, add features, and monitor your store on the go</h4>\n<p>WooCommerce means business. Keep tabs on the performance metrics most important to you with <a href=\"https://wordpress.org/plugins/woocommerce-admin/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\">WooCommerce Admin</a> – a powerful, customizable central dashboard for your store.</p>\n<p>Expand your audience across marketing and social channels with <a href=\"https://woocommerce.com/products/google-ads/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Google Ads</a>, <a href=\"https://woocommerce.com/products/hubspot-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">HubSpot</a>, <a href=\"https://woocommerce.com/products/mailchimp-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Mailchimp</a>, and <a href=\"https://woocommerce.com/products/facebook/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Facebook</a> integrations. You can always check out the in-dashboard <a href=\"https://docs.woocommerce.com/document/marketing-hub/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Marketing Hub</a> for fresh ideas and tips to help you succeed.</p>\n<p>Enhance store functionality with hundreds of free and paid extensions from the <a href=\"https://woocommerce.com/products/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">official WooCommerce Marketplace</a>. Our developers <a href=\"https://docs.woocommerce.com/document/marketplace-overview/#section-6?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">vet each new extension</a> and regularly review existing extensions to maintain Marketplace quality standards. We are actively <a href=\"https://docs.woocommerce.com/document/marketplace-overview/#section-2?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">looking for products that help store builders create successful stores</a>.</p>\n<p>Manage your store from anywhere with the free WooCommerce <a href=\"https://woocommerce.com/mobile/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">mobile app</a> (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive &#8220;cha-ching&#8221; notification sound each time you make a new sale!</p>\n<h4>Own and control your store data – forever</h4>\n<p>With WooCommerce, your data belongs to you. Always.</p>\n<p>If you opt to share <a href=\"https://woocommerce.com/usage-tracking/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">usage data</a> with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.</p>\n<p>Unlike hosted eCommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.</p>\n<h4>Why developers choose (and love) WooCommerce</h4>\n<p>Developers can use WooCommerce to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.</p>\n<ul>\n<li>Leverage <a href=\"https://docs.woocommerce.com/document/introduction-to-hooks-actions-and-filters/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">hooks and filters</a> to modify or create functionality.</li>\n<li>Integrate virtually any service using a robust <a href=\"https://docs.woocommerce.com/document/woocommerce-rest-api/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">REST API</a> and webhooks.</li>\n<li>Design and build custom content blocks with React.</li>\n<li><a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/extending/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Inspect and modify</a> any aspect of the core plugin code.</li>\n<li>Speed up development with a lightning-fast <a href=\"https://woocommerce.github.io/code-reference/classes/wc-cli-rest-command.html?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">CLI</a>.</li>\n</ul>\n<p>The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.</p>\n<h4>Be part of our growing international community</h4>\n<p>WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.</p>\n<p>There are <a href=\"https://woocommerce.com/meetups/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Meetups</a> in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.</p>\n<p>WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.</p>\n<h4>Contribute and translate</h4>\n<p>WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the <a href=\"https://github.com/woocommerce/woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub Repository</a> to find out how you can pitch in.</p>\n<p>WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">translate.wordpress.org</a>.</p>\n\";s:12:\"installation\";s:2305:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP 7.2 or greater is recommended</li>\n<li>MySQL 5.6 or greater is recommended</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option &#8212; WordPress will handle the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”</p>\n<p>In the search field type “WooCommerce,” then click “Search Plugins.” Once you’ve found us,  you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Click “Install Now,” and WordPress will take it from there.</p>\n<h4>Manual installation</h4>\n<p>Manual installation method requires downloading the WooCommerce plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains <a href=\"https://wordpress.org/support/article/managing-plugins/#manual-plugin-installation\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work smoothly, but we still recommend you back up your site.</p>\n<p>If you encounter issues with the shop/category pages after an update, flush the permalinks by going to WordPress &gt; Settings &gt; Permalinks and hitting “Save.” That should return things to normal.</p>\n<h4>Sample data</h4>\n<p>WooCommerce comes with some sample data you can use to see how products look; import sample_products.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a>. You can also use the core <a href=\"https://docs.woocommerce.com/document/product-csv-importer-exporter/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV importer</a> or our <a href=\"https://woocommerce.com/products/product-csv-import-suite/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV Import Suite extension</a> to import sample_products.csv</p>\n\";s:3:\"faq\";s:7903:\"\n<dt id=\'where%20can%20i%20find%20woocommerce%20documentation%20and%20user%20guides%3F\'>\nWhere can I find WooCommerce documentation and user guides?\n</h4>\n<p>\n<p>For help setting up and configuring WooCommerce, please refer to <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/getting-started/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Getting Started</a> and the <a href=\"https://woocommerce.com/guides/new-store/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">New WooCommerce Store Owner Guide</a>.</p>\n<p>For extending or theming WooCommerce, see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">codex</a>, as well as the <a href=\"https://docs.woocommerce.com/document/create-a-plugin/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Plugin Developer Handbook</a>.</p>\n</p>\n<dt id=\'where%20can%20i%20get%20help%20or%20talk%20to%20other%20users%20about%20woocommerce%20core%3F\'>\nWhere can I get help or talk to other users about WooCommerce Core?\n</h4>\n<p>\n<p>If you get stuck, you can ask for help in the <a href=\"https://wordpress.org/support/plugin/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\">WooCommerce Support Forum</a> by following <a href=\"https://wordpress.org/support/topic/guide-to-the-woocommerce-forum/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\">these guidelines</a>, reach out via the <a href=\"https://woocommerce.com/community-slack/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Community Slack</a>, or post in the <a href=\"https://www.facebook.com/groups/advanced.woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Community group</a> on Facebook.</p>\n</p>\n<dt id=\'where%20can%20i%20get%20help%20for%20extensions%20i%20have%20purchased%20on%20woocommerce.com%3F\'>\nWhere can I get help for extensions I have purchased on WooCommerce.com?\n</h4>\n<p>\n<p>For assistance with paid extensions from the WooCommerce.com Marketplace: first, review our <a href=\"https://docs.woocommerce.com/document/woocommerce-self-service-guide/\" rel=\"nofollow ugc\">self-service troubleshooting guide</a>. If the problem persists, kindly log a support ticket via <a href=\"https://woocommerce.com/my-account/create-a-ticket/\" rel=\"nofollow ugc\">our helpdesk</a>. Our dedicated Happiness Engineers aim to respond within 24 hours.</p>\n</p>\n<dt id=\'i%E2%80%99m%20having%20trouble%20logging%20in%20to%20woocommerce.com%20%E2%80%93%20what%20now%3F\'>\nI’m having trouble logging in to WooCommerce.com – what now?\n</h4>\n<p>\n<p>First, troubleshoot common login issues using this helpful <a href=\"https://docs.woocommerce.com/document/log-into-woocommerce-com-with-wordpress-com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">step-by-step guide</a>. Still not working? <a href=\"https://woocommerce.com/contact-us/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Get in touch with us</a>.</p>\n</p>\n<dt id=\'will%20woocommerce%20work%20with%20my%20theme%3F\'>\nWill WooCommerce work with my theme?\n</h4>\n<p>\n<p>Yes! WooCommerce will work with any theme but may require some additional styling. If you’re looking for a theme featuring deep WooCommerce integration, we recommend <a href=\"https://woocommerce.com/storefront/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Storefront</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20update%20woocommerce%3F\'>\nHow do I update WooCommerce?\n</h4>\n<p>\n<p>We have a detailed guide on <a href=\"https://docs.woocommerce.com/document/how-to-update-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">How To Update WooCommerce</a>.</p>\n</p>\n<dt id=\'my%20site%20broke%20%E2%80%93%20what%20do%20i%20do%3F\'>\nMy site broke – what do I do?\n</h4>\n<p>\n<p>Start by diagnosing the issue using our helpful <a href=\"https://docs.woocommerce.com/documentation/get-help/troubleshooting-get-help/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">troubleshooting guide</a>.</p>\n<p>If you noticed the error after updating a theme or plugin, there might be compatibility issues between it and WooCommerce. If the issue appeared after updating WooCommerce, there could be a conflict between WooCommerce and an outdated theme or plugin.</p>\n<p>In both instances, we recommend running a conflict test using <a href=\"https://docs.woocommerce.com/document/troubleshooting-using-health-check/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Health Check</a> (which allows you to disable themes and plugins without affecting your visitors) or troubleshooting the issue using a <a href=\"https://docs.woocommerce.com/document/how-to-test-for-conflicts/#section-3?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">staging site</a>.</p>\n</p>\n<dt id=\'where%20can%20i%20report%20bugs%3F\'>\nWhere can I report bugs?\n</h4>\n<p>\n<p>Report bugs on the <a href=\"https://github.com/woocommerce/woocommerce/issues?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub repository</a>. You can also notify us via our support forum – be sure to search the forums to confirm that the error has not already been reported.</p>\n</p>\n<dt id=\'where%20can%20i%20request%20new%20features%2C%20themes%2C%20and%20extensions%3F\'>\nWhere can I request new features, themes, and extensions?\n</h4>\n<p>\n<p>Request new features and extensions and vote on existing suggestions on our official <a href=\"https://ideas.woocommerce.com/forums/133476-woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">ideas board</a>. Our Product teams regularly review requests and consider them valuable for product planning.</p>\n</p>\n<dt id=\'woocommerce%20is%20awesome%21%20can%20i%20contribute%3F\'>\nWooCommerce is awesome! Can I contribute?\n</h4>\n<p>\n<p>Yes, you can! Join in on our <a href=\"https://github.com/woocommerce/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">GitHub repository</a> and follow the <a href=\"https://woocommerce.wordpress.com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">development blog</a> to stay up-to-date with everything happening in the project.</p>\n</p>\n<dt id=\'where%20can%20i%20find%20rest%20api%20documentation%3F\'>\nWhere can I find REST API documentation?\n</h4>\n<p>\n<p>Extensive <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce REST API Documentation</a> is available on GitHub.</p>\n</p>\n<dt id=\'my%20question%20is%20not%20listed%20here.%20where%20can%20i%20find%20more%20answers%3F\'>\nMy question is not listed here. Where can I find more answers?\n</h4>\n<p>\n<p>Check out <a href=\"https://docs.woocommerce.com/document/frequently-asked-questions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Frequently Asked Questions</a> for more.</p>\n</p>\n\n\";s:9:\"changelog\";s:21194:\"<h4>7.0.0 2022-10-11</h4>\n<p><strong>WooCommerce</strong></p>\n<ul>\n<li>Fix &#8211; Fix: can&#8217;t place orders for Saint Martin (French part) <a href=\"https://github.com/woocommerce/woocommerce/pull/34920\" rel=\"nofollow ugc\">#34920</a></li>\n<li>Fix &#8211; Fix the wc pay view logic so that we don&#8217;t display it even when payment task is completed <a href=\"https://github.com/woocommerce/woocommerce/pull/34892\" rel=\"nofollow ugc\">#34892</a></li>\n<li>Fix &#8211; Added in the missing tracks events for the shipping default settings tour <a href=\"https://github.com/woocommerce/woocommerce/pull/34601\" rel=\"nofollow ugc\">#34601</a></li>\n<li>Fix &#8211; Add missing styles for the progress bar component <a href=\"https://github.com/woocommerce/woocommerce/pull/34521\" rel=\"nofollow ugc\">#34521</a></li>\n<li>Fix &#8211; Allow customer to save a product when tinymce is not the default text editor <a href=\"https://github.com/woocommerce/woocommerce/pull/34551\" rel=\"nofollow ugc\">#34551</a></li>\n<li>Fix &#8211; Corrects the plurality of an &#8220;Orders&#8221; string to fix the <code>.pot</code> file <a href=\"https://github.com/woocommerce/woocommerce/pull/34491\" rel=\"nofollow ugc\">#34491</a></li>\n<li>Fix &#8211; Ensure customer notes can be set, retrieved and edited when using COT. <a href=\"https://github.com/woocommerce/woocommerce/pull/34477\" rel=\"nofollow ugc\">#34477</a></li>\n<li>Fix &#8211; Fix &#8220;1 of 2 steps&#8221; is shown for the first step in a 3 step tour <a href=\"https://github.com/woocommerce/woocommerce/pull/34413\" rel=\"nofollow ugc\">#34413</a></li>\n<li>Fix &#8211; Fix Button block markup for Onboarding homepage <a href=\"https://github.com/woocommerce/woocommerce/pull/33966\" rel=\"nofollow ugc\">#33966</a></li>\n<li>Fix &#8211; Fix country field is empty when navigating back to &#8220;Store Details&#8221; tab <a href=\"https://github.com/woocommerce/woocommerce/pull/34484\" rel=\"nofollow ugc\">#34484</a></li>\n<li>Fix &#8211; Fixed the image size issue in the marketing slider. <a href=\"https://github.com/woocommerce/woocommerce/pull/34589\" rel=\"nofollow ugc\">#34589</a></li>\n<li>Fix &#8211; Fix error when &#8216;woocommerce_enqueue_styles&#8217; returns non-array. <a href=\"https://github.com/woocommerce/woocommerce/pull/34671\" rel=\"nofollow ugc\">#34671</a></li>\n<li>Fix &#8211; Fix product list price help label to properly reflect tax settings. <a href=\"https://github.com/woocommerce/woocommerce/pull/34564\" rel=\"nofollow ugc\">#34564</a></li>\n<li>Fix &#8211; Fix recording events without props #34595 <a href=\"https://github.com/woocommerce/woocommerce/pull/34595\" rel=\"nofollow ugc\">#34595</a></li>\n<li>Fix &#8211; Fix texts in wca client/wp-admin-scripts are not translated <a href=\"https://github.com/woocommerce/woocommerce/pull/34371\" rel=\"nofollow ugc\">#34371</a></li>\n<li>Fix &#8211; handle mobile app wrong user connection <a href=\"https://github.com/woocommerce/woocommerce/pull/34653\" rel=\"nofollow ugc\">#34653</a></li>\n<li>Fix &#8211; Hide finish setup button when task list is disabled <a href=\"https://github.com/woocommerce/woocommerce/pull/34410\" rel=\"nofollow ugc\">#34410</a></li>\n<li>Fix &#8211; Initialize order dates in the COT datastore using the correct timezone. <a href=\"https://github.com/woocommerce/woocommerce/pull/34474\" rel=\"nofollow ugc\">#34474</a></li>\n<li>Fix &#8211; Move-to-trash link (within the order editor) should also work with Custom Order Tables. <a href=\"https://github.com/woocommerce/woocommerce/pull/34483\" rel=\"nofollow ugc\">#34483</a></li>\n<li>Fix &#8211; Prevent fatal errors during uninstall when <code>WC_REMOVE_ALL_DATA</code> is true. <a href=\"https://github.com/woocommerce/woocommerce/pull/34469\" rel=\"nofollow ugc\">#34469</a></li>\n<li>Fix &#8211; Prevent fatal error when throwing exceptions in relation to coupon usage. <a href=\"https://github.com/woocommerce/woocommerce/pull/34562\" rel=\"nofollow ugc\">#34562</a></li>\n<li>Fix &#8211; Shipping defaults is now set when the user completes onboarding profiler, even if they did not set their address details <a href=\"https://github.com/woocommerce/woocommerce/pull/34610\" rel=\"nofollow ugc\">#34610</a></li>\n<li>Fix &#8211; Show password visibility toggle on checkout login form. <a href=\"https://github.com/woocommerce/woocommerce/pull/34537\" rel=\"nofollow ugc\">#34537</a></li>\n<li>Fix &#8211; Update Guernsey state field to non-required. <a href=\"https://github.com/woocommerce/woocommerce/pull/34500\" rel=\"nofollow ugc\">#34500</a></li>\n<li>Fix &#8211; Update post directly to update correct post_modified value. <a href=\"https://github.com/woocommerce/woocommerce/pull/34611\" rel=\"nofollow ugc\">#34611</a></li>\n<li>Fix &#8211; Update Remote Inbox Notification Country rule to return false when default country is used and onboarding not yet completed. <a href=\"https://github.com/woocommerce/woocommerce/pull/34632\" rel=\"nofollow ugc\">#34632</a></li>\n<li>Fix &#8211; Use the term slug instead of name in order-again flow. <a href=\"https://github.com/woocommerce/woocommerce/pull/34472\" rel=\"nofollow ugc\">#34472</a></li>\n<li>Fix &#8211; When a coupon has been trashed, it should become unusable. <a href=\"https://github.com/woocommerce/woocommerce/pull/33791\" rel=\"nofollow ugc\">#33791</a></li>\n<li>Fix &#8211; <a href=\"https://github.com/woocommerce/woocommerce/pull/\" rel=\"nofollow ugc\">COT</a> Fix error during apply coupon when COT enabled. <a href=\"https://github.com/woocommerce/woocommerce/pull/34498\" rel=\"nofollow ugc\">#34498</a></li>\n<li>Fix &#8211; Fix Enriched-label styles. <a href=\"https://github.com/woocommerce/woocommerce/pull/34382\" rel=\"nofollow ugc\">#34382</a></li>\n<li>Fix &#8211; Fix failing to update onboarding profile data for PHP 8. <a href=\"https://github.com/woocommerce/woocommerce/pull/34832\" rel=\"nofollow ugc\">#34832</a></li>\n<li>Add &#8211; Added the get mobile app task to the additional tasklist <a href=\"https://github.com/woocommerce/woocommerce/pull/34651\" rel=\"nofollow ugc\">#34651</a></li>\n<li>Add &#8211; Added tracks for woocommerce mobile app modal <a href=\"https://github.com/woocommerce/woocommerce/pull/34670\" rel=\"nofollow ugc\">#34670</a></li>\n<li>Add &#8211; Add include_meta and exclude_meta collection params to the orders and products WC REST API endpoints. These allow for limiting which meta keys are included in the meta_data response. <a href=\"https://github.com/woocommerce/woocommerce/pull/34478\" rel=\"nofollow ugc\">#34478</a></li>\n<li>Add &#8211; Adding datetimepicker component. <a href=\"https://github.com/woocommerce/woocommerce/pull/\" rel=\"nofollow ugc\">#34293</a></li>\n<li>Add &#8211; Add product link field to the new edit product form. <a href=\"https://github.com/woocommerce/woocommerce/pull/34313\" rel=\"nofollow ugc\">#34313</a></li>\n<li>Add &#8211; Add recordEvent validation to Tracks package #34005 <a href=\"https://github.com/woocommerce/woocommerce/pull/34005\" rel=\"nofollow ugc\">#34005</a></li>\n<li>Add &#8211; Adds bulk action support to the COT admin list table for deletion, trashing, and restoration. <a href=\"https://github.com/woocommerce/woocommerce/pull/34425\" rel=\"nofollow ugc\">#34425</a></li>\n<li>Add &#8211; Adds marketing messages of mobile apps to New order mail. <a href=\"https://github.com/woocommerce/woocommerce/pull/34467\" rel=\"nofollow ugc\">#34467</a></li>\n<li>Add &#8211; Implement <code>get_order_count()</code>, <code>get_unpaid_orders()</code> and <code>get_order_id_by_order_key()</code> in the COT datastore. <a href=\"https://github.com/woocommerce/woocommerce/pull/34324\" rel=\"nofollow ugc\">#34324</a></li>\n<li>Add &#8211; Integrates (COT) order search with the admin list table for orders. <a href=\"https://github.com/woocommerce/woocommerce/pull/34421\" rel=\"nofollow ugc\">#34421</a></li>\n<li>Add &#8211; Link backfilling to the migration process. <a href=\"https://github.com/woocommerce/woocommerce/pull/34167\" rel=\"nofollow ugc\">#34167</a></li>\n<li>Add &#8211; Re-enable JITMs in the WC Admin. <a href=\"https://github.com/woocommerce/woocommerce/pull/34383\" rel=\"nofollow ugc\">#34383</a></li>\n<li>Add &#8211; Support for order type in custom order tables. <a href=\"https://github.com/woocommerce/woocommerce/pull/34050\" rel=\"nofollow ugc\">#34050</a></li>\n<li>Add &#8211; Support order searches as an integral part of how (COT) order queries work. <a href=\"https://github.com/woocommerce/woocommerce/pull/34405\" rel=\"nofollow ugc\">#34405</a></li>\n<li>Add &#8211; UI Revamp on Marketing Page with feature toggle. <a href=\"https://github.com/woocommerce/woocommerce/pull/34642\" rel=\"nofollow ugc\">#34642</a></li>\n<li>Add &#8211; Woo Mobile Welcome Page with Magic Link feature <a href=\"https://github.com/woocommerce/woocommerce/pull/34637\" rel=\"nofollow ugc\">#34637</a></li>\n<li>Update &#8211; Update WooCommerce Blocks to 8.5.1 <a href=\"https://github.com/woocommerce/woocommerce/pull/34807\" rel=\"nofollow ugc\">#34807</a></li>\n<li>Update &#8211; Updates tracking parameters for marketing messages of mobile apps in New order mail. <a href=\"https://github.com/woocommerce/woocommerce/pull/34717\" rel=\"nofollow ugc\">#34717</a></li>\n<li>Update &#8211; Add an empty list of states for Saint Martin (French part) <a href=\"https://github.com/woocommerce/woocommerce/pull/34521\" rel=\"nofollow ugc\">#34521</a></li>\n<li>Update &#8211; Add Wish and Walmart to the platform options <a href=\"https://github.com/woocommerce/woocommerce/pull/34541\" rel=\"nofollow ugc\">#34541</a></li>\n<li>Update &#8211; Add wp_version prop to storeprofiler_store_business_details_continue track <a href=\"https://github.com/woocommerce/woocommerce/pull/34439\" rel=\"nofollow ugc\">#34439</a></li>\n<li>Update &#8211; Price section &#8211; Small refactor and style fix <a href=\"https://github.com/woocommerce/woocommerce/pull/34558\" rel=\"nofollow ugc\">#34558</a></li>\n<li>Update &#8211; Refactor inbox notes to have get_note method <a href=\"https://github.com/woocommerce/woocommerce/pull/34357\" rel=\"nofollow ugc\">#34357</a></li>\n<li>Update &#8211; Replace Facebook icon. <a href=\"https://github.com/woocommerce/woocommerce/pull/34592\" rel=\"nofollow ugc\">#34592</a></li>\n<li>Update &#8211; Set multichannel-marketing to true in core.json to display new Marketing option in WooCommerce Settings. <a href=\"https://github.com/woocommerce/woocommerce/pull/34683\" rel=\"nofollow ugc\">#34683</a></li>\n<li>Update &#8211; Update get_product_data to send request with a locale query param for translation <a href=\"https://github.com/woocommerce/woocommerce/pull/34461\" rel=\"nofollow ugc\">#34461</a></li>\n<li>Update &#8211; Update Google logo icon for marketing page. <a href=\"https://github.com/woocommerce/woocommerce/pull/34471\" rel=\"nofollow ugc\">#34471</a></li>\n<li>Update &#8211; Update remote inbox notifications README.md <a href=\"https://github.com/woocommerce/woocommerce/pull/34411\" rel=\"nofollow ugc\">#34411</a></li>\n<li>Update &#8211; Update WooCommerce Blocks to 8.5.0 <a href=\"https://github.com/woocommerce/woocommerce/pull/34654\" rel=\"nofollow ugc\">#34654</a></li>\n<li>Dev &#8211; Added tests to account for removal of foreign key for download log. <a href=\"https://github.com/woocommerce/woocommerce/pull/34416\" rel=\"nofollow ugc\">#34416</a></li>\n<li>Dev &#8211; Add missing field &#8220;is_read&#8221; to notes item schema <a href=\"https://github.com/woocommerce/woocommerce/pull/34220\" rel=\"nofollow ugc\">#34220</a></li>\n<li>Dev &#8211; Add the AccessiblePrivateMethods trait <a href=\"https://github.com/woocommerce/woocommerce/pull/34019\" rel=\"nofollow ugc\">#34019</a></li>\n<li>Dev &#8211; All we&#8217;re doing here is changing the caching entries in turbo.json. <a href=\"https://github.com/woocommerce/woocommerce/pull/34606\" rel=\"nofollow ugc\">#34606</a></li>\n<li>Dev &#8211; change webpack config to use asset modules instead of custom loaders <a href=\"https://github.com/woocommerce/woocommerce/pull/34649\" rel=\"nofollow ugc\">#34649</a></li>\n<li>Dev &#8211; Make connect text translatable, add application-password section URL <a href=\"https://github.com/woocommerce/woocommerce/pull/34363\" rel=\"nofollow ugc\">#34363</a></li>\n<li>Dev &#8211; Make Yoda conditions mandatory again. <a href=\"https://github.com/woocommerce/woocommerce/pull/34335\" rel=\"nofollow ugc\">#34335</a></li>\n<li>Dev &#8211; Removed deprecation notice from readme files <a href=\"https://github.com/woocommerce/woocommerce/pull/34476\" rel=\"nofollow ugc\">#34476</a></li>\n<li>Dev &#8211; This change only impacts the validation of changelog files. <a href=\"https://github.com/woocommerce/woocommerce/pull/34520\" rel=\"nofollow ugc\">#34520</a></li>\n<li>Dev &#8211; Update wp data version and jest config to fix admin tests for pnpm 7 <a href=\"https://github.com/woocommerce/woocommerce/pull/34428\" rel=\"nofollow ugc\">#34428</a></li>\n<li>Dev &#8211; Update <code>jest@^26.5.1</code> from <code>^25</code>. <a href=\"https://github.com/woocommerce/woocommerce/pull/34322\" rel=\"nofollow ugc\">#34322</a></li>\n<li>Dev &#8211; Implement &#8220;Discover more marketing tools&#8221; card. <a href=\"https://github.com/woocommerce/woocommerce/pull/34415\" rel=\"nofollow ugc\">#34415</a></li>\n<li>Tweak &#8211; Add additional class to no-products-found info banner for easier contextual targeting. <a href=\"https://github.com/woocommerce/woocommerce/pull/34362\" rel=\"nofollow ugc\">#34362</a></li>\n<li>Tweak &#8211; Add back FB to Installed marketing extensions list. <a href=\"https://github.com/woocommerce/woocommerce/pull/34259\" rel=\"nofollow ugc\">#34259</a></li>\n<li>Tweak &#8211; Add filter hooks to the Product Reviews admin list table. <a href=\"https://github.com/woocommerce/woocommerce/pull/34393\" rel=\"nofollow ugc\">#34393</a></li>\n<li>Tweak &#8211; Add filter <code>woocommerce_cart_item_is_purchasable</code> to allow purchasing non-purchasable items. <a href=\"https://github.com/woocommerce/woocommerce/pull/26179\" rel=\"nofollow ugc\">#26179</a></li>\n<li>Tweak &#8211; Add support for an atomic <code>meta_query</code> arg in COT&#8217;s order query code. <a href=\"https://github.com/woocommerce/woocommerce/pull/34347\" rel=\"nofollow ugc\">#34347</a></li>\n<li>Tweak &#8211; Add WooCommerce user-agent to WooCommerce.com requests <a href=\"https://github.com/woocommerce/woocommerce/pull/33927\" rel=\"nofollow ugc\">#33927</a></li>\n<li>Tweak &#8211; Adjust names of Bulgarian sub-divisons (in accordance with current CLDR spec). <a href=\"https://github.com/woocommerce/woocommerce/pull/34381\" rel=\"nofollow ugc\">#34381</a></li>\n<li>Tweak &#8211; Implement default columns in COT table <a href=\"https://github.com/woocommerce/woocommerce/pull/34445\" rel=\"nofollow ugc\">#34445</a></li>\n<li>Tweak &#8211; Remove CompleteStoreDetails note <a href=\"https://github.com/woocommerce/woocommerce/pull/34515\" rel=\"nofollow ugc\">#34515</a></li>\n<li>Tweak &#8211; Remove foreign key requirement from download_log table. <a href=\"https://github.com/woocommerce/woocommerce/pull/34318\" rel=\"nofollow ugc\">#34318</a></li>\n<li>Enhancement &#8211; Add a header for the store details task item <a href=\"https://github.com/woocommerce/woocommerce/pull/34712\" rel=\"nofollow ugc\">#34712</a></li>\n<li>Enhancement &#8211; Add and use ON_DUPLICATE_KEY update function to perform update/insert without additional query. <a href=\"https://github.com/woocommerce/woocommerce/pull/34590\" rel=\"nofollow ugc\">#34590</a></li>\n<li>Enhancement &#8211; Add new indexes to DB tables for better performance. Additionally, remove the auto_incr from wc_orders.id column so that as an added protection against direct inserts. <a href=\"https://github.com/woocommerce/woocommerce/pull/34588\" rel=\"nofollow ugc\">#34588</a></li>\n<li>Enhancement &#8211; Add option to serve downloadable files inline. <a href=\"https://github.com/woocommerce/woocommerce/pull/31145\" rel=\"nofollow ugc\">#31145</a></li>\n<li>Enhancement &#8211; Add util functions for getting order update and create links. <a href=\"https://github.com/woocommerce/woocommerce/pull/34499\" rel=\"nofollow ugc\">#34499</a></li>\n<li>Enhancement &#8211; Collapse the short description module by default. Add tooltips clarifying product description and short description editors. <a href=\"https://github.com/woocommerce/woocommerce/pull/34619\" rel=\"nofollow ugc\">#34619</a></li>\n<li>Enhancement &#8211; Redirect CPT-based admin order URLs to the corresponding Custom Order Table URLs. <a href=\"https://github.com/woocommerce/woocommerce/pull/34644\" rel=\"nofollow ugc\">#34644</a></li>\n</ul>\n<p><strong>WooCommerce Blocks 8.4.0 &amp; 8.5.0 &amp; 8.5.1</strong></p>\n<ul>\n<li>Enhancement &#8211; Update the filter <code>Apply</code> buttons to match the new designs. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6958\" rel=\"nofollow ugc\">6958</a>)</li>\n<li>Enhancement &#8211; Update the design of the Filter Products by Attribute block. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6920\" rel=\"nofollow ugc\">6920</a>)</li>\n<li>Enhancement &#8211; Update the design of the Filter by Attribute block settings panel. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6912\" rel=\"nofollow ugc\">6912</a>)</li>\n<li>Enhancement &#8211; Terms and conditions, and Privacy policy links open in a new tab by default. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6908\" rel=\"nofollow ugc\">6908</a>)</li>\n<li>Enhancement &#8211; layout updates to the Active Filters block. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6905\" rel=\"nofollow ugc\">6905</a>)</li>\n<li>Enhancement &#8211; Update the design of the Filter Products by Stock block. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6883\" rel=\"nofollow ugc\">6883</a>)</li>\n<li>Enhancement &#8211; Update the design of the Filter Products by Price block. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6877\" rel=\"nofollow ugc\">6877</a>)</li>\n<li>Enhancement &#8211; Allow making the Cart/Checkout block page the default one from within the editor. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6867\" rel=\"nofollow ugc\">6867</a>)</li>\n<li>Enhancement &#8211; Register product search as a core/search variation when available. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6191\" rel=\"nofollow ugc\">6191</a>)</li>\n<li>Enhancement &#8211; Improve the alignment of the Remove button in the Filter by Attribute block. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7088\" rel=\"nofollow ugc\">7088</a>)</li>\n<li>Enhancement &#8211; Enhance the display of the Active filters block changing the sizes of the text. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7087\" rel=\"nofollow ugc\">7087</a>)</li>\n<li>Enhancement &#8211; Add loading placeholders to Active Filters block. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7083\" rel=\"nofollow ugc\">7083</a>)</li>\n<li>Enhancement &#8211; Improved many of the labels to be less technical and more user-friendly. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7045\" rel=\"nofollow ugc\">7045</a>)</li>\n<li>Enhancement &#8211; Featured Item Blocks: Remove inline default color so that custom colors from Global Styles are applied correctly. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7036\" rel=\"nofollow ugc\">7036</a>)</li>\n<li>Enhancement &#8211; Update &#8220;remove filter&#8221; icon on the Active Filters block to use Icon component in both layouts. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7035\" rel=\"nofollow ugc\">7035</a>)</li>\n<li>Enhancement &#8211; Update <code>filter by price</code> skeleton design. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6997\" rel=\"nofollow ugc\">6997</a>)</li>\n<li>Enhancement &#8211; Update <code>filter by attribute</code> skeleton design. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6990\" rel=\"nofollow ugc\">6990</a>)</li>\n<li>Fix &#8211; Ensure that scripts are loaded using absolute URLs to prevent loading issues with subfolder installs. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7211\" rel=\"nofollow ugc\">7211</a>)</li>\n<li>Fix &#8211; Fixed a bug with a class name deriving from a translatable string. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/6914\" rel=\"nofollow ugc\">6914</a>)</li>\n<li>Fix &#8211; Fix checkbox label when count is zero. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7073\" rel=\"nofollow ugc\">7073</a>)</li>\n<li>Fix &#8211; Fix incompatible Classic Template block notice in the Editor for Woo specific templates. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7033\" rel=\"nofollow ugc\">7033</a>)</li>\n<li>Fix &#8211; Update &#8211; remove __experimentalDuotone from Featured Product and Featured Category blocks. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7000\" rel=\"nofollow ugc\">7000</a>)</li>\n<li>Dev &#8211; Add steps to retrieve products variations in Store API documentation. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7076\" rel=\"nofollow ugc\">7076</a>)</li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt\" rel=\"nofollow ugc\">See changelog for all versions</a>.</p>\n\";s:11:\"screenshots\";s:1035:\"<ol><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\" alt=\"\"></a></li></ol>\";s:7:\"reviews\";s:13430:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Not fixing year old errors</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/oivi/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e52f79705b2e0a84ae51dc5b9a95af21?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e52f79705b2e0a84ae51dc5b9a95af21?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/oivi/\" class=\"reviewer-name\">oivi</a> on <span class=\"review-date\">October 19, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">As stated in the title, particularly cron jobs and db updates that never ends in wp-admin.\n\n\n</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Use At Your Own Risk</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/paxasteriae/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/156993463eedf347a525cb0d3f9b6053?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/156993463eedf347a525cb0d3f9b6053?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/paxasteriae/\" class=\"reviewer-name\">paxasteriae</a> on <span class=\"review-date\">October 17, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I am sick of WooCommerce breaking my site with every update. I\'m in the habit of backing the whole thing up every single time -- I have to be, because each time I do, I end up in Recovery Mode trying to fix what the plugin <em>inevitably</em> broke.\n\nIt might be the most popular commerce plugin available, and when it works it\'s half-decent, but I\'m not so sure it\'s worth the constant hassle.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great plugin!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/reymatog/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9f3a100e17a1c363353411d698ce0640?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9f3a100e17a1c363353411d698ce0640?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/reymatog/\" class=\"reviewer-name\">reymatog</a> on <span class=\"review-date\">October 17, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">You can search the internet for any problem you\'ll encounter and have dozens of available solutions.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">They are a great support team.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/sampei2727/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/eb3300b675929b8c722e4098cb1593d7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/eb3300b675929b8c722e4098cb1593d7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/sampei2727/\" class=\"reviewer-name\">sampei2727</a> on <span class=\"review-date\">October 15, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">They were quick and kind. Thank you.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Free &amp; powerful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/farhadhp/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7dc47934ba942297a531525287e596c5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7dc47934ba942297a531525287e596c5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/farhadhp/\" class=\"reviewer-name\">Farhad Hassan Pour <small>(farhadhp)</small></a> on <span class=\"review-date\">October 12, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Free &amp; powerful</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">works like a charm</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/4a5nick/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b4506afca7b79154b981414bf233b58c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b4506afca7b79154b981414bf233b58c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/4a5nick/\" class=\"reviewer-name\">4a5nick</a> on <span class=\"review-date\">October 12, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">best plugin for WP!\nthanks!!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">best ecommerce plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/lenz_poa/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bd52597459532994ea18b5d4749a09ab?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bd52597459532994ea18b5d4749a09ab?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/lenz_poa/\" class=\"reviewer-name\">lenz_POA</a> on <span class=\"review-date\">October 10, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">best plugin to sell online</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">great plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/hamedimanzade/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/daa4e24a46acb55d350bb1b06f14e4ff?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/daa4e24a46acb55d350bb1b06f14e4ff?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/hamedimanzade/\" class=\"reviewer-name\">hamedimanzade</a> on <span class=\"review-date\">October 8, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">thank you </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Thank you for the support</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/georgebr/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/2dbe632fcbfc15813fc16399a74eb77b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/2dbe632fcbfc15813fc16399a74eb77b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/georgebr/\" class=\"reviewer-name\">georgebr</a> on <span class=\"review-date\">October 7, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Support is working and thanks for your help.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">All sorted</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/aibonewt/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/cb509a3a6f2384da713e3d3edebad7cf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/cb509a3a6f2384da713e3d3edebad7cf?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/aibonewt/\" class=\"reviewer-name\">aibonewt</a> on <span class=\"review-date\">October 5, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Got me fixed up in no time</div>\n</div>\n\";}s:13:\"download_link\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0.zip\";s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:2;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:3;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:4;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:5;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:6;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\";s:7:\"caption\";b:0;}}s:4:\"tags\";a:5:{s:9:\"ecommerce\";s:9:\"ecommerce\";s:12:\"online-store\";s:12:\"online store\";s:4:\"shop\";s:4:\"shop\";s:13:\"shopping-cart\";s:13:\"shopping cart\";s:10:\"storefront\";s:10:\"storefront\";}s:8:\"versions\";a:305:{s:5:\"3.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.0.zip\";s:5:\"3.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.1.zip\";s:5:\"3.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.2.zip\";s:5:\"3.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.3.zip\";s:5:\"3.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.4.zip\";s:5:\"3.0.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.5.zip\";s:5:\"3.0.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.6.zip\";s:5:\"3.0.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip\";s:5:\"3.0.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.8.zip\";s:5:\"3.0.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.9.zip\";s:5:\"3.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.0.zip\";s:5:\"3.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip\";s:5:\"3.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.2.zip\";s:5:\"3.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.0.zip\";s:5:\"3.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.1.zip\";s:5:\"3.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.2.zip\";s:5:\"3.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.3.zip\";s:5:\"3.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.4.zip\";s:5:\"3.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.5.zip\";s:5:\"3.2.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip\";s:5:\"3.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.0.zip\";s:5:\"3.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.1.zip\";s:5:\"3.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2.zip\";s:10:\"3.3.2-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2-rc.1.zip\";s:5:\"3.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.3.zip\";s:5:\"3.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.4.zip\";s:5:\"3.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip\";s:5:\"3.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.6.zip\";s:5:\"3.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0.zip\";s:12:\"3.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-beta.1.zip\";s:10:\"3.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-rc.2.zip\";s:5:\"3.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.1.zip\";s:5:\"3.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.2.zip\";s:5:\"3.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.3.zip\";s:5:\"3.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.4.zip\";s:5:\"3.4.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.5.zip\";s:5:\"3.4.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.6.zip\";s:5:\"3.4.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.7.zip\";s:5:\"3.4.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.8.zip\";s:5:\"3.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0.zip\";s:12:\"3.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-beta.1.zip\";s:10:\"3.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.1.zip\";s:10:\"3.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.2.zip\";s:5:\"3.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.1.zip\";s:6:\"3.5.10\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.10.zip\";s:5:\"3.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.2.zip\";s:5:\"3.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.3.zip\";s:5:\"3.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.4.zip\";s:5:\"3.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.5.zip\";s:5:\"3.5.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.6.zip\";s:5:\"3.5.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip\";s:5:\"3.5.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.8.zip\";s:5:\"3.5.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.9.zip\";s:5:\"3.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0.zip\";s:12:\"3.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-beta.1.zip\";s:10:\"3.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.1.zip\";s:10:\"3.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.2.zip\";s:10:\"3.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.3.zip\";s:5:\"3.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.1.zip\";s:5:\"3.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.2.zip\";s:5:\"3.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.3.zip\";s:5:\"3.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.4.zip\";s:5:\"3.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip\";s:5:\"3.6.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.6.zip\";s:5:\"3.6.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.7.zip\";s:5:\"3.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip\";s:12:\"3.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-beta.1.zip\";s:10:\"3.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.1.zip\";s:10:\"3.7.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.2.zip\";s:5:\"3.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip\";s:5:\"3.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.2.zip\";s:5:\"3.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.3.zip\";s:5:\"3.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip\";s:12:\"3.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-beta.1.zip\";s:10:\"3.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.1.zip\";s:10:\"3.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.2.zip\";s:5:\"3.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.1.zip\";s:5:\"3.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.2.zip\";s:5:\"3.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.3.zip\";s:5:\"3.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0.zip\";s:12:\"3.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.1.zip\";s:12:\"3.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.2.zip\";s:10:\"3.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.1.zip\";s:10:\"3.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.2.zip\";s:10:\"3.9.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.3.zip\";s:10:\"3.9.0-rc.4\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.4.zip\";s:5:\"3.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.1.zip\";s:5:\"3.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.2.zip\";s:5:\"3.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.3.zip\";s:5:\"3.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.4.zip\";s:5:\"3.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.5.zip\";s:5:\"4.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0.zip\";s:12:\"4.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-beta.1.zip\";s:10:\"4.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.1.zip\";s:10:\"4.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.2.zip\";s:5:\"4.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.1.zip\";s:5:\"4.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.2.zip\";s:5:\"4.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.3.zip\";s:5:\"4.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.4.zip\";s:5:\"4.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0.zip\";s:12:\"4.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.1.zip\";s:12:\"4.1.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.2.zip\";s:10:\"4.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.1.zip\";s:10:\"4.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.2.zip\";s:5:\"4.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.1.zip\";s:5:\"4.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.2.zip\";s:5:\"4.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.3.zip\";s:5:\"4.1.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.4.zip\";s:5:\"4.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0.zip\";s:10:\"4.2.0-RC.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.1.zip\";s:10:\"4.2.0-RC.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.2.zip\";s:12:\"4.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-beta.1.zip\";s:5:\"4.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.1.zip\";s:5:\"4.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.2.zip\";s:5:\"4.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.3.zip\";s:5:\"4.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.4.zip\";s:5:\"4.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.5.zip\";s:5:\"4.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0.zip\";s:12:\"4.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-beta.1.zip\";s:10:\"4.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.1.zip\";s:10:\"4.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.2.zip\";s:10:\"4.3.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.3.zip\";s:5:\"4.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.1.zip\";s:5:\"4.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.2.zip\";s:5:\"4.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.3.zip\";s:5:\"4.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.4.zip\";s:5:\"4.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.5.zip\";s:5:\"4.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.6.zip\";s:5:\"4.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0.zip\";s:12:\"4.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-beta.1.zip\";s:10:\"4.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-rc.1.zip\";s:5:\"4.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.1.zip\";s:5:\"4.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.2.zip\";s:5:\"4.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.3.zip\";s:5:\"4.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.4.zip\";s:5:\"4.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0.zip\";s:12:\"4.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-beta.1.zip\";s:10:\"4.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.1.zip\";s:10:\"4.5.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.3.zip\";s:5:\"4.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.1.zip\";s:5:\"4.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.2.zip\";s:5:\"4.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.3.zip\";s:5:\"4.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.4.zip\";s:5:\"4.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.5.zip\";s:5:\"4.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0.zip\";s:12:\"4.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-beta.1.zip\";s:10:\"4.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-rc.1.zip\";s:5:\"4.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.1.zip\";s:5:\"4.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.2.zip\";s:5:\"4.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.3.zip\";s:5:\"4.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.4.zip\";s:5:\"4.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.5.zip\";s:5:\"4.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip\";s:12:\"4.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.1.zip\";s:12:\"4.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.2.zip\";s:10:\"4.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-rc.1.zip\";s:5:\"4.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1.zip\";s:12:\"4.7.1-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1-beta.1.zip\";s:5:\"4.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.2.zip\";s:5:\"4.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.3.zip\";s:5:\"4.7.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.4.zip\";s:5:\"4.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0.zip\";s:12:\"4.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-beta.1.zip\";s:10:\"4.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.1.zip\";s:10:\"4.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.2.zip\";s:5:\"4.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.1.zip\";s:5:\"4.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.2.zip\";s:5:\"4.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.3.zip\";s:5:\"4.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0.zip\";s:12:\"4.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-beta.1.zip\";s:10:\"4.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.1.zip\";s:10:\"4.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.2.zip\";s:5:\"4.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.1.zip\";s:5:\"4.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.2.zip\";s:5:\"4.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.3.zip\";s:5:\"4.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.4.zip\";s:5:\"4.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.5.zip\";s:5:\"5.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0.zip\";s:12:\"5.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.1.zip\";s:12:\"5.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.2.zip\";s:10:\"5.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.1.zip\";s:10:\"5.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.2.zip\";s:10:\"5.0.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.3.zip\";s:5:\"5.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.1.zip\";s:5:\"5.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.2.zip\";s:5:\"5.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.3.zip\";s:5:\"5.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0.zip\";s:12:\"5.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-beta.1.zip\";s:10:\"5.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-rc.1.zip\";s:5:\"5.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.1.zip\";s:5:\"5.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.2.zip\";s:5:\"5.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.3.zip\";s:5:\"5.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0.zip\";s:12:\"5.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-beta.1.zip\";s:10:\"5.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.1.zip\";s:10:\"5.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.2.zip\";s:5:\"5.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.1.zip\";s:5:\"5.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip\";s:5:\"5.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.3.zip\";s:5:\"5.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.4.zip\";s:5:\"5.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.5.zip\";s:5:\"5.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0.zip\";s:12:\"5.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-beta.1.zip\";s:10:\"5.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.1.zip\";s:10:\"5.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.2.zip\";s:5:\"5.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.1.zip\";s:5:\"5.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.2.zip\";s:5:\"5.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.3.zip\";s:5:\"5.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0.zip\";s:12:\"5.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-beta.1.zip\";s:10:\"5.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-rc.1.zip\";s:5:\"5.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.1.zip\";s:5:\"5.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.2.zip\";s:5:\"5.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.3.zip\";s:5:\"5.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.4.zip\";s:5:\"5.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0.zip\";s:12:\"5.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-beta.1.zip\";s:10:\"5.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.1.zip\";s:10:\"5.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.2.zip\";s:5:\"5.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.1.zip\";s:5:\"5.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.2.zip\";s:5:\"5.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.3.zip\";s:5:\"5.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.4.zip\";s:5:\"5.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0.zip\";s:12:\"5.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-beta.1.zip\";s:10:\"5.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.1.zip\";s:10:\"5.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.2.zip\";s:5:\"5.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.1.zip\";s:5:\"5.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.2.zip\";s:5:\"5.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0.zip\";s:12:\"5.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-beta.1.zip\";s:10:\"5.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-rc.1.zip\";s:5:\"5.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.1.zip\";s:5:\"5.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.2.zip\";s:5:\"5.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0.zip\";s:12:\"5.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.1.zip\";s:12:\"5.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.2.zip\";s:10:\"5.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-rc.1.zip\";s:5:\"5.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.1.zip\";s:5:\"5.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0.zip\";s:12:\"5.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-beta.1.zip\";s:10:\"5.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.1.zip\";s:10:\"5.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.2.zip\";s:5:\"5.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.1.zip\";s:5:\"6.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0.zip\";s:12:\"6.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-beta.1.zip\";s:10:\"6.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-rc.1.zip\";s:5:\"6.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.1.zip\";s:5:\"6.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0.zip\";s:12:\"6.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-beta.1.zip\";s:10:\"6.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.1.zip\";s:10:\"6.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.2.zip\";s:5:\"6.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.1.zip\";s:5:\"6.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.2.zip\";s:5:\"6.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0.zip\";s:12:\"6.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-beta.1.zip\";s:10:\"6.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.1.zip\";s:10:\"6.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.2.zip\";s:5:\"6.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.1.zip\";s:5:\"6.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.2.zip\";s:5:\"6.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0.zip\";s:12:\"6.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-beta.1.zip\";s:10:\"6.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.1.zip\";s:10:\"6.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.2.zip\";s:5:\"6.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.1.zip\";s:5:\"6.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0.zip\";s:12:\"6.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0-beta.1.zip\";s:10:\"6.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0-rc.1.zip\";s:5:\"6.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.1.zip\";s:5:\"6.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0.zip\";s:12:\"6.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-beta.1.zip\";s:10:\"6.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.1.zip\";s:10:\"6.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.2.zip\";s:5:\"6.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip\";s:5:\"6.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0.zip\";s:12:\"6.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-beta.1.zip\";s:10:\"6.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.1.zip\";s:10:\"6.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.2.zip\";s:5:\"6.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.1.zip\";s:5:\"6.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0.zip\";s:12:\"6.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.1.zip\";s:12:\"6.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.2.zip\";s:10:\"6.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-rc.1.zip\";s:5:\"6.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0.zip\";s:12:\"6.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.1.zip\";s:12:\"6.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.2.zip\";s:10:\"6.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-rc.1.zip\";s:5:\"6.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.1.zip\";s:5:\"6.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.2.zip\";s:5:\"6.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0.zip\";s:12:\"6.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.1.zip\";s:12:\"6.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.2.zip\";s:10:\"6.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-rc.1.zip\";s:5:\"6.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.1.zip\";s:5:\"6.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.2.zip\";s:5:\"6.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.3.zip\";s:5:\"6.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.4.zip\";s:5:\"7.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0.zip\";s:12:\"7.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.1.zip\";s:12:\"7.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.2.zip\";s:12:\"7.0.0-beta.3\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.3.zip\";s:10:\"7.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.1.zip\";s:10:\"7.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.2.zip\";s:12:\"7.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.1.zip\";s:5:\"trunk\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";s:4:\"high\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";}}s:19:\"the-events-calendar\";a:25:{s:4:\"name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:7:\"version\";s:7:\"6.0.1.1\";s:6:\"author\";s:52:\"<a href=\"https://evnt.is/1x\">The Events Calendar</a>\";s:14:\"author_profile\";s:49:\"https://profiles.wordpress.org/theeventscalendar/\";s:12:\"contributors\";a:14:{s:17:\"theeventscalendar\";a:3:{s:7:\"profile\";s:49:\"https://profiles.wordpress.org/theeventscalendar/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/004d5851721c5bd2b3491b51429f771e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"The Events Calendar\";}s:7:\"borkweb\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/borkweb/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/1e656e49ac69899daa3ff81232b041eb?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Matthew Batchelder\";}s:7:\"bordoni\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/bordoni/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c412fa91c51f4e2cff375f74efb663e3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Gustavo Bordoni\";}s:11:\"brianjessee\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/brianjessee/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a35212d9e01d2ca4e96ecdd05b110b4a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Brian\";}s:6:\"aguseo\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/aguseo/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/57554805e57d21c1036c8b91f944c8ca?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Andras Guseo\";}s:8:\"camwynsp\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/camwynsp/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/30d0a438b49ba2ab1b325c71349ab3bb?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Stephen Page\";}s:8:\"geoffbel\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/geoffbel/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7d6fd85658178125baa17b6055dd3be1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"GeoffBel\";}s:7:\"jentheo\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/jentheo/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e02959cfbac1b4fab42cd6019c0e70c6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"Jennifer\";}s:11:\"leahkoerper\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/leahkoerper/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9fe5fa3836f54c58936a3979212da076?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"leahkoerper\";}s:8:\"lucatume\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/lucatume/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d393fcb75e0801c42fe5559ae1e846e6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"lucatume\";}s:11:\"neillmcshea\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/neillmcshea/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/43599a71b1b6506a26d029221f1d61a9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"neillmcshea\";}s:6:\"vicskf\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/vicskf/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3a2a95b83191dc10b76ba61aba61c618?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Victor Zarranz\";}s:9:\"zbtirrell\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/zbtirrell/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eeb48b1ae8eca09700c2c2642a1f7dcf?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Zach Tirrell\";}s:7:\"juanfra\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/juanfra/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bb8f8e3c87dfce235f6bfe5a2d8ece2b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Juan Aldasoro\";}}s:8:\"requires\";s:5:\"5.8.4\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"7.3\";s:6:\"rating\";i:86;s:7:\"ratings\";a:5:{i:5;i:1492;i:4;i:115;i:3;i:73;i:2;i:57;i:1;i:231;}s:11:\"num_ratings\";i:1968;s:15:\"support_threads\";i:341;s:24:\"support_threads_resolved\";i:147;s:15:\"active_installs\";i:800000;s:12:\"last_updated\";s:21:\"2022-09-29 5:43pm GMT\";s:5:\"added\";s:10:\"2010-01-19\";s:8:\"homepage\";s:0:\"\";s:8:\"sections\";a:6:{s:11:\"description\";s:6743:\"<p>Easily create and manage an events calendar on your WordPress site with <a href=\"https://evnt.is/mj\" rel=\"nofollow ugc\">The Events Calendar</a> free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.</p>\n<p><div class=\"embed-vimeo\" style=\"text-align: center;\"><iframe loading=\"lazy\" src=\"https://player.vimeo.com/video/425323974\" width=\"640\" height=\"360\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>\n</p>\n<p><a href=\"https://evnt.is/1b4-\" rel=\"nofollow ugc\">See more videos on our YouTube channel</a></p>\n<p>Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.</p>\n<h4>📅 The #1 Calendar for WordPress</h4>\n<p>See the calendar in action on our <a href=\"https://evnt.is/1ajs\" rel=\"nofollow ugc\">demo experience</a>. Just getting started? Read through the <a href=\"https://evnt.is/2d\" rel=\"nofollow ugc\">New User Primer</a> to get set up.</p>\n<p>Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?</p>\n<p><strong>Check out <a href=\"https://evnt.is/mj\" rel=\"nofollow ugc\">Events Calendar Pro</a>, <a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a>, and <a href=\"https://evnt.is/2a\" rel=\"nofollow ugc\">more add-ons</a>.</strong></p>\n<h4>🔌🎨 Plug and Play or Customize</h4>\n<p>The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.</p>\n<p>Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart&#8217;s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, <a href=\"https://evnt.is/eu\" rel=\"nofollow ugc\">careful documentation</a>, and a <a href=\"https://evnt.is/1a0r\" rel=\"nofollow ugc\">library of free extensions</a>.</p>\n<p>Whether your vision is big or small, you&#8217;re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.</p>\n<h4>✨ Features</h4>\n<p>Our feature-rich plugin comes with everything you need to create and manage your calendar.</p>\n<p>✔️ Rapidly create events<br />\n✔️ Saved venues &amp; organizers<br />\n✔️ Calendar month view with tooltips<br />\n✔️ Event List view<br />\n✔️ Day view<br />\n✔️ Block Editor support<br />\n✔️ Event search<br />\n✔️ Google maps<br />\n✔️ Widget: Upcoming events list<br />\n✔️ Events Taxonomies (Categories &amp; Tags)<br />\n✔️ Google Calendar and iCal exporting<br />\n✔️ WP REST API endpoints<br />\n✔️ Completely ajaxified for super smooth browsing<br />\n✔️ Completely responsive from mobile to tablet to desktop<br />\n✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.<br />\n✔️ Increase your SEO with JSON-LD Structured Data<br />\n✔️ Internationalized &amp; translated<br />\n✔️ Multiple stylesheets to improve integration<br />\n✔️ Extensive template tags for customization<br />\n✔️ Hooks &amp; filters galore<br />\n✔️ Caching support<br />\n✔️ Debug mode for developers<br />\n✔️ <a href=\"https://evnt.is/1a0r\" rel=\"nofollow ugc\">Library of extensions</a></p>\n<h3>📃 Documentation</h3>\n<p>All of our documentation can be found in <a href=\"https://evnt.is/eu\" rel=\"nofollow ugc\">our Knowledgebase</a>.</p>\n<p>Additional helpful links:</p>\n<ul>\n<li><a href=\"https://evnt.is/2l\" rel=\"nofollow ugc\">The Events Calendar New User Primer</a></li>\n<li><a href=\"https://evnt.is/2m\" rel=\"nofollow ugc\">The Themer’s Guide to The Events Calendar</a></li>\n</ul>\n<p>If you have any questions about this plugin, you can post a thread in the <a href=\"https://wordpress.org/support/plugin/the-events-calendar\">WordPress.org forum</a>. Please search existing threads before starting a new one.</p>\n<h3>Add-Ons</h3>\n<p>Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on <a href=\"https://evnt.is/18wn\" rel=\"nofollow ugc\">our website</a>.</p>\n<p>Our Free Plugins:</p>\n<p>🎟️ <a href=\"https://wordpress.org/plugins/event-tickets/\">Event Tickets</a><br />\n📐 <a href=\"https://wordpress.org/plugins/advanced-post-manager/\">Advanced Post Manager</a></p>\n<p>Our Premium Plugins and Services:</p>\n<p>⚡ <a href=\"https://evnt.is/18wi\" rel=\"nofollow ugc\">Events Calendar PRO</a><br />\n↪️ <a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a> (service)<br />\n🎟️ <a href=\"https://evnt.is/18wk\" rel=\"nofollow ugc\">Event Tickets Plus</a><br />\n✉️ <a href=\"https://evnt.is/1ajt\" rel=\"nofollow ugc\">Promoter</a><br />\n👥 <a href=\"https://evnt.is/2g\" rel=\"nofollow ugc\">Community Events</a><br />\n🎟️ <a href=\"https://evnt.is/18wl\" rel=\"nofollow ugc\">Community Tickets</a><br />\n✏️ <a href=\"https://evnt.is/fa\" rel=\"nofollow ugc\">Filter Bar</a><br />\n🗓️ <a href=\"https://evnt.is/2e\" rel=\"nofollow ugc\">Eventbrite Tickets</a><br />\n📡 <a href=\"https://evnt.is/1aky\" rel=\"nofollow ugc\">Virtual Events</a></p>\n<h3>Help</h3>\n<p>If you aren’t familiar with The Events Calendar, check out our <a href=\"https://evnt.is/2p\" rel=\"nofollow ugc\">New User Primer</a>. It will have you creating events in no time.</p>\n<p>Ready to dig deeper? Check out these resources:</p>\n<ul>\n<li><a href=\"https://evnt.is/2u\" rel=\"nofollow ugc\">Tutorials</a></li>\n<li><a href=\"https://theeventscalendar.com/release-schedule/\" rel=\"nofollow ugc\">Release Schedule</a></li>\n<li><a href=\"https://theeventscalendar.com/known-issues/\" rel=\"nofollow ugc\">Known Issues</a></li>\n<li><a href=\"https://evnt.is/eu\" rel=\"nofollow ugc\">Documentation</a></li>\n<li><a href=\"https://evnt.is/2t\" rel=\"nofollow ugc\">Help Videos</a></li>\n<li><a href=\"https://evnt.is/2v\" rel=\"nofollow ugc\">Release Notes</a></li>\n</ul>\n<p>We check in on the <a href=\"https://wordpress.org/support/plugin/the-events-calendar/\">The Events Calendar forum here on WordPress.org</a> about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.</p>\n<p>Still have a question? Shoot us an email at support@theeventscalendar.com.</p>\n\";s:12:\"installation\";s:1322:\"<p>Installing the plugin is easy. Just follow one of the following methods:</p>\n<h4>Install The Events Calendar from within WordPress</h4>\n<ol>\n<li>Visit the plugins page within your dashboard and select ‘Add New’</li>\n<li>Search for &#8220;Events Calendar&#8221;</li>\n<li>Activate The Events Calendar from your Plugins page</li>\n<li>You&#8217;re done!</li>\n</ol>\n<h4>Install The Events Calendar Manually</h4>\n<ol>\n<li>From the dashboard of your site, navigate to Plugins &#8211;&gt; Add New.</li>\n<li>Select the Upload option and hit &#8220;Choose File.&#8221;</li>\n<li>When the popup appears select the the-events-calendar-x.x.zip file from your desktop. (The &#8216;x.x&#8217; will change depending on the current version number).</li>\n<li>Follow the on-screen instructions and wait as the upload completes.</li>\n<li>When it&#8217;s finished, activate the plugin via the prompt. A message will show confirming activation was successful. A link to access the calendar directly on the frontend will be presented here as well.</li>\n</ol>\n<p>That&#8217;s it! Just configure your settings as you see fit, and you&#8217;re on your way to creating events in style. Need help getting things started? Check out our <a href=\"https://evnt.is/2l\" rel=\"nofollow ugc\">new user primer</a> for help with settings and features.</p>\n\";s:3:\"faq\";s:9756:\"\n<dt id=\'are%20there%20any%20troubleshooting%20steps%20you%27d%20suggest%20i%20try%20that%20might%20resolve%20my%20issue%20before%20i%20post%20a%20new%20thread%3F\'>\nAre there any troubleshooting steps you&#8217;d suggest I try that might resolve my issue before I post a new thread?\n</h4>\n<p>\n<p>First, make sure that you&#8217;re running the latest version of The Events Calendar. If you’re running Events Calendar PRO or  any other add-ons, make sure those are current / running the latest code as well.</p>\n<p>The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar is running on your site. If the issue persists from there, revert to the default <a href=\"https://wordpress.org/themes/twentytwenty/\">Twenty Twenty</a> theme. If the issue is resolved after deactivating a specific plugin or your theme, you’ll know that is the source of the conflict.</p>\n<p>Note that we aren’t going to say “tough luck” if you identify a plugin/theme conflict. While we can’t guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.</p>\n</p>\n<dt id=\'i%27m%20still%20stuck.%20where%20do%20i%20go%20to%20file%20a%20bug%20or%20ask%20a%20question%3F\'>\nI&#8217;m still stuck. Where do I go to file a bug or ask a question?\n</h4>\n<p>\n<p>Users of the free The Events Calendar should post their questions in the plugin&#8217;s <a href=\"https://wordpress.org/support/plugin/the-events-calendar/\">WordPress.org forum</a>, which we visit about once a week. Please make sure to read <a href=\"https://evnt.is/19oc\" rel=\"nofollow ugc\">our sticky post</a> providing an overview of the support we provide free users BEFORE posting. If you find you&#8217;re not getting support in as timely a fashion as you wish, you might want to consider purchasing a license for Events Calendar Pro.</p>\n<p>If you&#8217;re already an Events Calendar Pro user, you&#8217;re entitled access to our actively-monitored <a href=\"https://evnt.is/1aju\" rel=\"nofollow ugc\">Premium Support</a> on our website. We can provide a deeper level of support here and hit these forums on a daily basis during the work week. Generally, except in times of increased support loads, we reply to all tickets within 24-48 hours during the business week.</p>\n</p>\n<dt id=\'what%27s%20the%20difference%20between%20the%20events%20calendar%20and%20events%20calendar%20pro%3F\'>\nWhat&#8217;s the difference between The Events Calendar and Events Calendar Pro?\n</h4>\n<p>\n<p>The Events Calendar is our cornerstone plugin, and it’s required in order to run any of our premium calendar add-ons, including Events Calendar Pro, Community Events, Filter Bar, and others.</p>\n<p>In other words, Events Calendar Pro runs alongside The Events Calendar and enhances it with extra features, including recurring events, additional calendar views, calendar shortcodes, advanced widgets, custom event fields and more.</p>\n</p>\n<dt id=\'what%20add-ons%20are%20available%20for%20the%20events%20calendar%2C%20and%20where%20can%20i%20read%20more%20about%20them%3F\'>\nWhat add-ons are available for The Events Calendar, and where can I read more about them?\n</h4>\n<p>\n<p>The following add-ons are available for The Events Calendar:</p>\n<ul>\n<li><a href=\"https://evnt.is/18wi\" rel=\"nofollow ugc\">Events Calendar Pro</a>, for adding premium calendar features like recurring events, advanced views, cool widgets, <a href=\"https://evnt.is/1ajw\" rel=\"nofollow ugc\">shortcodes</a>, additional fields, and more!</li>\n<li><a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a>, a service that effortlessly fills your calendar with events from Meetup, Google Calendar, iCalendar, Eventbrite, CSV, and ICS.</li>\n<li><a href=\"https://evnt.is/1aky\" rel=\"nofollow ugc\">Virtual Events</a>, which optimizes your calendar for virtual events including Zoom integration, video and livestream embeds, SEO optimization for online events and more.</li>\n<li><a href=\"https://wordpress.org/plugins/event-tickets/\">Event Tickets</a> (free), which allows you to sell tickets and collect RSVPs to events. It can run alongside The Events Calendar or as a standalone plugin that adds ticket and RSVP functionality to WordPress posts and pages.</li>\n<li><a href=\"https://evnt.is/18wk\" rel=\"nofollow ugc\">Event Tickets Plus</a>, which allows you to sell tickets for your events using your favorite e-commerce platform.</li>\n<li><a href=\"https://evnt.is/1ajt\" rel=\"nofollow ugc\">Promoter</a>, automated email communication made just for The Events Calendar and Event Tickets. Stay in touch with your attendees every step of the way.</li>\n<li><a href=\"https://evnt.is/2g\" rel=\"nofollow ugc\">Community Events</a>, for allowing frontend event submission from your readers.</li>\n<li><a href=\"https://evnt.is/18wl\" rel=\"nofollow ugc\">Community Tickets</a>, which allows event organizers to sell tickets to the events they submit via Community Events.</li>\n<li><a href=\"https://evnt.is/fa\" rel=\"nofollow ugc\">Filter Bar</a>, for adding advanced frontend filtering capabilities to your events calendar.</li>\n<li><a href=\"https://evnt.is/2e\" rel=\"nofollow ugc\">Eventbrite Tickets</a>, for selling tickets to your event directly through Eventbrite.</li>\n</ul>\n</p>\n<dt id=\'can%20i%20import%20events%20to%20my%20calendar%3F\'>\nCan I import events to my calendar?\n</h4>\n<p>\n<p>Yes! The Events Calendar has a built-in CSV import tool. If you want to step it up and automatically import events from Google Calendar, Meetup, Eventbrite and more, check out <a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20sell%20tickets%20to%20events%20on%20my%20calendar%3F\'>\nHow do I sell tickets to events on my calendar?\n</h4>\n<p>\n<p>You&#8217;ll want to use our <a href=\"https://wordpress.org/plugins/event-tickets/\">Event Tickets</a> plugin for that. This free plugin works alongside The Events Calendar and lets you create RSVPs and tickets for events. Event Tickets integrates with PayPal so you can collect payments for tickets, while our premium solution, Event Tickets Plus fully integrates with WooCommerce or Easy Digital Downloads.</p>\n</p>\n<dt id=\'can%20i%20have%20more%20than%20one%20calendar%20on%20my%20site%3F\'>\nCan I have more than one calendar on my site?\n</h4>\n<p>\n<p>Unfortunately, no. However, you can use <a href=\"https://evnt.is/1bay\" rel=\"nofollow ugc\">event categories</a> or tags to create calendar views that only display certain events. For example, you could create a direct link to a calendar view that only shows events categorized as “Fitness,” <a href=\"https://evnt.is/1ajv\" rel=\"nofollow ugc\">like this example from our demo site</a>.</p>\n<p>With <a href=\"https://evnt.is/18wi\" rel=\"nofollow ugc\">Events Calendar Pro</a>, you can use <a href=\"https://evnt.is/1ajw\" rel=\"nofollow ugc\">shortcodes</a> to embed your calendar on other WordPress pages and posts, then filter that calendar by category.</p>\n</p>\n<dt id=\'can%20i%20allow%20people%20to%20submit%20events%20to%20my%20calendar%3F\'>\nCan I allow people to submit events to my calendar?\n</h4>\n<p>\n<p>This is available with the <a href=\"https://evnt.is/2g\" rel=\"nofollow ugc\">Community Events</a> add-on to facilitate submissions. Install Community Events alongside The Events Calendar and a page will be added to your WordPress site with a form that visitors can use to submit events. As the calendar owner, you have full control over whether event submissions are published immediately or require moderation first.</p>\n<p>If you want to let users sell tickets for the events they submit, check out <a href=\"https://evnt.is/18wl\" rel=\"nofollow ugc\">Community Tickets</a>. It runs with The Events Calendar, Community Events, and Event Tickets and empowers visitors to create and sell tickets, splitting the profits with you.</p>\n</p>\n<dt id=\'what%E2%80%99s%20the%20difference%20between%20the%20events%20calendar%20and%20events%20calendar%20pro\'>\nWhat’s the difference between The Events Calendar and Events Calendar Pro\n</h4>\n<p>\n<p>The Events Calendar is our cornerstone plugin, and it’s required in order to run any of our premium calendar add-ons, including <a href=\"https://evnt.is/18wi\" rel=\"nofollow ugc\">Events Calendar Pro</a>, <a href=\"https://evnt.is/1bax\" rel=\"nofollow ugc\">Community Events</a>, <a href=\"https://evnt.is/fa\" rel=\"nofollow ugc\">Filter Bar</a>, and others.</p>\n<p>In other words, Events Calendar Pro runs alongside The Events Calendar and enhances it with extra features, including recurring events and event Series, additional calendar views, calendar shortcodes, advanced widgets, custom event fields, a duplicate event tool, and more.</p>\n</p>\n<dt id=\'i%20have%20a%20feature%20idea.%20what%27s%20the%20best%20way%20to%20tell%20you%20about%20it%3F\'>\nI have a feature idea. What&#8217;s the best way to tell you about it?\n</h4>\n<p>\n<p>We&#8217;ve got an <a href=\"https://app.loopedin.io/the-events-calendar-suite-roadmap#/ideas\" rel=\"nofollow ugc\">ideas page</a> where we&#8217;re actively watching for feature ideas from the community. Vote up existing feature requests or add your own, and help us shape <a href=\"https://app.loopedin.io/the-events-calendar-suite-roadmap#/roadmap\" rel=\"nofollow ugc\">our roadmap</a>.</p>\n</p>\n<dt id=\'i%27ve%20still%20got%20questions.%20where%20can%20i%20find%20answers%3F\'>\nI&#8217;ve still got questions. Where can I find answers?\n</h4>\n<p>\n<p>Check out our extensive <a href=\"https://evnt.is/18wm\" rel=\"nofollow ugc\">knowledgebase</a> for articles on using, tweaking, and troubleshooting our plugins.</p>\n</p>\n\n\";s:9:\"changelog\";s:261449:\"<h4>[6.0.1.1] 2022-09-29</h4>\n<ul>\n<li>Fix &#8211; Prevent Google Calendar duplicated Events from Importing with Aggregator. [TEC-4497]</li>\n</ul>\n<h4>[6.0.1] 2022-09-22</h4>\n<ul>\n<li>Fix &#8211; Prevent network deactivation from overwriting the subsite settings with main site cached settings. [TEC-3738]</li>\n<li>Fix &#8211; Correct some translation domains pointing to the wrong plugin. [TEC-4450]</li>\n<li>Fix &#8211; Ensure the details in the single event page are accurate for Divi users who set any Divi template under Settings → Events template. [TEC-3814]</li>\n<li>Fix &#8211; Add caching to prevent duplicated queries for translated venue/organizer values. props to @dgwatkins for the suggested fix! [TEC-4428]</li>\n<li>Fix &#8211; Check the document for <code>lang</code> and <code>rtl</code> attributes and pass them on to the datepicker so it adapts properly. [TEC-4452]</li>\n<li>Fix &#8211; Corrected an issue where the Organizer Block was showing the &#8220;Add Another Organizer&#8221; button when no organizers were selected. [CE-11]</li>\n<li>Fix &#8211; Corrected an issue where the &#8220;Edit Venue&#8221; and &#8220;Edit Organizer&#8221; links were displaying with no link. [CE-165]</li>\n<li>Fix &#8211; Correct migration error when The Events Calendar PRO is not active. [TEC-4475]</li>\n<li>Fix &#8211; Normalize, reformat and rebuild Event date-related meta to fix a number of migration preview failures [ECP-1304]</li>\n<li>Fix &#8211; Correct a problem with moving tickets when The Events Calendar PRO is not active. [TEC-4471]</li>\n<li>Fix &#8211; Correct an issue with migrating past events that straddle Daylight Savings Time. [ECP-1270]</li>\n<li>Fix &#8211; Fix the Community Events recurrence link. [ECP-1215]</li>\n<li>Tweak &#8211; Add some helpful knowledgebase article links to the CSV import screen. [TEC-4353]</li>\n<li>Tweak &#8211; Ensure the Fast-forward link uses the correct, customizable color as other links. [TEC-3962]</li>\n<li>Tweak &#8211; Include Custom Tables Migration in the Support System Information array. [ECP-1316]</li>\n<li>Tweak &#8211; Add compatibility for new &#8220;Convert to single&#8221; option in The Events Calendar PRO. [ECP-1308]</li>\n<li>Language &#8211; 5 new strings added, 163 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.0.1] 2022-09-07</h4>\n<ul>\n<li>Fix &#8211; Prevent <code>E_ERROR</code> from showing up when calling <code>tribe_context()-&gt;is( \'is_main_query\' )</code> too early in execution. [TEC-4464]</li>\n</ul>\n<h4>[6.0.0] 2022-09-06</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 6.0.0 is only compatible with Events Calendar PRO 6.0.0 and higher</li>\n<li>Feature &#8211; Custom tables and optimization of Cache Primers to enable reduced and stabilized number of queries on Event views.</li>\n<li>Feature &#8211; Inclusion of Event Occurrences custom table <code>{$prefix}_tec_occurrences</code>.</li>\n<li>Feature &#8211; Inclusion of Events custom table <code>{$prefix}_tec_events</code>.</li>\n<li>Tweak &#8211; Legacy views are now fully deprecated and most of the template files and code was removed, please see other changelog items to see modifications.</li>\n<li>Language &#8211; 123 new strings added, 296 updated, 0 fuzzied, and 161 obsoleted</li>\n<li>Tweak &#8211; Methods marked as deprecated: <code>Tribe__Events__Main::add_new_organizer</code>, <code>Tribe__Events__Main::default_view</code>, <code>Tribe__Events__Main::fullAddress</code>, <code>Tribe__Events__Main::fullAddressString</code>, <code>Tribe__Events__Main::getDateStringShortened</code>, <code>Tribe__Events__Main::getPostTypes</code>, <code>Tribe__Events__Main::googleCalendarLink</code>, <code>Tribe__Events__Main::googleMapLink</code>, <code>Tribe__Events__Main::monthNames</code>, <code>Tribe__Events__Main::nextMonth</code>, <code>Tribe__Events__Main::previousMonth</code>, <code>Tribe__Events__Main::setDisplay</code></li>\n<li>Tweak &#8211; Functions moved to <code>src/functions/template-tags/deprecated</code>: <code>tribe_events_the_header_attributes</code>, <code>tribe_get_next_day_date</code>, <code>tribe_get_previous_day_date</code></li>\n<li>Tweak &#8211; Functions/methods refactored:  <code>tribe_events_is_view_enabled</code>, <code>tribe_is_ajax_view_request</code>, <code>tribe_meta_event_category_name</code></li>\n<li>Tweak &#8211; Functions/Methods Removed:  <code>tribe_get_list_widget_events</code>, <code>Tribe__Events__Main::register_list_widget</code>, <code>Tribe__Events__Main::init_day_view</code>, <code>Tribe__Events__Main::eventQueryVars</code>, <code>Tribe__Events__Main::ecpActive</code>, <code>Tribe__Events__Main::dateHelper</code>, <code>Tribe__Events__Main::dateToTimeStamp</code>, <code>Tribe__Events__Main::defaultValueReplaceEnabled</code>, <code>Tribe__Events__Main::addHelpAdminMenuItem</code>, <code>Tribe__Events__Main::getNotices</code>, <code>Tribe__Events__Main::removeNotice</code>, <code>Tribe__Events__Main::isNotice</code>, <code>Tribe__Events__Main::setNotice</code>, <code>Tribe__Events__Main::renderDebug</code>, <code>Tribe__Events__Main::debug</code>, <code>Tribe__Events__Main::truncate</code>, <code>Tribe__Events__Main::saveAllTabsHidden</code>, <code>Tribe__Events__Main::doNetworkSettingTab</code>, <code>Tribe__Events__Main::addNetworkOptionsPage</code>, <code>Tribe__Events__Main::setNetworkOptions</code>, <code>Tribe__Events__Main::getNetworkOption</code>, <code>Tribe__Events__Main::getNetworkOptions</code>, <code>Tribe__Events__Main::setOption</code>, <code>Tribe__Events__Main::setOptions</code>, <code>Tribe__Events__Main::getOption</code>, <code>Tribe__Events__Main::getOptions</code>, <code>Tribe__Events__Main::getTagRewriteSlug</code>, <code>Tribe__Events__Main::getTaxRewriteSlug</code>, <code>Tribe__Events__Main::doHelpTab</code>, <code>Tribe__Events__Main::doSettingTabs</code>, <code>Tribe__Events__Main::array_insert_before_key</code>, <code>Tribe__Events__Main::array_insert_after_key</code>, <code>Tribe__Events__Main::add_post_type_to_edit_term_link</code>, <code>Tribe__Events__Main::prepare_to_fix_tagcloud_links</code>, <code>Tribe__Events__Main::saved_organizers_dropdown</code>, <code>Tribe__Events__Main::saved_venues_dropdown</code>, <code>Tribe__Events__Main::set_meta_factory_global</code>, <code>Tribe__Events__Main::initOptions</code>, <code>Tribe__Events__Main::loadTextDomain</code>, <code>Tribe__Events__Main::common</code>, <code>Tribe__Events__Main::issue_noindex</code>, <code>Tribe__Events__Main::displayEventOrganizerDropdown</code>, <code>Tribe__Events__Main::displayEventVenueDropdown</code>, <code>Tribe__Events__Main::checkAddOnCompatibility</code>, <code>Tribe__Events__Main::maybe_delay_activation_if_outdated_common</code>, <code>Tribe__Events__Main::is_delayed_activation</code>, <code>Tribe__Events__Main::get_event_link</code>, <code>Tribe__Events__Main::get_closest_event</code>, <code>Tribe__Events__Main::setPostExceptionThrown</code>, <code>Tribe__Events__Main::getPostExceptionThrown</code>, <code>Tribe__Events__Main::manage_preview_metapost</code>, <code>Tribe__Events__Main::setDashicon</code>, <code>Tribe__Events__Main::printLocalizedAdmin</code>, <code>Tribe__Events__Main::localizeAdmin</code>, <code>Tribe__Events__Main::asset_fixes</code>, <code>Tribe__Events__Main::add_admin_assets</code>, <code>Tribe__Events__Main::loadStyle</code>, <code>Tribe__Events__Main::enqueue_wp_admin_menu_style</code>, <code>Tribe__Events__Main::get_closest_event_where</code>, <code>Tribe__Events__Main::setup_listview_in_bar</code>, <code>Tribe__Events__Main::setup_gridview_in_bar</code>, <code>Tribe__Events__Main::setup_dayview_in_bar</code>, <code>Tribe__Events__Main::setup_date_search_in_bar</code>, <code>Tribe__Events__Main::remove_hidden_views</code>, <code>Tribe__Events__Main::setup_keyword_search_in_bar</code>, <code>Tribe__Events__Main::OrganizerMetaBox</code>, <code>Tribe__Events__Main::VenueMetaBox</code>, <code>Tribe__Events__Main::EventsChooserBox</code>, <code>Tribe__Events__Main::normalize_organizer_submission</code>, <code>Tribe__Events__Main::get_i18n_strings_for_domains</code>, <code>Tribe__Events__Main::get_i18n_strings</code>, <code>Tribe__Events__Main::redirect_past_upcoming_view_urls</code>, <code>Tribe__Events__Main::getOrganizerPostTypeArgs</code>, <code>Tribe__Events__Main::getVenuePostTypeArgs</code>, <code>Tribe__Events__Main::disable_pro</code>, <code>Tribe__Events__Main::template_redirect</code>, <code>Tribe__Events__Main::handle_submit_bar_redirect</code>, <code>Tribe__Events__Main::print_noindex_meta</code>, <code>Tribe__Events__Query::init</code>, <code>Tribe__Events__Query::parse_query</code>, <code>Tribe__Events__Query::pre_get_posts</code>, <code>Tribe__Events__Query::default_page_on_front</code>, <code>Tribe__Events__Query::multi_type_posts_fields</code>, <code>Tribe__Events__Query::posts_join</code>, <code>Tribe__Events__Query::posts_fields</code>, <code>Tribe__Events__Query::posts_results</code>, <code>Tribe__Events__Query::posts_where</code>, <code>Tribe__Events__Query::posts_orderby_venue_organizer</code>, <code>Tribe__Events__Query::posts_join_venue_organizer</code>, <code>Tribe__Events__Query::posts_distinct</code>, <code>Tribe__Events__Query::posts_orderby</code>, <code>Tribe__Events__Query::set_orderby</code>, <code>Tribe__Events__Query::set_order</code>, <code>Tribe__Events__Query::getHideFromUpcomingEvents</code>, <code>Tribe__Events__Query::getEventCounts</code>, <code>Tribe__Events__Query::last_found_events</code>, <code>Tribe__Events__Query::postmeta_table</code>, <code>Tribe__Events__Query::can_inject_date_field</code>, <code>Tribe__Events__Query::should_remove_date_filters</code>, <code>Tribe\\Events\\Views\\V2\\Widgets\\Service_Provider::unregister_list_widget</code>, <code>tribe_include_view_list</code>, <code>tribe_events_month_has_events_filtered</code>, <code>tribe_events_the_month_single_event_classes</code>, <code>tribe_events_the_month_day_classes</code>, <code>tribe_events_get_current_month_day</code>, <code>tribe_events_get_current_week</code>, <code>tribe_events_the_month_day</code>, <code>tribe_events_have_month_days</code>, <code>tribe_show_month</code>, <code>tribe_get_dropdown_link_prefix</code>, <code>tribe_events_get_filters</code>, <code>tribe_events_get_views</code>, <code>Tribe__Events__Template__Single_Event::setup_meta</code>, <code>Tribe__Events__Template_Factory::asset_package</code>, <code>Tribe__Events__Template_Factory::get_asset_factory_instance</code>, <code>Tribe__Events__Template_Factory::handle_asset_package_request</code>, <code>Tribe__Events__Template_Factory::setup_meta</code>, <code>tribe_initialize_view</code>, <code>Tribe__Events__Templates::init</code>, <code>Tribe__Events__Templates::instantiate_template_class</code>, <code>Tribe__Events__Templates::load_ecp_comments_page_template</code>, <code>Tribe__Events__Templates::load_ecp_into_page_template</code>, <code>Tribe__Events__Templates::maybe_modify_global_post_title</code>, <code>Tribe__Events__Templates::maybeSpoofQuery</code>, <code>Tribe__Events__Templates::modify_global_post_title</code>, <code>Tribe__Events__Templates::restore_global_post_title</code>, <code>Tribe__Events__Templates::setup_ecp_template</code>, <code>Tribe__Events__Templates::showInLoops</code>, <code>Tribe__Events__Templates::spoof_the_post</code>, <code>Tribe__Events__Templates::templateChooser</code>, <code>Tribe__Events__Templates::theme_body_class</code>, <code>Tribe__Events__Templates::add_singular_body_class</code>, <code>Tribe__Events__Templates::get_current_page_template</code>, <code>Tribe__Events__Templates::needs_compatibility_fix</code>, <code>Tribe__Events__Templates::remove_singular_body_class</code>, <code>Tribe__Events__Templates::restoreQuery</code>, <code>Tribe__Events__Templates::spoof_the_post</code>, <code>Tribe__Events__Templates::template_body_class</code>, <code>Tribe__Events__Templates::wpHeadFinished</code>, <code>event_grid_view</code>, <code>get_event_google_map_link</code>, <code>event_google_map_link</code>, <code>tec_get_event_address</code>, <code>tec_event_address</code>, <code>tec_address_exists</code>, <code>get_event_google_map_embed</code>, <code>event_google_map_embed</code>, <code>get_jump_to_date_calendar</code>, <code>the_event_start_date</code>, <code>the_event_end_date</code>, <code>the_event_cost</code>, <code>the_event_venue</code>, <code>the_event_country</code>, <code>the_event_address</code>, <code>the_event_city</code>, <code>the_event_state</code>, <code>the_event_province</code>, <code>the_event_zip</code>, <code>the_event_phone</code>, <code>the_event_region</code>, <code>the_event_all_day</code>, <code>is_new_event_day</code>, <code>get_events</code>, <code>tribe_event_link</code>, <code>events_displaying_past</code>, <code>events_displaying_upcoming</code>, <code>events_displaying_month</code>, <code>events_get_past_link</code>, <code>events_get_upcoming_link</code>, <code>events_get_next_month_link</code>, <code>events_get_previous_month_link</code>, <code>events_get_events_link</code>, <code>events_get_gridview_link</code>, <code>events_get_listview_link</code>, <code>events_get_listview_past_link</code>, <code>events_get_previous_month_text</code>, <code>events_get_current_month_text</code>, <code>events_get_next_month_text</code>, <code>events_get_displayed_month</code>, <code>events_get_this_month_link</code>, <code>sp_get_option</code>, <code>sp_calendar_grid</code>, <code>sp_calendar_mini_grid</code>, <code>sp_sort_by_month</code>, <code>sp_is_event</code>, <code>sp_get_map_link</code>, <code>sp_the_map_link</code>, <code>sp_get_full_address</code>, <code>sp_the_full_address</code>, <code>sp_address_exists</code>, <code>sp_get_embedded_map</code>, <code>sp_the_embedded_map</code>, <code>sp_month_year_dropdowns</code>, <code>sp_get_start_date</code>, <code>sp_get_end_date</code>, <code>sp_get_cost</code>, <code>sp_has_organizer</code>, <code>sp_get_organizer</code>, <code>sp_get_organizer_email</code>, <code>sp_get_organizer_website</code>, <code>sp_get_organizer_link</code>, <code>sp_get_organizer_phone</code>, <code>sp_has_venue</code>, <code>sp_get_venue</code>, <code>sp_get_country</code>, <code>sp_get_address</code>, <code>sp_get_city</code>, <code>sp_get_stateprovince</code>, <code>sp_get_state</code>, <code>sp_get_province</code>, <code>sp_get_zip</code>, <code>sp_get_phone</code>, <code>sp_previous_event_link</code>, <code>sp_next_event_link</code>, <code>sp_post_id_helper</code>, <code>sp_is_new_event_day</code>, <code>sp_get_events</code>, <code>sp_is_past</code>, <code>sp_is_upcoming</code>, <code>sp_is_month</code>, <code>sp_get_past_link</code>, <code>sp_get_upcoming_link</code>, <code>sp_get_next_month_link</code>, <code>sp_get_previous_month_link</code>, <code>sp_get_month_view_date</code>, <code>sp_get_single_ical_link</code>, <code>sp_get_events_link</code>, <code>sp_get_gridview_link</code>, <code>sp_get_listview_link</code>, <code>sp_get_listview_past_link</code>, <code>sp_get_dropdown_link_prefix</code>, <code>sp_get_ical_link</code>, <code>sp_get_previous_month_text</code>, <code>sp_get_current_month_text</code>, <code>sp_get_next_month_text</code>, <code>sp_get_displayed_month</code>, <code>sp_get_this_month_link</code>, <code>sp_get_region</code>, <code>sp_get_all_day</code>, <code>sp_is_multiday</code>, <code>sp_events_title</code>, <code>sp_meta_event_cats</code>, <code>sp_meta_event_category_name</code>, <code>sp_get_add_to_gcal_link</code>, <code>eventsGetOptionValue</code>, <code>events_by_month</code>, <code>is_event</code>, <code>getEventMeta</code>, <code>tribe_events_event_recurring_info_tooltip</code>, <code>tribe_the_map_link</code>, <code>tribe_the_embedded_map</code>, <code>tribe_the_full_address</code>, <code>tribe_get_organizer_website</code>, <code>tribe_get_venue_permalink</code>, <code>tribe_previous_event_link</code>, <code>tribe_next_event_link</code>, <code>display_day_title</code>, <code>display_day</code>, <code>tribe_meta_event_cats</code>, <code>tribe_get_all_day</code>, <code>tribe_is_multiday</code>, <code>tribe_calendar_grid</code>, <code>tribe_calendar_mini_grid</code>, <code>tribe_sort_by_month</code>, <code>tribe_month_year_dropdowns</code>, <code>tribe_get_this_month_link</code>, <code>tribe_get_displayed_month</code>, <code>tribe_get_display_day_title</code>, <code>tribe_the_display_day</code>, <code>tribe_get_display_day</code>, <code>tribe_get_object_property_from_array</code>, <code>tribe_mini_display_day</code>, <code>tribe_event_format_date</code>, <code>tribe_event_beginning_of_day</code>, <code>tribe_event_end_of_day</code>, <code>tribe_events_the_notices</code>, <code>tribe_get_the_day_link_date</code>, <code>tribe_get_the_day_link_label</code>, <code>tribe_the_day_link</code>, <code>tribe_get_linked_day</code>, <code>tribe_events_disabled_views</code>, <code>tribe_events_enabled_views</code>, <code>tribe_events_template_data</code>, <code>tribe_get_ticket_form</code>, <code>tribe_map_cost_array_callback</code>, <code>tribe_events_get_days_of_week</code>, <code>tribe_is_community_my_events_page</code>, <code>tribe_display_current_events_slug</code>, <code>tribe_display_current_single_event_slug</code>, <code>tribe_display_current_ical_link</code>, <code>tribe_is_new_event_day</code></li>\n<li>Tweak &#8211; Added filters: <code>tec_events_custom_tables_v1_upgrade_before</code>, <code>tec_events_custom_tables_v1_upgrade_after</code>, <code>tec_events_custom_tables_v1_should_render_maintenance_modal</code>, <code>tec_events_custom_tables_v1_migration_ajax_ui_renderer</code>, <code>tec_events_custom_tables_v1_migration_strategy</code>, <code>tec_events_custom_tables_v1_delete_meta_keys</code>, <code>tec_events_custom_tables_v1_migration_strategy_text_override_$action</code>, <code>tec_events_custom_tables_v1_migration_event_report_categories</code>, <code>tec_events_custom_tables_v1_migration_get_plugin_state_migration_addendum</code>, <code>tec_events_custom_tables_v1_event_data_from_post</code>, <code>tec_custom_tables_{$this-&gt;table}_model_v1_extensions</code>, <code>tec_events_custom_tables_v1_normalize_occurrence_id</code>, <code>tec_events_custom_tables_v1_occurrences_generator</code>, <code>tec_custom_tables_v1_get_occurrence_match</code>, <code>tec_events_custom_tables_v1_enabled</code>, <code>tec_events_custom_tables_v1_table_schemas</code>, <code>tec_events_custom_tables_v1_field_schemas</code>, <code>tec_events_custom_tables_v1_tables_to_drop</code>, <code>tec_events_custom_tables_v1_fields_to_drop</code>, <code>tec_events_custom_tables_v1_db_transactions_supported</code>, <code>tec_events_custom_tables_v1_should_update_custom_tables</code>, <code>tec_events_custom_tables_v1_commit_post_updates</code>, <code>tec_events_custom_tables_v1_updated_post</code>, <code>tec_events_custom_tables_v1_deleted_post</code>, <code>tec_events_custom_tables_v1_redirect_post_location</code>, <code>tribe_events_known_range_stati</code>, <code>tec_events_custom_tables_v1_request_factory_post_id_keys</code>, <code>tec_events_custom_tables_v1_custom_tables_query_vars</code>, <code>tec_events_custom_tables_v1_occurrence_select_fields</code>, <code>tec_events_custom_tables_v1_custom_tables_query_where</code>, <code>tec_events_custom_tables_v1_meta_key_redirection_map</code>, <code>tec_events_custom_tables_v1_show_series_title</code>, <code>tec_events_custom_tables_v1_series_marker_label_classes</code>, <code>tribe_events_assets_should_enqueue_admin_update_page_assets</code>, <code>tec_events_custom_tables_v1_blocks_editor_event_meta</code>, <code>tribe_events_linked_posts_should_render_meta_box</code>, <code>tec_events_upgrade_tab_has_content</code>, <code>tec_events_prime_cache_post_ids</code>, <code>tec_events_get_current_view</code>, <code>tribe_get_venue_website_link_target</code>, <code>tribe_get_venue_website_link_label</code>, <code>tribe_events_settings_default_fields_initializer</code></li>\n<li>Tweak &#8211; Removed filters: <code>aggregator_should_load_scripts</code>, <code>tribe-events-bar-should-show</code>, <code>widget_title</code>, <code>tribe_events_</code>, <code>tribe_events_widget_jsonld_enabled</code>, <code>tec_events_default_view</code>, <code>tribe_events_get_{$mode}_event_link</code>, <code>tribe_events_get_closest_event</code>, <code>tribe_events_get_event_link</code>, <code>tribe-events-bar-date-search-default-value</code>, <code>tribe_events_bar_date_search_default_value</code>, <code>tribe_bar_datepicker_caption</code>, <code>tribe_tec_addons</code>, <code>tribe_add_on_compatibility_errors</code>, <code>tribe_display_event_venue_dropdown_id</code>, <code>tribe_display_event_organizer_dropdown_id</code>, <code>tribe_events_category_rewrite_slug</code>, <code>tribe_events_tag_rewrite_slug</code>, <code>the_content</code>, <code>tribe_events_suppress_query_filters</code>, <code>tribe_query_can_inject_date_field</code>, <code>tec_events_query_default_view</code>, <code>tribe_events_query_include_start_date_meta</code>, <code>tribe_events_query_include_children</code>, <code>tribe_events_query_posts_fields</code>, <code>tribe_events_query_force_local_tz</code>, <code>tribe_events_query_posts_joins</code>, <code>tribe_events_query_end_date_column</code>, <code>tribe_events_query_posts_orderby</code>, <code>tribe_events_query_posts_join_orderby</code>, <code>tribe_events_query_posts_join_venue_organizer</code>, <code>tribe_events_hide_from_upcoming_ids</code>, <code>tribe_events_month_day_limit</code>, <code>tribe_enable_recurring_event_queries</code>, <code>tribe_events_day_view_title</code>, <code>tribe_events_day_timeslot_format</code>, <code>tribe_events_ajax_response</code>, <code>tribe_upcoming_events_title</code>, <code>tribe_past_events_title</code>, <code>tribe_events_listview_ajax_get_event_args</code>, <code>tribe_events_listview_ajax_event_display</code>, <code>tribe_events_month_view_transient_expiration</code>, <code>tribe_month_grid_view_title</code>, <code>tribe_events_this_month_title</code>, <code>tribe_events_month_get_events_in_month</code>, <code>tribe_events_month_daily_events</code>, <code>tribe_events_month_daily_events_query_args</code>, <code>tribe_themes_compatibility_fixes</code>, <code>tribe_set_global_post_title</code>, <code>tribe_events_current_template_class</code>, <code>tribe_event_meta_event_date</code>, <code>tribe_event_meta_event_category</code>, <code>tribe_event_meta_event_tag</code>, <code>tribe_event_meta_event_website</code>, <code>tribe_events_display_event_origin</code>, <code>tribe_event_meta_event_origin</code>, <code>tribe_event_meta_organizer_name</code>, <code>tribe_event_meta_organizer_email</code>, <code>tribe_event_meta_venue_name</code>, <code>tribe_event_meta_venue_address_gmap</code>, <code>tribe_event_meta_venue_address</code>, <code>tribe_event_meta_venue_map</code>, <code>tribe_events_kill_responsive</code>, <code>tribe_events_stylesheet_url</code>, <code>tribe_importer_url</code>, <code>tribe_events_hide_legacy_imports</code>, <code>tribe_events_import_type_titles_map</code>, <code>tribe_events_import_options_rows</code>, <code>tribe_events_import_options_default_selected</code>, <code>tribe-import-tabs</code>, <code>tribe_import_tabs</code>, <code>tribe_events_csv_batch_size</code>, <code>tribe-import-available-options</code>, <code>tribe_import_available_options</code>, <code>tribe-import-setting-</code>, <code>tribe_import_setting_</code>, <code>tribe_import_default_post_status_non_saved</code>, <code>tribe_import_default_post_status</code>, <code>tribe_import_possible_stati</code>, <code>tribe_import_default_encode_status_non_saved</code>, <code>tribe_import_default_encode_status</code>, <code>tribe_import_encoding_status</code>, <code>tribe_meta_factory_check_exists</code>, <code>tribe_meta_factory_get_args</code>, <code>tribe_meta_factory_template</code>, <code>tribe_get_linked_day</code>, <code>tribe_the_day_link</code>, <code>tribe_event_link</code>, <code>tribe_get_organizer_website</code>, <code>tribe_previous_event_link</code>, <code>tribe_next_event_link</code>, <code>tribe_meta_event_cats</code>, <code>tribe_get_all_day</code>, <code>tribe_is_multiday</code>, <code>tribe_get_ticket_form</code>, <code>tribe-events-bar-filters</code>, <code>tribe_is_new_event_day</code>, <code>tribe_events_get_current_month_day</code>, <code>tribe_events_the_month_day_class</code>, <code>tribe_events_the_month_single_event_classes</code>, <code>tribe_events_month_has_events_filtered</code>, <code>tribe_get_dropdown_link_prefix</code>, <code>tribe_get_list_widget_events</code>, <code>tribe_events_views_v2_is_enabled</code>, <code>tribe_events_views_v2_should_smart_activate</code>, <code>tribe_events_views_v2_use_period_repository</code>, <code>tribe_events_widgets_v2_is_enabled</code>, <code>tribe_events_single_view_v2_is_enabled</code>, <code>tec_events_views_v1_should_display_deprecated_notice</code>, <code>tribe_events_day_view_event_type</code>, <code>tribe_default_events_template_classes</code>, <code>tribe_events_list_view_event_type</code>, <code>tribe_events_list_widget_thumbnail_size</code>, <code>tribe_events_list_widget_featured_image_link</code></li>\n<li>Tweak &#8211; Added actions: <code>tec_events_custom_tables_v1_error</code>, <code>tribe_log</code>, <code>tec_events_custom_tables_v1_migration_maintenance_mode</code>, <code>tec_events_custom_tables_v1_before_migration_applied</code>, <code>tec_events_custom_tables_v1_migration_before_cancel</code>, <code>tec_events_custom_tables_v1_migration_after_cancel</code>, <code>tec_events_custom_tables_v1_migration_completed</code>, <code>tec_events_custom_tables_v1_after_insert_occurrences</code>, <code>tec_events_custom_tables_v1_after_save_occurrences</code>, <code>tec_events_custom_tables_v1_after_update_occurrences</code>, <code>tec_events_custom_tables_v1_pre_drop_tables</code>, <code>tec_events_custom_tables_v1_post_drop_tables</code>, <code>tec_events_custom_tables_v1_pre_drop_fields</code>, <code>tec_events_custom_tables_v1_post_drop_fields</code>, <code>tec_events_custom_tables_v1_request_after_insert_event</code>, <code>tec_events_custom_tables_v1_request_after_update_event</code>, <code>tec_events_custom_tables_v1_update_post_before</code>, <code>tec_events_custom_tables_v1_update_post_after</code>, <code>tec_events_custom_tables_v1_delete_post</code>, <code>tec_events_custom_tables_v1_after_insert_event</code>, <code>tec_events_custom_tables_v1_after_update_event</code>, <code>tec_events_custom_tables_v1_redirect_classic_editor_event_post</code>, <code>tec_events_custom_tables_v1_redirect_rest_event_post</code>, <code>tec_events_custom_tables_v1_custom_tables_query_pre_get_posts</code>, <code>tec_events_custom_tables_v1_custom_tables_query_results</code>, <code>tec_events_custom_tables_v1_{$modifier_class}_done</code>, <code>tec_events_views_v2_after_get_events</code>, <code>tribe_events_single_meta_details_section_after_datetime</code></li>\n<li>Tweak &#8211; Removed actions: <code>tribe-events-bar-enqueue-scripts</code>, <code>tribe_events_widget_render</code>, <code>tribe_events_before_list_widget</code>, <code>tribe_events_list_widget_before_the_title</code>, <code>tribe_events_list_widget_after_the_title</code>, <code>tribe_events_after_list_widget</code>, <code>tribe_events_pre_get_posts</code>, <code>tribe_events_set_month_view_events_from_cache</code>, <code>tribe_events_calendar_loop_end</code>, <code>tribe_tec_template_chooser</code>, <code>tribe_events_filter_the_page_title</code>, <code>tribe-import-render-tab-</code>, <code>tribe_import_render_tab_</code>, <code>tribe_events_csv_import_complete</code>, <code>tribe_import_options_updated</code>, <code>tribe_meta_factory_register</code>, <code>tribe_pre_initialize_view</code>, <code>tribe_events_before_event_template_data_date_display</code>, <code>tribe_events_after_event_template_data_date_display</code>, <code>tribe_events_before_show_month</code>, <code>tribe_events_after_show_month</code>, <code>tribe_events_before_template</code>, <code>tribe_events_after_template</code>, <code>tribe_events_before_header</code>, <code>tribe_events_before_header_nav</code>, <code>tribe_events_after_header_nav</code>, <code>tribe_events_after_header</code>, <code>tribe_events_before_loop</code>, <code>tribe_events_after_loop</code>, <code>tribe_events_before_footer</code>, <code>tribe_events_before_footer_nav</code>, <code>tribe_events_after_footer_nav</code>, <code>tribe_events_after_footer</code>, <code>tribe_events_inside_before_loop</code>, <code>tribe_events_inside_after_loop</code>, <code>tribe_events_before_the_event_title</code>, <code>tribe_events_after_the_event_title</code>, <code>tribe_events_before_the_meta</code>, <code>tribe_events_inside_cost</code>, <code>tribe_events_after_the_meta</code>, <code>tribe_events_before_the_content</code>, <code>tribe_events_after_the_content</code>, <code>tribe_events_before_the_title</code>, <code>tribe_events_after_the_title</code>, <code>tribe_default_events_template_after_header</code>, <code>tribe_default_events_template_before_footer</code>, <code>tribe_events_list_before_the_content</code>, <code>tribe_events_bar_before_template</code>, <code>tribe_events_bar_after_template</code>, <code>tribe_events_before_the_grid</code>, <code>tribe_events_after_the_grid</code>, <code>tribe_events_before_nav</code>, <code>tribe_events_after_nav</code>, <code>tribe_events_list_widget_before_the_event_image</code>, <code>tribe_events_list_widget_after_the_event_image</code>, <code>tribe_events_list_widget_before_the_event_title</code>, <code>tribe_events_list_widget_after_the_event_title</code>, <code>tribe_events_list_widget_before_the_meta</code>, <code>tribe_events_list_widget_after_the_meta</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-links</code>, <code>blocks/event-website</code>, <code>blocks/parts/details</code>, <code>day</code>, <code>day/content</code>, <code>day/loop</code>, <code>day/nav</code>, <code>day/single-event</code>, <code>day/single-featured</code>, <code>day/title-bar</code>, <code>default-template</code>, <code>list</code>, <code>list/content</code>, <code>list/loop</code>, <code>list/nav</code>, <code>list/single-event</code>, <code>list/single-featured</code>, <code>list/title-bar</code>, <code>modules/address</code>, <code>modules/bar</code>, <code>modules/meta/details</code>, <code>month</code>, <code>month/content</code>, <code>month/loop-grid</code>, <code>month/mobile</code>, <code>month/nav</code>, <code>month/single-day</code>, <code>month/single-event</code>, <code>month/title-bar</code>, <code>month/tooltip</code>, <code>v2/month/calendar-body/day</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/title</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/title</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/title</code>, <code>widgets/calendar-widget</code>, <code>widgets/list-widget</code></li>\n</ul>\n<h4>[5.16.4] 2022-08-09</h4>\n<ul>\n<li>Fix &#8211; Ensure date formats are escaped properly when they contain slashes. [ECP-1136]</li>\n<li>Tweak &#8211; Update the calendar print design. [TEC-4425]</li>\n<li>Tweak &#8211; Add support for <code>ticketed</code> parameter for Event archive REST API calls. [TEC-4439]</li>\n<li>Tweak &#8211; Add new methods <code>filter_url_date_conflicts</code> and <code>filter_date_escaping</code> to filter and properly escape the date formats for some views. [ECP-1136]</li>\n<li>Language &#8211; 0 new strings added, 403 updated, 0 fuzzied, and 124 obsoleted.</li>\n</ul>\n<h4>[5.16.3.1] 2022-07-21</h4>\n<ul>\n<li>Fix &#8211; Update Freemius to avoid PHP 8 fatals. [TEC-4330]</li>\n</ul>\n<h4>[5.16.3] 2022-07-20</h4>\n<ul>\n<li>Fix &#8211; Add a theme based CSS class to the HTML body tag when the <code>Default Page Template</code> setting is enabled under Events &gt; Settings &gt; Display. [TEC-4391]</li>\n<li>Fix &#8211; Avoid some conflicts between the import notice and third-party plugins using jQuery datepicker in the admin. [TEC-4429]</li>\n<li>Tweak &#8211; Add edit links to single venue and organizer pages to improve user experience. [ECP-1181]</li>\n<li>Tweak &#8211; Add a CSS class i.e. <code>tribe-events-calendar-month__day--other-month</code> to past and future month dates in the month view to allow easy targeting similar to what we had in v1. [TEC-4034]</li>\n<li>Tweak &#8211; Changed views: <code>v2/month/calendar-body/day</code></li>\n</ul>\n<h4>[5.16.2.1] 2022-07-08</h4>\n<ul>\n<li>Fix &#8211; Don&#8217;t load Aggregator scripts on post edit pages to prevent datepicker conflicts [TEC-4427]</li>\n<li>Tweak &#8211; Added filter: <code>aggregator_should_load_scripts</code></li>\n</ul>\n<h4>[5.16.2] 2022-07-06</h4>\n<ul>\n<li>Fix &#8211; Ensure the <code>Next</code> arrow in <code>List</code> and <code>Summary</code> views navigates to the correct page when the <code>Main Events Page</code> is set as the homepage. [TEC-4247]</li>\n<li>Fix &#8211; Ensure the <code>Next</code> button when using the <code>Event View</code> Elementor widget navigates to the next page on the first click. [FBAR-263]</li>\n<li>Fix &#8211; Add a height to the subscribe to calendar export SVG icon on the single events page when using the <code>Skeleton Styles</code> to prevent it from taking over a huge portion of the page. [TEC-4399]</li>\n<li>Fix &#8211; Remove link to Updates page from TEC Settings page. [TEC-4373]</li>\n<li>Fix &#8211; Ensure Aggregator CSV imports continue to run when on an admin page. [TEC-4070]</li>\n<li>Fix &#8211; Correct hardcoded admin urls used for Event Settings page(s). [ECP-1175]</li>\n<li>Fix &#8211; Ensure event widgets don&#8217;t carry the global search param into their queries. [TEC-4048]</li>\n<li>Fix &#8211; Allow sub-site admins to use the updated calendar designs when their plugin access is restricted. [TEC-4382]</li>\n<li>Fix &#8211; Remove deprecated usage of <code>jQuery.attr( \'checked\' )</code></li>\n<li>Tweak &#8211; Add a unique CSS class i.e. <code>tribe-events-calendar-month__day--past-month</code> to past month dates in the month view to allow easy targeting. [TEC-3447]</li>\n<li>Tweak &#8211; Add a unique CSS class i.e. <code>tribe-events-calendar-month__day--next-month</code> to future month dates in the month view to allow easy targeting. [TEC-3819]</li>\n<li>Tweak &#8211; Changed views: <code>v2/month/calendar-body/day</code></li>\n<li>Language &#8211; 1 new strings added, 113 updated, 0 fuzzied, and 3 obsoleted</li>\n</ul>\n<h4>[5.16.1.1] 2022-06-15</h4>\n<ul>\n<li>Fix &#8211; correct issues with template paths when using FSE. [TEC-4401]</li>\n</ul>\n<h4>[5.16.1] 2022-06-09</h4>\n<ul>\n<li>Fix &#8211; Add rel=&#8221;noindex&#8221; to links that point to empty Month and Day Views so as to not dilute SEO with empty results. [TEC-4354]</li>\n<li>Fix &#8211; Clean up some borked CSS in some sections of the Elementor <code>Event</code> widget. [ECP-1105]</li>\n<li>Fix &#8211; Fix admin links to work with the new admin page structure. [TEC-4380]</li>\n<li>Tweak &#8211; Removed filters: <code>tribe_settings_admin_slug</code>, <code>tribe_settings_url</code>, <code>tribe_events_enable_month_view_cache</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-links</code>, <code>blocks/parts/subscribe-list</code>, <code>blocks/parts/subscribe-single</code>,<br />\n                         v2/components/subscribe-links/item, <code>v2/components/subscribe-links/single</code>, <code>v2/day/nav/next</code>,<br />\n                         v2/day/nav/prev, <code>v2/day/top-bar/nav/next</code>, <code>v2/day/top-bar/nav/prev</code>, <code>v2/month/mobile-events/nav/next</code>,<br />\n                         v2/month/mobile-events/nav/prev, <code>v2/month/top-bar/nav/next</code>, <code>v2/month/top-bar/nav/prev</code></li>\n</ul>\n<h4>[5.16.0] 2022-05-31</h4>\n<ul>\n<li>Feature &#8211; Add subscribe links for Outlook 365 and Outlook Live to the event views. [TEC-4168]</li>\n<li>Feature &#8211; Add export links for Outlook 365 and Outlook Live to single events. [TEC-4168]</li>\n<li>Feature &#8211; Update single event export to use a dropdown template to support more links. [TEC-4176]</li>\n<li>Feature &#8211; Add Outlook ics as an option for Subscribe to Calendar that removes the X-WR-CALNAME from the file. Props to Andy Fragen @afragen [TEC-4188]</li>\n<li>Fix &#8211; Prevent Redis Cache Pro fatals around date utilization and calculations on Views [TEC-4351]</li>\n<li>Fix &#8211; Ensure all expected subscribe links show when using the default page template. [TEC-4313]</li>\n<li>Fix &#8211; Put back the event website label for Classic editor. [TEC-4334]</li>\n<li>Fix &#8211; Ensure that subscription links include events up to the limit, no matter the view settings. [TEC-4264]</li>\n<li>Fix &#8211; On Event tag archives only show events with the tag, change the single event tag links to use the event tag archive, and add a link to event tag archive in the admin tag list. [TEC-4314]</li>\n<li>Fix &#8211; Default event category in Global Import Settings to apply on new imports in Event Aggregator. [EA-426]</li>\n<li>Fix &#8211; Add rel noindex and nofollow to the legacy iCal export button. [TEC-4354]</li>\n<li>Language &#8211; 6 new strings added, 53 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.15.0.1] 2022-05-23</h4>\n<ul>\n<li>Fix &#8211; Prevent fatal when using Yoast due to missing function <code>tribe_is_month()</code> [BTRIA-1243]</li>\n<li>Fix &#8211; Check if function exists for <code>get_current_screen</code> to avoid a fatal if not.</li>\n</ul>\n<h4>[5.15.0] 2022-05-19</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.15.0 is only compatible with Event Tickets 5.4.0 and higher</li>\n<li>Version &#8211; The Events Calendar 5.15.0 is only compatible with Events Calendar PRO 5.14.0 and higher</li>\n<li>Version &#8211; The Events Calendar 5.15.0 is only compatible with Events Filterbar    5.3.0 and higher</li>\n<li>Version &#8211; The Events Calendar 5.15.0 is only compatible with Events Virtual 1.10.0 and higher</li>\n<li>Version &#8211; The Events Calendar 5.15.0 is only compatible with Events Community 4.9.0 and higher</li>\n<li>Version &#8211; The Events Calendar 5.15.0 is only compatible with Eventbrite Tickets 4.6.11 and higher</li>\n<li>Feature &#8211; Update Events menu to work with the new admin pages structure. [ET-1335]</li>\n<li>Language &#8211; 1 new strings added, 395 updated, 2 fuzzied, and 3 obsoleted</li>\n</ul>\n<h4>[5.14.2.1] 2022-04-28</h4>\n<ul>\n<li>Fix &#8211; Correct an issue with linked common release.</li>\n</ul>\n<h4>[5.14.2] 2022-04-28</h4>\n<ul>\n<li>Feature &#8211; Add support to CSV import for the ISO Currency Code field. [TEC-4341]</li>\n<li>Feature &#8211; First iteration of changes for Full Site Editor compatibility. [TEC-4262]</li>\n<li>Tweak &#8211; Added filters <code>tribe_merge_identical_organizers_enabled</code>, <code>tribe_merge_identical_venues_enabled</code>, <code>tribe_merge_identical_organizers_fields</code>, <code>tribe_merge_identical_venues_fields</code>, <code>tribe_amalgamate_venues_keep_venue</code>, <code>tribe_amalgamate_organizers_keep_organizer</code> for better control of the merge duplicate venues and organizers functionality. [TEC-4225]</li>\n<li>Tweak &#8211; Added filter <code>tribe_events_views_v2_ff_link_next_event</code> to allow better control of the fast-forward link target. [ECP-957]</li>\n<li>Tweak &#8211; Allow filtering of the &#8220;next event&#8221; query in the fast-forward link. [ECP-957]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_merge_identical_organizers_enabled</code>, <code>tribe_merge_identical_venues_enabled</code>, <code>tribe_merge_identical_organizers_fields</code>, <code>tribe_merge_identical_venues_fields</code>, <code>tribe_amalgamate_venues_keep_venue</code>, <code>tribe_amalgamate_organizers_keep_organizer</code>, <code>tribe_events_views_v2_ff_link_next_event</code>.</li>\n<li>Tweak &#8211; Changed views: <code>blocks/archive-events</code>.</li>\n<li>Fix &#8211; Correctly calculate Event duration when the Event crosses the daylight saving date and time. [TEC-4336]</li>\n<li>Fix &#8211; Don&#8217;t try to validate &#8220;raw&#8221; as a date. [TEC-4254]</li>\n<li>Fix &#8211; Ensure the Views don&#8217;t try to do math with strings. [TEC-4322]</li>\n<li>Fix &#8211; Enable more than 5 csv entries to be imported when using 8.0.15 to 8.0.17 or 8.1.2 to 8.1.4. [TEC-4312]</li>\n<li>Fix &#8211; Ensure Google Calendar links include the event description if it exists. [TEC-4315]</li>\n<li>Language &#8211; 3 new strings added, 232 updated, 0 fuzzied, and 0 obsoleted.</li>\n</ul>\n<h4>[5.14.1] 2022-03-17</h4>\n<ul>\n<li>Tweak &#8211; Update the backend block editor UI for a single event to look similar to its frontend version in order to create a true WYSIWYG experience when using the block editor. [TEC-4250]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_views_v2_month_ics_start_today</code></li>\n<li>Fix &#8211; Correct a regex typo that was breaking proper JSON-LD data around event cost. [TEC-4263]</li>\n<li>Fix &#8211; Correct Month View ics export so it begins on the current day rather than the 1st. [TEC-4223]</li>\n<li>Fix &#8211; Add ISO Currency Code field to admin to set code sent via JSON-LD. TEC was incorrectly sending symbol. [TEC-4212]</li>\n<li>Fix &#8211; Ensure that the full styles custom properties require the skeleton style custom properties. [TEC-4308]</li>\n<li>Fix &#8211; Ensure that the State/Province field saves for non-US venues. [TEC-4309]</li>\n<li>Fix &#8211; Correct duplicated text in wpadminbar Events Menu. [TEC-4310]</li>\n<li>Fix &#8211; Load the assets required by the <code>Event View</code> Elementor widget in preview mode. [ECP-1065]</li>\n<li>Language &#8211; 4 new strings added, 144 updated, 0 fuzzied, and 0 obsoleted.</li>\n</ul>\n<h4>[5.14.0.4] 2022-03-01</h4>\n<ul>\n<li>Tweak &#8211; Update version of Freemius to 2.4.3.</li>\n</ul>\n<h4>[5.14.0.3] 2022-02-25</h4>\n<ul>\n<li>Fix &#8211; Ensure the Venue and Organizer metaboxes load when creating a new post of that type. [TEC-4303]</li>\n</ul>\n<h4>[5.14.0.2] 2022-02-22</h4>\n<ul>\n<li>Fix &#8211; Correct conditional in Filter Bar upsell banner. [TEC-4284]</li>\n<li>Fix &#8211; Un-deprecate <code>tribe_initialize_view()</code> as it is used in some new views.</li>\n</ul>\n<h4>[5.14.0.1] 2022-02-15</h4>\n<ul>\n<li>Fix &#8211; Prevent parse error due to trailing comma on a method call, PHP 7.1 compatibility required. Props @kzeni</li>\n</ul>\n<h4>[5.14.0] 2022-02-15</h4>\n<ul>\n<li>Feature &#8211; Add a Filter Bar upsell banner to the Filters tab that displays when the Filter Bar plugin isn&#8217;t active. [TEC-4238]</li>\n<li>Tweak &#8211; Correct documentation around the subscribe link filters. Add link slug as array keys for <code>tec_views_v2_single_subscribe_links</code> filter. [TEC-4215]</li>\n<li>Tweak &#8211; Move and deprecate some methods specific to the Google Calendar link from Main to the new Google_Calendar class. [TEC-4235]</li>\n<li>Tweak &#8211; Prevent scripts from loading on all Admin pages, only load on pages needed.</li>\n<li>Tweak &#8211; Performance improvements around Block Asset loading and redundancy.</li>\n<li>Tweak &#8211; Internal caching of values to reduce <code>get_option()</code> call count.</li>\n<li>Tweak &#8211; Switch from <code>sanitize_title_with_dashes</code> to <code>sanitize_key</code> in a couple instances for performance gains.</li>\n<li>Tweak &#8211; Remove the <code>wp.editor.InnerBlocks</code> gutenberg component in favor of <code>wp.blockEditor.InnerBlocks</code> which was deprecated since version 5.3. [TEC-4178]</li>\n<li>Tweak &#8211; Prevent asset loading from repeating calls to plugin URL and path, resulting in some minor performance gains.</li>\n<li>Fix &#8211; Update the way we handle Classic Editor compatibility. Specifically around user choice. [TEC-4016]</li>\n<li>Fix &#8211; Remove incorrect reference for moment.min.js.map [TEC-4148]</li>\n<li>Fix &#8211; Fixed troubleshooting page styles for standalone Event Tickets setup [ET-1382]</li>\n<li>Fix &#8211; Remove singleton created from a deprecated class.</li>\n<li>Fix &#8211; Ensure that the tec_views_v2_use_subscribe_links filter applies to the single event view. [TEC-4219]</li>\n<li>Fix &#8211; Hide the &#8220;Export to .ics file&#8221; link by default, allow showing it via a filter. Also ensure the link is correct. [TEC-4214]</li>\n<li>Fix &#8211; Serve a single event import url for Google Calendar on the single event view. [TEC-4235]</li>\n<li>Fix &#8211; Improve theme CSS compatibility on View container by making sure our views take 100% of the width available (props @askwpgirl) [TEC-4257]</li>\n<li>Language &#8211; 9 new strings added, 277 updated, 1 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.13.0] 2022-01-31</h4>\n<ul>\n<li>Deprecation &#8211; All files from Legacy Views will throw deprecated notices, refer to <code>https://evnt.is/v1-removal</code> for extra information.</li>\n<li>Deprecation &#8211; Template functions <code>tribe_initialize_view</code>, <code>tribe_get_view</code> and <code>tribe_show_month</code> were deprecated, refer to <code>https://evnt.is/v1-removal</code> for extra information.</li>\n</ul>\n<h4>[5.12.4] 2022-01-19</h4>\n<ul>\n<li>Tweak &#8211; Minor CSS tweaks to align with the new shortcode based blocks in ECP. [ECP-1016]</li>\n<li>Tweak &#8211; Add hook to CSV importer to enable add-on plugins to support their fields during import. [VE-387]</li>\n<li>Tweak &#8211; Included new filter <code>tec_system_information</code> allowing better control over the Troubleshooting Help page.</li>\n<li>Tweak &#8211; Included a Views V2 Status on the Troubleshooting page system info section to help with clarity for support.</li>\n<li>Tweak &#8211; Add notice for Themes using Full Site Editor incompatibility with Widgets. [TEC-4233]</li>\n<li>Fix &#8211; Prevent Onboarding assets from loading on the admin when not needed.</li>\n<li>Fix &#8211; Remove CSS attributes targeting <code>aria-labels</code> to prevent inconsistent styling for different languages. [TEC-4227]</li>\n<li>Fix &#8211; Resolve sorting problems when using orderby with the Event repository when no other orderby values are specified. [TEC-4232]</li>\n<li>Fix &#8211; Prevent unwanted notice on single-event and embed views from legacy views deprecation</li>\n</ul>\n<h4>[5.12.3] 2022-01-10</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.12.3 is only compatible with Events Calendar PRO 5.11.2 and higher</li>\n<li>Fix &#8211; Ensure the modifications made through the <code>tribe_events_views_v2_category_title</code> are respected. [TEC-4110]</li>\n<li>Fix &#8211; Correct issue where mobile default view does not load correctly when homepage set to Events Main. [TEC-3826]</li>\n<li>Tweak &#8211; Boost SEO for category archive pages by fixing the title tag. [TEC-4110]</li>\n<li>Tweak &#8211; Add filter to allow users to choose if the taxonomy should show parent categories [TEC-4110]</li>\n<li>Tweak &#8211; Move handling of mobile view to ECP. Add filter to allow overriding default view. [TEC-3826]</li>\n<li>Language &#8211; 0 new strings added, 71 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.12.2] 2021-12-20</h4>\n<ul>\n<li>Fix &#8211; Remove trailing comma that can cause fatals on older versions of PHP. [FBAR-252]</li>\n<li>Fix &#8211; Prevent infinite loops in the block editor when including the links block. [TEC-4190]</li>\n<li>Fix &#8211; Initial steps to make The Events Calendar compatible with PHP 8.1</li>\n</ul>\n<h4>[5.12.1] 2021-12-14</h4>\n<ul>\n<li>Feature &#8211; Add TEC widget based blocks to the <code>Event Blocks</code> custom block category. [TEC-4151]</li>\n<li>Feature &#8211; Add Event Status filter options when Filter Bar is active. [FBAR-92]</li>\n<li>Fix &#8211; Add a valid rel value to the link tag for TEC REST API support in order to improve HTML 5 and WCAG 2.1 compliance. (props to @gabyrau for the fix!) [TEC-4129]</li>\n<li>Fix &#8211; Ensure the date selected when creating a new event from the Event Manager is applied to the block editor. [ECP-954]</li>\n<li>Fix &#8211; Properly observe the disabling of JSON-LD output on widget blocks in the block editor. [TEC-4077]</li>\n<li>Fix &#8211; Prevent PHP warning in some cases when fetching the date from <code>tribe_get_display_end_date()</code>. (props to @huubl for the fix!) [TEC-4161]</li>\n<li>Fix &#8211; Close a div in the new subscribe dropdown that was left open. Props to @whoisuncle for bringing this to our attention! [TEC-4166]</li>\n<li>Tweak &#8211; Ensure the <code>Disable the Event Search Bar</code> setting doesn&#8217;t get applied on the Event Manager page. [ECP-948]</li>\n<li>Tweak &#8211; Ensure the <code>related events title</code> and <code>event titles</code> within the single event page for the block editor make use the customizer font settings. [TEC-4125]</li>\n<li>Tweak &#8211; Update the description text for the &#8220;Merge Duplicates&#8221; action. Add filters for data sets usd for comparison. [TEC-3018]</li>\n<li>Tweak &#8211; Adjust the Subscribe to Calendar dropdown styling to better accommodate themes with sidebars. [TEC-4166]</li>\n<li>Tweak &#8211; Add the Event List and Mini-Calendar widgets to the Event Blocks category. [TEC-4151]</li>\n<li>Tweak &#8211; Correct some incorrect template paths in docblocks. [TEC-4111]</li>\n<li>Language &#8211; 4 new strings added, 159 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.12.0] 2021-12-02</h4>\n<ul>\n<li>Feature &#8211; Add new subscribe options to the &#8220;Export Events&#8221; link at the bottom of calendar views and single Event view [TEC-4131]</li>\n<li>Fix &#8211; Bypass caching of the event when dealing with the admin event list table. [TEC-4156]</li>\n<li>Fix &#8211; Event List Widget will not print the H3 tag related to the title when that is empty. [TEC-4160]</li>\n<li>Tweak &#8211; Allow bypassing of the Aggregator logging function by using the <code>tec_aggregator_records_should_log_error</code> filter. [TEC-4159]</li>\n<li>Tweak &#8211; Removed the <code>tribe_events_force_filtered_ical_link</code> filter and the associated js function that recreates the subscribe link on v1 and Single Event views. [TEC-4131]</li>\n<li>Language &#8211; 4 new strings added, 52 updated, 0 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[5.11.0] 2021-11-17</h4>\n<ul>\n<li>Feature &#8211; Add an <code>Events List</code> block that is based on the <code>Events List</code> widget to the block editor which users can drag around to any position they want it to appear. [ECP-989]</li>\n<li>Feature &#8211; Add event status options of scheduled, canceled, and postponed with the ability to add and display a reason for the latter two. [TEC-3465]</li>\n<li>Feature &#8211; Add live preview to the TEC customizer screens. [TEC-4055]</li>\n<li>Fix &#8211; When accessing comments there could be situations where an undefined array key was accessed, and in PHP 8 it is a promoted Warning error for undefined array access. [TEC-4093]</li>\n<li>Fix &#8211; Resolved <code>Warning: reset(): Argument #1 ($array) must be passed by reference...</code> error that was displayed on the Events, Organizers and Venue REST endpoints in PHP v8. [TEC-4097]</li>\n<li>Fix &#8211; Ensure that the proper spacing is applied for the venue address in list view. [TEC-4089]</li>\n<li>Tweak &#8211; Change some of the block tests to adapt to the new Editor compatibility in common. [TEC-4016]</li>\n<li>Tweak &#8211; Update the google calendar export button to open in a new tab on the event single page for both the classic and block editors. [TEC-4084]</li>\n<li>Tweak &#8211; Add supplied organizer url to JSON-LD for the event-&gt;organizer. Props @cmenon12 for the notification and code! [TEC-4095]</li>\n<li>Tweak &#8211; Add a link to the Customizer in the admin menu and in Events-&gt;Settings-&gt;Display for folks running a FSE theme. [TEC-4126]</li>\n<li>Language &#8211; 10 new strings added, 55 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.10.1] 2021-11-04</h4>\n<ul>\n<li>Feature &#8211; Added Black Friday promo to the General Settings panel. [TCMN-127]</li>\n<li>Tweak &#8211; Update Black Friday banner. [TCMN-126]</li>\n</ul>\n<h4>[5.10.0] 2021-10-19</h4>\n<ul>\n<li>Tweak &#8211; Improve the look and feel of the single events page when using the block editor. These changes can be bypassed by defining the following constant to your wp-config.php file: <code>define( \'TRIBE_EVENTS_SINGLE_VIEW_V2_DISABLED\', true );</code> [TEC-3979]</li>\n<li>Language &#8211; 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.9.2] 2021-10-12</h4>\n<ul>\n<li>Fix &#8211; Ensure the day view on mobile displays the not found message when no events are present. [TEC-3944]</li>\n<li>Fix &#8211; Ensure a map preview is displayed on the venue block in the admin area when using TEC&#8217;s default Google API Key. [TEC-3042]</li>\n<li>Fix &#8211; Add some missing text domains for string translation. [TEC-3908]</li>\n<li>Fix &#8211; Correct block use checks around the Classic Editor plugin. [TEC-4099]</li>\n<li>Tweak &#8211; Set the appropriate Content-Type for REST responses that return just HTML during view partial requests. [TEC-4087]</li>\n<li>Language &#8211; 0 new strings added, 164 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.9.1] 2021-09-14</h4>\n<ul>\n<li>Feature &#8211; Updated swagger docs generated from swagger 2.0 to openapi 3.0.0</li>\n<li>Fix &#8211; Initialize $local_time_zone to ensure we don&#8217;t have notices displayed in the frontend. [TEC-3791]</li>\n<li>Fix &#8211; Ensure the correct timezone label is being displayed on the Classic and Block editors when site-wide timezone is set. [TEC-3791]</li>\n<li>Fix &#8211; Ensure that venue state or province are displayed next to the city in list view. [TEC-3332]</li>\n<li>Fix &#8211; Ensure the category archive event breadcrumb links to the main events page. [TEC-3330]</li>\n<li>Fix &#8211; Ensure that the page title does not encode (em)dashes before passing it on. [TEC-4049]</li>\n<li>Fix &#8211; Ensure that the page title does not encode apostrophes before passing it on. [TEC-4058]</li>\n<li>Fix &#8211; Ensure that filter_single_event_details_event_website_label() only filters the label for the website field. [ECP-921]</li>\n<li>Tweak &#8211; Remove unused template file to avoid confusion.</li>\n<li>Language &#8211; 0 new strings added, 13 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.9.0] 2021-08-24</h4>\n<ul>\n<li>Fix &#8211; Ensure that $eventDisplay is defined before we use it in the default template. [TEC-4060]</li>\n<li>Feature &#8211; Alter Customizer to leverage the new exposed CSS custom properties. [TCMN-104]</li>\n<li>Feature &#8211; Reduce the CSS load of The Events Calendar Customizer style overrides. [TEC-3011]</li>\n<li>Feature &#8211; Allow easier style overrides by users and third-party themes/plugins. [TEC-3011]</li>\n<li>Feature &#8211; Add new Font Sections to Customizer -&gt; The Events Calendar -&gt; Global Events. [TEC-3872]</li>\n<li>Feature &#8211; Add new font family control to allow The Events Calendar styles to inherit theme fonts. [TEC-3895]</li>\n<li>Feature &#8211; Add new font size controls for accessibility and to allow users to more closely match the font sizes of their theme. [TEC-3891]</li>\n<li>Tweak &#8211; Support optionally passing start dates to the Event Edit page so targeted event creation can be triggered by The Events Calendar Pro&#8217;s Event Manager.</li>\n<li>Language &#8211; 16 new strings added, 429 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.8.2] 2021-08-17</h4>\n<ul>\n<li>Feature &#8211; Redesign In-App help and troubleshooting pages. [TEC-3741]</li>\n<li>Fix &#8211; Try to ensure that when we do an event search the query post type remains <code>tribe_events</code>. [TEC-4012]</li>\n<li>Fix &#8211; Ensure the year is displayed in the block editor event single page for events that are occurring in a different year from the current one. [TEC-3740]</li>\n<li>Fix &#8211; Fix the issue of the Event Date Time block Timezone dropdown taking up a lot of space. [TEC-4029]</li>\n<li>Fix &#8211; Ensure WPML translated event posts show up on translated venue and organizer pages. (props @NicoX13) [TEC-4036]</li>\n<li>Fix &#8211; Fix issue of month names not being translatable. This was caused by a missing moment js localization dependency. [ECP-739]</li>\n<li>Fix &#8211; Ensure we test the value of tribe_events_get_current_month_day() before using it. [ECP-912]</li>\n<li>Fix &#8211; Add a new function to add &#8220;Event Blocks&#8221; category to the editor for WP &gt;= 5.8. [TEC-4037]</li>\n<li>Tweak &#8211; Change label of API Settings tab to &#8220;Integrations&#8221; and alter helper text. [TEC-4015]</li>\n<li>Language &#8211; 2 new strings added, 251 updated, 1 fuzzied, and 18 obsoleted</li>\n</ul>\n<h4>[5.8.1] 2021-07-20</h4>\n<ul>\n<li>Fix &#8211; Ensure that the Block Editor saves cost data when submitted. [TEC-3987]</li>\n<li>Fix &#8211; Ensure that when viewing a single event we load the correct template when tribe_context is &#8220;confused&#8221;. [TEC-3975]</li>\n<li>Tweak &#8211; Remove some CSS on the single events page that was causing a random border to appear on avada theme [TEC-3952]</li>\n<li>Tweak &#8211; Add CSS class to the event tags label on the event details section on the single event page. [TEC-3951]</li>\n<li>Tweak &#8211; Correct the messaging and link for the v1 deprecation notice. [TEC-3958]</li>\n<li>Tweak &#8211; Include filter to allow modifications to the Grid query for By Day Views like Month and Week, <code>tribe_events_views_v2_by_day_view_day_repository</code></li>\n<li>Language &#8211; 5 new strings added, 26 updated, 2 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[5.8.0] 2021-07-01</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.8.0 is only compatible with Events Calendar PRO 5.8.0 and higher</li>\n<li>Feature &#8211; Add new Events bar section to the Customizer for control of the Events Bar styles. [TEC-3672]</li>\n<li>Fix &#8211; Correct instance where the date &amp; time symbols (&#8220;@&#8221;) are not changing color along with the text. [TEC-3883]</li>\n<li>Tweak &#8211; Ensure that the Month view date and time default colors match up with the rest [TEC-3709]</li>\n<li>Tweak &#8211; Ensure the Customizer Accent Color defaults to &#8220;royal blue&#8221; (#334aff) [TEC-3884]</li>\n<li>Tweak &#8211; Stop doing all the work here and leverage the new tribe-common Theme_Compatibility. [TCMN-106]</li>\n<li>Tweak &#8211; Add new hooks to the single event templates to allow more third-party control over content without custom templates. [TEC-3948]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_events_views_v2_bootstrap_html</code>, <code>tribe_default_events_template_classes</code>, <code>tribe_events_single_event_title_classes</code>, <code>tribe_events_single_event_title_html_before</code>, <code>tribe_events_single_event_title_html_after</code>, <code>tribe_events_single_event_title_html</code></li>\n<li>Tweak &#8211; Removed filters: <code>tribe_events_views_v2_compatibility_classes</code>, <code>tribe_events_views_v2_theme_compatibility_registered</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_default_events_template_after_header</code>, <code>tribe_default_events_template_before_footer</code></li>\n<li>Tweak &#8211; Changed views: <code>default-template</code>, <code>single-event</code>, <code>v2/default-template</code></li>\n<li>Language &#8211; 13 new strings added, 64 updated, 6 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[5.7.1] 2021-06-23</h4>\n<ul>\n<li>Fix &#8211; Properly recalculate event cost when creating events via the Block Editor. [TEC-3141]</li>\n<li>Fix &#8211; Resolve a compatibility issue with the new single view and the tickets block when using the <code>twentynineteen</code> theme. [TEC-3937]</li>\n<li>Fix &#8211; Ensure that <code>view_data</code> is an array when fetching values from the request. [TEC-3946]</li>\n<li>Fix &#8211; Ensure that the events block editor is disabled when &#8220;Activate Block Editor for Events&#8221; is unchecked. [TEC-3964]</li>\n<li>Tweak &#8211; Make custom post types available from the REST API so they can be compatible with the Navigation block. [TEC-3907]</li>\n<li>Tweak &#8211; Remove aria-labeled attribute from featured icons. [TEC-3396]</li>\n<li>Language &#8211; 0 new strings added, 154 updated, 3 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.7.0] 2021-05-27</h4>\n<ul>\n<li>Feature &#8211; Add new Month View section to the Customizer for v2 views. [TEC-3836]</li>\n<li>Fix &#8211; Apply responsive breakpoints once the page has fully loaded with all JavaScript and Elements on the page [TEC-3797]</li>\n<li>Fix &#8211; Resolve conflicts with Gravity Forms plugin that would prevent correct submission of forms data. [ECP-466]</li>\n<li>Fix &#8211; Correctly handle start and end of day cutoff in Day View when the server timezone is not the same as the site (thanks @therealgilles). [TEC-3877]</li>\n<li>Fix &#8211; Do not remove the <code>archive</code> body class from post tag and category pages when using Page as Event Template. [TEC-3846]</li>\n<li>Fix &#8211; Correctly translate calendar view in WPML language switcher (thanks @dgwatkins). [TEC-3810]</li>\n<li>Fix &#8211; Styles with the default theme <code>twenty twenty one</code> in <code>&lt;buttons&gt;</code> around the calendar. [TEC-3887]</li>\n<li>Fix &#8211; Single event iCalendar export will correctly export only that event information. [TEC-3886]</li>\n<li>Fix &#8211; Use the correct date and time in the Day View time separator when Timezone Mode is set to &#8220;Manual time zones for each event&#8221;. [TEC-3877]</li>\n<li>Fix &#8211; Correctly integrate with the &#8220;Hello Elementor&#8221; theme to avoid issues with The Events Calendar and The Events Calendar PRO Views. [ECP-648]</li>\n<li>Fix &#8211; Correct typo in style output from Customizer.  Thanks @apmatthews for catching and correcting this!</li>\n<li>Fix &#8211; Avoid PHP warnings when linked post types are filtered out (thanks @baden03). [TEC#3533]</li>\n<li>Tweak &#8211; Make sure events from latest past events display the featured image correctly. [TEC-3655]</li>\n<li>Tweak &#8211; Reduced the usage of the word &#8220;onwards&#8221; on list-style view date range headings where simpler headings are better suited. [TEC-3831]</li>\n<li>Tweak &#8211; Move messages below the calendar grid in the mobile version of Month View. [TEC-3793]</li>\n<li>Tweak &#8211; Display a message to let visitors know the selected Month View day has no events in mobile. [TEC-3812]</li>\n<li>Tweak &#8211; Add compatibility for the Full Site Editor navigation block. [TEC-3850]</li>\n<li>Tweak &#8211; Filter the type of files allowed to upload into the EA Client. [TEC-3882]</li>\n<li>Tweak &#8211; Updating lodash to 4.17.21. [TEC-3885]</li>\n<li>Tweak &#8211; Prevent to list changes of hash on URL changes like <code>#content</code> [TEC-3890]</li>\n<li>Tweak &#8211; Update Google Calendar link to use the timezone based on the Timezone Settings from the Calendar [TEC-3143]</li>\n<li>Tweak &#8211; Add the <code>tribe_views_v2_after_setup_loop</code> filter to modify the loop context set up in the View (v2). [ECP-811]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_by_day_view_grid_days</code> to allow pre-filling Month and Week Views (v2) Events. [ECP-529]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_by_day_view_day_results</code> to allow fine-grained control over Month and Week Views (v2) Event data. [ECP-529]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_events_views_v2_view_ical_repository_args</code>, <code>tribe_events_views_v2_view_{$slug}_asset_origin_object</code>, <code>tribe_events_views_v2_by_day_view_grid_days</code>, <code>tribe_events_views_v2_by_day_view_day_results</code>, <code>tribe_events_views_v2_month_mobile_messages</code>, <code>tribe_events_views_v2_view_cached_html</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_cached_html</code>, <code>tribe_ical_template_event_ids</code>, <code>tribe_get_view_permalink</code>, <code>tribe_get_{$slug}_view_permalink</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_views_v2_after_setup_loop</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details</code>, <code>blocks/parts/details</code>, <code>modules/meta/details</code>, <code>v2/components/breakpoints</code>, <code>v2/components/messages</code>, <code>v2/day/time-separator</code>, <code>v2/month</code>, <code>v2/month/calendar-body/day</code>, <code>v2/month/mobile-events</code>, <code>v2/month/mobile-events/mobile-day</code>, <code>v2/month/mobile-events/mobile-day/day-marker</code></li>\n<li>Language &#8211; 27 new strings added, 133 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.6.0] 2021-04-29</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.6.0 is only compatible with Events Calendar PRO 5.6.0 and higher</li>\n<li>Fix &#8211; Correct implementation of filters in Views/V2/Hooks.php to avoid fatals. [ECP-761]</li>\n<li>Fix &#8211; Ensure when saving on Blocks editor Organizer and Venue IDs don&#8217;t throw notices for failed deletion. [TEC-3844]</li>\n<li>Fix &#8211; Resolve compatibility problem between The Events Calendar and other plugins using Select2. [TEC-3748]</li>\n<li>Fix &#8211; Enqueue full styles for v2 event single only when using full styles. [TEC-3848]</li>\n<li>Fix &#8211; Modify Select2 to clone the <code>jQuery.fn.select2</code> into <code>jQuery.fn.select2TEC</code> to avoid conflicting with third-party usage that didn&#8217;t include the full version of Select2 [TEC-3748]</li>\n<li>Fix &#8211; Add filtering hooks to Cache Listener to allow modifications of which options trigger an occurrence. [ECP-826] [ECP-824]</li>\n<li>Fix &#8211; Improve escaping for messages when no results were found using search (Thanks Steve Pollak)</li>\n<li>Tweak &#8211; Added the ability to filter cached view HTML. Hooks added were: <code>tribe_events_views_v2_view_cached_html</code> and <code>tribe_events_views_v2_view_{$view_slug}_cached_html</code>. [ECP-770]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_events_views_v2_view_ical_repository_args</code>, <code>tribe_events_views_v2_view_cached_html</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_cached_html</code>, <code>tribe_ical_template_event_ids</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details</code>, <code>blocks/parts/details</code>, <code>modules/meta/details</code>, <code>v2/components/messages</code>, <code>v2/month/mobile-events/mobile-day</code>, <code>v2/month/mobile-events/mobile-day/day-marker</code></li>\n<li>Language &#8211; 3 new strings added, 176 updated, 0 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.5.0.1] 2021-04-05</h4>\n<ul>\n<li>Fix &#8211; Reduce overhead of widget setup on every page load by setting up the widgets only as needed. [TEC-3833]</li>\n</ul>\n<h4>[5.5.0] 2021-03-29</h4>\n<ul>\n<li>Feature &#8211; Add <code>has_event</code> and <code>has_no_events</code> to the Venue and Organizer ORM so we can filter requests for both by whether they have events or not.</li>\n<li>Fix &#8211; Invert quotes to protect against issue with MySQL in <code>ANSI_QUOTES</code> mode. [TEC-3785]</li>\n<li>Fix &#8211; correct display order of sticky, featured, and &#8220;normal&#8221; events on Month View. Adds a class for targeting sticky posts for styling. [TEC-3770]</li>\n<li>Fix &#8211; Ensure the Events List widget also shows the Time Zone when displaying it is set in the admin. [TEC-3747]</li>\n<li>Fix &#8211; Saving on Blocks editor without Organizer is working as expected again [TEC-3788]</li>\n<li>Fix &#8211; Fusion Core/Avada Widget implementation of The Events Calendar will no longer throw warnings on the frontend display. [ECP-538]</li>\n<li>Fix &#8211; Usage of <code>tribe_get_events()</code> for non-existent posts will no longer throw warnings on the Blocks Editor, impacted Community Events Shortcode usage [BTPLAN-121]</li>\n<li>Tweak &#8211; Added rel=noreferrer to Google Map links. [TEC-3795]</li>\n<li>Tweak &#8211; Include actions before and after the creation of a view for REST API requests. Hooks added were: <code>tribe_events_views_v2_before_make_view_for_rest</code> and <code>tribe_events_views_v2_after_make_view_for_rest</code></li>\n<li>Tweak &#8211; Allow specific filtering to add other views into the HTML caching for performance using hook <code>tribe_events_views_v2_cached_views</code>.</li>\n<li>Tweak &#8211; Include Legacy views deprecation notice [TEC-4809]</li>\n<li>Language &#8211; 8 new strings added, 181 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.4.0.2] 2021-03-10</h4>\n<ul>\n<li>Fix &#8211; Saving organizers properly work on WordPress 5.7 with Blocks Editor [TEC-3788]</li>\n</ul>\n<h4>[5.4.0.1] 2021-03-04</h4>\n<ul>\n<li>Fix &#8211; Prevent fatals happening with PHP 5.6 due to duplicated class for templates [TEC-3799]</li>\n</ul>\n<h4>[5.4.0] 2021-02-24</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.4.0 is only compatible with Events Calendar PRO 5.3.0 and higher</li>\n<li>Fix &#8211; Compatibility with WordPress 5.7 and jQuery 3.5.X</li>\n<li>Fix &#8211; Updated views JavaScript manager is now deferred to the end of the request, to make sure all dependencies are loaded.</li>\n<li>Fix &#8211; Navigation for the Views will no longer use current browser URL as previous url, preventing problems on shortcodes.</li>\n<li>Fix &#8211; Latest Past view moved to not publicly visible, which was the intended behavior.</li>\n<li>Tweak &#8211; Add compatibility container to widgets &#8211; to allow for a non-body target for compatibility classes.</li>\n<li>Tweak &#8211; Include the <code>tribe_events_views_v2_view_page_reset_ignored_params</code> filter to prevent certain params from interfering with pagination resetting. [FBAR-222]</li>\n<li>Tweak &#8211; Use filterable attributes for the view more link and text. Add customizer styling for the link. [ECP-568]</li>\n<li>Tweak &#8211; Removed <code>tribe_events_views_v2_widget_admin_form_{$field_type}_input</code> from the List Widget admin form in favor of using <code>Tribe__Template::do_entry_point()</code> [ECP-486]</li>\n<li>Tweak &#8211; Moved administration templates for List Widget components to Common. [ECP-486]</li>\n<li>Language &#8211; 1 new strings added, 10 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.3.2.1] 2021-02-02</h4>\n<ul>\n<li>Fix &#8211; Prevent Event Aggregator ASYNC requests from failing to import after 5 Events, Venues, RSVP, Tickets and/or Organizers. [TEC-3769]</li>\n<li>Fix &#8211; Update compatibility with PHP 7.4 for ForceUTF8 vendor module. [TEC-3769]</li>\n</ul>\n<h4>[5.3.2] 2021-01-28</h4>\n<ul>\n<li>Feature &#8211; Add customizer support for custom location pins on single events when Views V2 is active. [TEC-3276]</li>\n<li>Fix &#8211; Use dynamic label for fast-forward link on the month view. [TEC-3452]</li>\n<li>Fix &#8211; Correctly filter <code>locale</code> in the <code>Tribe\\Events\\I18n</code> class to avoid errors.</li>\n<li>Fix &#8211; Prevent heartbeat warning when null data param is passed on Cron and AJAX requests [TEC-3745]</li>\n<li>Fix &#8211; Increase the minimum width of the datetime dropdown when editing an event with the block editor. [TEC-3126]</li>\n<li>Fix &#8211; Ordering with an Array when using <code>Tribe__Repository</code> now properly ignores the global order passed as the default. [ECP-598]</li>\n<li>Fix &#8211; Resolve PHP 8.0 incompatibility with <code>__wakeup</code> and <code>__clone</code> visibility on Extension class.</li>\n<li>Fix &#8211; Prevent <code>tribe_sort_by_priority</code> from throwing warnings on <code>uasort</code> usage for PHP 8+ compatibility.</li>\n<li>Fix &#8211; Update Di52 to include PHP 8+ compatibility.</li>\n<li>Fix &#8211; Modify Freemius <code>class-fs-logger.php</code> file to prevent PHP 8+ warnings.</li>\n<li>Fix &#8211; Correctly handle *nix and Windows server paths that contain falsy values (e.g. <code>0</code> or spaces) when building template paths. [TEC-3712]</li>\n<li>Tweak &#8211; Increase top padding above date stamp in list view. [TEC-3656]</li>\n<li>Tweak &#8211; Reduce bottom margin of the event title in list/day views. [TEC-3656]</li>\n<li>Tweak &#8211; Round featured event line corners. [TEC-3656]</li>\n<li>Tweak &#8211; Add new filter <code>tribe_aggregator_build_url_data</code> to customize the URL delivered to EA server.</li>\n<li>Tweak &#8211; Update V2 Customizer admin styles of TEC sections. [TEC-3696]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_aggregator_build_url_data</code></li>\n<li>Language &#8211; 4 new strings added, 187 updated, 3 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[5.3.1] 2020-12-15</h4>\n<ul>\n<li>Feature &#8211; Event Aggregator &#8211; Filter Events by Aggregator/Import Record. [EA-130]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add background color css overrides. [TEC-3651]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add Event Title color css overrides. [TEC-3334]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add Event Date &amp; Time color css overrides. [TEC-3675]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add controls for Background Color to general and single-event sections. [TEC-3683]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add controls for Event Title Color to general section. [TEC-3684]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add controls for Event Date &amp; Time Color to general section. [TEC-3685]</li>\n<li>Tweak &#8211; Add opaque backgrounds for selected bordered elements. [TEC-3673]</li>\n<li>Tweak &#8211; Change Title/Date &amp; Time font color defaults on the Event Single page. [TEC-3682]</li>\n<li>Fix &#8211; Fix an issue in csv venue imports where the address would not import.  [TEC-3637]</li>\n<li>Fix &#8211; Compatibility for some theme menus that no longer displayed when an event is password protected. [TEC-2968]</li>\n<li>Language &#8211; 8 new strings added, 63 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.3.0] 2020-12-02</h4>\n<ul>\n<li>Feature &#8211; Event Aggregator &#8211; Search Box for Scheduled Imports. [TEC-3570]</li>\n<li>Feature &#8211; Event Aggregator Batch Pushing for Cron Imports [EA-297]</li>\n<li>Tweak &#8211; Add the filter <code>tribe_aggregator_import_queue_cleaner_time_to_live</code> to customize the time in seconds to consider an EA record alive. [EA-297]</li>\n<li>Tweak &#8211; Add the filter <code>tribe_aggregator_import_queue_cleaner_stall_limit</code> to customize the number of seconds for an EA record to be considered stalled. [EA-297]</li>\n<li>Tweak &#8211; Add the filter <code>tribe_events_aggregator_build_url</code> [EA-297]</li>\n<li>Tweak &#8211; Adjust Event Aggregator Client Progress Bar using the Heart Beat API for polling state instead [TEC-3534]</li>\n<li>Tweak &#8211; Event Aggregator &#8211; Make default limit by number of events instead of by date range. [TEC-3635]</li>\n<li>Tweak &#8211; Event Aggregator/Eventbrite Tickets &#8211; Remove verbiage regarding 50 event limit on Eventbrite imports.</li>\n<li>Tweak &#8211; Add the <code>tribe_get_organizer_object</code> function. [TEC-3645]</li>\n<li>Tweak &#8211; Change the return value of the <code>tribe_get_event( $event_id )-&gt;organizers</code> from a collection of Organizer names to a collection of Organizer post objects. [TEC-3645s]</li>\n<li>Tweak &#8211; Add the <code>tribe_get_event( $event_id )-&gt;organizer_names</code> method to return a collection of the Event Organizer names. [TEC-3645]</li>\n<li>Tweak &#8211; Ensure widgets don&#8217;t get Filter Bar classes on their containers. [FBAR-202]</li>\n<li>Tweak &#8211; Switch the List View previous/next URL methods to use the slug rather than a hard-coded &#8220;list&#8221; so the class is more easily extendable. [TEC-3648]</li>\n<li>Tweak &#8211; Add an option to trash events after 1 month (thanks @StefanSchroeder).</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_datepicker_no_conflict</code> filter (default <code>false</code>) to allow loading the Views v2 datepicker in no-conflict mode, when set to <code>true</code>, and avoid issues with other plugins that are loading the built-in WordPress <code>jquery-ui-datepicker</code> script. [TEC-3581]</li>\n<li>Tweak &#8211; Improve WPML integration and URL localization of Views v2. [TEC-3608]</li>\n<li>Fix &#8211; Event Aggregator &#8211; Fix Eventbrite status filter to not return &#8216;do_not_override&#8217; and handle Eventbrite&#8217;s additional statuses. [TEC-3569]</li>\n<li>Fix &#8211; Ensure ECP shortcode today button handles categories gracefully. [ECP-492]</li>\n<li>Fix &#8211; Prevent creation of duplicate venues for default address while adding or editing events. [ECP-482]</li>\n<li>Fix &#8211; Make sure Month View &#8220;View More&#8221; link to Day View will preserve the current search criteria. [TEC-3230]</li>\n<li>Fix &#8211; Ensure Event Aggregator Cron schedules always have array format and avoid errors on fresh WordPress installations (thanks @mmcachran).</li>\n<li>Fix &#8211; Regular expression to sanitize name of columns on the EA client make sure all invalid characters are removed.</li>\n<li>Fix &#8211; Use more robust code in the <code>tribe_is_past_event</code> template tag to avoid Warnings.</li>\n<li>Fix &#8211; Review and improve the Rewrite component to correctly parse and handle localized URLs and accented characters. [TEC-3608]</li>\n<li>Language &#8211; 25 new strings added, 775 updated, 1 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.2.1] 2020-10-22</h4>\n<ul>\n<li>Tweak &#8211; Change Views v2 AJAX request method from GET to POST to avoid issues with too long URLs. [TEC-3283]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_endpoint_method</code> filter to allow controlling the HTTP method Views should use to fetch their content from the back-end endpoint. [TEC-3283]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_endpoint_url</code> filter to allow controlling the URL Views should use to fetch their content from the back-end endpoint. [TEC-3283]</li>\n<li>Fix &#8211; Prevent Event Aggregator 15 minute Cron Schedule from being created when not required (props @jetxpert) [EA-317]</li>\n<li>Fix &#8211; Add filter to toggle off the event templates hijack. [TEC-3521]</li>\n<li>Fix &#8211; Correct url for current month iCal export link. [TEC-3575]</li>\n<li>Fix &#8211; Avoid loading the same CSS file twice on the back-end. [TEC-3623]</li>\n<li>Fix &#8211; Ensure ECP shortcode prev/next urls handle categories gracefully. [ECP-492]</li>\n<li>Language &#8211; 3 new strings added, 200 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.2.0] 2020-09-28</h4>\n<ul>\n<li>Fix &#8211; Fix the order of the List View when the PRO is set to show only the first instance of a Recurring Event. [ECP-467]</li>\n<li>Fix &#8211; Fix a PHP error that would arise when during the translation, by the WPML plugin, of some strings. [TEC-3454, TEC-3578]</li>\n<li>Fix &#8211; Fix a compatibility issue with the WPML plugin that would prevent some options from being translated correctly. [TEC-3454]</li>\n<li>Fix &#8211; Generation and usage of translated strings that would cause issues with the WPML plugin. [TEC-3454]</li>\n<li>Tweak &#8211; Use the <code>border-small</code> class for the today button, add new border button styles to customizer. [FBAR-143]</li>\n<li>Tweak &#8211; Add missing CSS classes to the Event Categories label on the single event page. [TEC-3478]</li>\n<li>Tweak &#8211; Adjust accordion trigger selector to allow multiple space-separated <code>data-js</code> attributes. [FBAR-125]</li>\n<li>Tweak &#8211; Adjust spacing on header to prevent screen overflow. [FBAR-132]</li>\n<li>Tweak &#8211; Adjust aria attributes and add loader text to make ajax loading more accessible. [FBAR-147]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_latest_past_view_display_template</code> filter to allow controlling the display of templates  in the context of the Latest Past Events View. [FBAR-148]</li>\n<li>Tweak &#8211; Allow passing of additional data to the AJAX request by use of container data. [FBAR-162]</li>\n<li>Language &#8211; 2 new strings added, 20 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.1.6] 2020-08-24</h4>\n<ul>\n<li>Tweak &#8211; Move the iCal output coding out of the loop and into its own method.  [VE-150]</li>\n<li>Fix &#8211; Fix SQL errors that would show up when creating custom Event queries in theme builders. [TEC-3530]</li>\n<li>Fix &#8211; Fix SQL errors that would show up when running custom Event queries in plugins . [TEC-3528]</li>\n<li>Fix &#8211; Fix SQL errors that would prevent customers from being able to select tickets assigned to Events in some instances. [TEC-3500]</li>\n<li>Fix &#8211; On re-import of the excerpt and event description field enable changes to the existing values. [TEC-3080]</li>\n<li>Fix &#8211; On re-import enable excerpt and description to be cleared of their values. [TEC-3080]</li>\n<li>Fix &#8211; On re-import only overwrite items that have been mapped. [TEC-2962]</li>\n<li>Tweak &#8211; Add filters for venue and organizer import data. [TEC-2962]</li>\n<li>Tweak &#8211; Add ability to use default values from settings for venue imports via the <code>tribe_events_importer_set_default_venue_import_values</code> filter. [TEC-2962]</li>\n<li>Tweak &#8211; Replace placeholders in template docblocks with appropriate links. [TEC-3399]</li>\n<li>Language &#8211; 32 new strings added, 75 updated, 0 fuzzied, and 28 obsoleted</li>\n</ul>\n<h4>[5.1.5] 2020-07-27</h4>\n<ul>\n<li>Tweak &#8211; Add filters to link generation for events, venues, and organizers. [EXT-151]</li>\n<li>Tweak &#8211; Remove disabled admin notice for Virtual Events and Gutenberg. [TEC-3546]</li>\n<li>Tweak &#8211; Modify parameters on <code>register_rest_route</code> to include <code>permission_callback</code> to prevent notices on WordPress 5.5.</li>\n<li>Fix &#8211; Prevent the wrong dates in mobile month view date marker when on leading UTC timezones. [TEC-3549]</li>\n<li>Fix &#8211; Fix the display order of Events starting on the same date and time to ensure it&#8217;s consistent. [TEC-3548]</li>\n<li>Fix &#8211; Fix the handling of URL fragments translations in Views to ensure fully localized View URLs work. [TEC-3479]</li>\n<li>Fix &#8211; Display promo at the bottom of views when &#8220;Show The Events Calender link&#8221; is checked. [TEC-3321]</li>\n<li>Fix &#8211; Set proper timezone on block editor when creating a new event. [TEC-3543]</li>\n<li>Fix &#8211; Prevent PHP error when using V2, the site home page at <code>Main Events page</code>, including events in the blog loop, and Pro is active.  [ECP-361]</li>\n<li>Fix &#8211; Resolve WordPress REST API authentication errors related to <code>null</code> returns. Props to @ahaurat [TEC-3539]</li>\n<li>Language &#8211; 0 new strings added, 55 updated, 0 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.1.4] 2020-06-24</h4>\n<ul>\n<li>Tweak &#8211; Improve fresh install experience by setting the default template to the Events one [TEC-3453]</li>\n<li>Tweak &#8211; Create a new method to request an update back to EA imports to mark imports as completed on EA server [TEC-3476]</li>\n<li>Tweak &#8211; Add a new filter <code>tribe_aggregator_service_put_pue_licenses</code> to enable external sources the option to add additional PUE attached to the request. [TEC-3476]</li>\n<li>Tweak &#8211; Prevent latest-past from showing in the front end view selector in new installs [TEC-3450]</li>\n<li>Tweak &#8211; On a fresh install set the enabled views to list, month, and day and set the default view to list to stop erroneous error entries [TEC-3451]</li>\n<li>Tweak &#8211; Add a new &#8220;scheduled&#8221; status for the activity reporter of imports from EA [TEC-3475]</li>\n<li>Tweak &#8211; Add admin notice for Virtual Events. [TEC-3620]</li>\n<li>Language &#8211; 3 new strings added, 246 updated, 1 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.1.3] 2020-06-22</h4>\n<ul>\n<li>Tweak &#8211; Add new filter <code>tribe_events_filter_views_v2_plural_events_label</code> to customize the label in V2 views. [VE-9]</li>\n<li>Fix &#8211; Prevent &#8220;too few arguments&#8221; on the settings page when a url contains percentage signs. [VE-111]</li>\n<li>Fix &#8211; Correctly store Event Organizer meta when using the ORM.</li>\n<li>Fix &#8211; Linked posts (Organizers and Venues) correctly check if the item selected is brand new or existing when edit link is empty. [TEC-3481]</li>\n<li>Language &#8211; 1 new strings added, 112 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.1.2.1] 2020-06-09</h4>\n<ul>\n<li>Security &#8211; Remove deprecated usage of escapeMarkup in Select2 (props to miha.jirov for reporting this).</li>\n</ul>\n<h4>[5.1.2] 2020-05-27</h4>\n<ul>\n<li>Tweak &#8211; Prevent undefined errors when using tribe_get_events and forcing a cache refresh.</li>\n<li>Fix &#8211; Prevent <code>E_ERROR</code> for <code>Tribe__Events__Meta__Save</code> construct when dealing with revisions, which some WP Engine customers were seeing.</li>\n<li>Language &#8211; 0 new strings added, 49 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.1.1] 2020-05-11</h4>\n<ul>\n<li>Feature &#8211; Move all the featured event icons to templates. [TEC-3441]</li>\n<li>Feature &#8211; Added a helper method <code>Tribe__Plugins::is_active( \'slug\' )</code> to check if a given plugin is active.</li>\n<li>Feature &#8211; Add entry points through filters to be able to add content after the opening html tag or before the closing html tag. [TCMN-65]</li>\n<li>Tweak &#8211; Deprecated the <code>Tribe__Events__Main::get_i18n_strings_for_domains()</code> and <code>Tribe__Events__Main::get_i18n_strings()</code> methods; use the methods with the same name and signature provided by the <code>tribe( \'tec.18n\' )</code> object [TEC-3404]</li>\n<li>Tweak &#8211; Add new filter <code>tribe_aggregator_manage_record_column_source_html</code> to customize the source column content HTML used on the Event Aggregator Import &#8220;History&#8221; tab.</li>\n<li>Tweak &#8211; Modify language variables to improve translations readability on Updated Views navigation previous and next buttons. [props @justlevine]</li>\n<li>Tweak &#8211; Add new filter <code>tribe_aggregator_manage_record_column_source_html</code> to customize the source column content HTML used on the Event Aggregator Import &#8220;History&#8221; tab.</li>\n<li>Fix &#8211; Enqueue Customizer stylesheets properly via <code>tribe_customizer_inline_stylesheets</code> in Common. [TEC-3401]</li>\n<li>Fix &#8211; Not being able to create events because capabilities were not set on activation or update of the plugin. [TEC-3350]</li>\n<li>Fix &#8211; Adjust templates to show time zone in event details when &#8220;Show time zone&#8221; is checked. [TEC-2979]</li>\n<li>Fix &#8211; Correct bad defaults from <code>Template-&gt;attr()</code> and ensure that the timezone info is correctly hydrated in the case of an unchanged block. [TEC-2964]</li>\n<li>Fix &#8211; Show the correct counts on the Event Aggregator Import &#8220;History&#8221; tab for non-Event content types being imported.</li>\n<li>Fix &#8211; Prevent creation of empty venue when removing a Venue inside of the Events using the Classic editor that had a US state selected. [TEC-3416]</li>\n<li>Fix &#8211; Event Aggregator imported events when using default status or categories from the Settings Page will now be imported correctly. [TEC-3445]</li>\n<li>Fix &#8211; A localization support that would mangle Views URLs when WPML plugin is active alongside Views v2 [TEC-3404]</li>\n<li>Fix &#8211; Prevent problems with <code>func_get_args()</code> usage around template inclusion for legacy template files [TEC-3104]</li>\n<li>Tweak &#8211; Extended support for namespaced classes in the Autoloader.</li>\n<li>Tweak &#8211; Make Customizer stylesheet enqueue filterable via <code>tribe_customizer_inline_stylesheets</code>. [TEC-3401]</li>\n<li>Tweak &#8211; Normalize namespaced prefixes with trailing backslash when registering them in the Autoloader. [VE-14]</li>\n<li>Language &#8211; 2 new strings added, 243 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.1.0] 2020-04-23</h4>\n<ul>\n<li>Feature &#8211; Add a &#8220;fast forward&#8221; link to Month and Day views when there are no events to show. [TEC-3400]</li>\n<li>Feature &#8211; Add <code>tribe_events_views_v2_use_ff_link</code> and <code>tribe_events_views_v2_{$this-&gt;slug}_use_ff_link</code> filters to allow control of the link. [TEC-3400]</li>\n<li>Feature &#8211; Add Recent Past Events Views. [TEC-3385]</li>\n<li>Tweak &#8211; Improved on meta data handling of for Blocks editor.</li>\n<li>Tweak &#8211; Deprecate Select2 3.5.4 in favor of SelectWoo</li>\n<li>Tweak &#8211; Load plugin text domain on the new <code>tribe_load_text_domains</code> action hook, which fires on <code>init</code> instead of on the <code>plugins_loaded</code> hook. [TEC-3406]</li>\n<li>Tweak &#8211; Add a constant <code>TRIBE_CACHE_VIEWS</code> to turn off views HTML caching.</li>\n<li>Fix &#8211; Theme navigation warning around <code>post_date = \'0\'</code> no longer happens when using Page template for Updated Views [TEC-3434]</li>\n<li>Fix &#8211; Selecting other Page templates from Settings &gt; Display now loads the correct template properly, to display events.</li>\n<li>Fix &#8211; Preventing redirects from updated Views V2 to be too broad and end up catching requests from other Plugins, reported by GravityView team on Gravity Forms bug with imports.</li>\n<li>Fix &#8211; Prevent PHP errors from happening during bulk activation or deactivation of the plugin [TCMN-53]</li>\n<li>Fix &#8211; Correct iCal link on month view for months other than the current one [TEC-3267]</li>\n<li>Fix &#8211; Correct a few incorrect and/or typoed text domains [TEC-3390]</li>\n<li>Fix &#8211; Ensure we pass search keywords when changing views and in the top-bar nav [TEC-3282]</li>\n<li>Fix &#8211; Prevent Blocks editor from throwing browser alert when leaving the page without any changes applied to the edited post.</li>\n<li>Fix &#8211; Several strings have been adjusted for consistency and better translatability [TEC-3417]</li>\n<li>Hook &#8211; Add the <code>tribe_events_blocks_editor_is_on</code> filter; returning a falsy value from this filter will prevent the Blocks Editor to ever be active on Events; else the settings from Events &gt; Settings will apply [TEC-3349]</li>\n<li>Tweak &#8211; Add some filters for better control of link targets, standardize the way we create those links [TEC-3402]</li>\n<li>Language &#8211; 4 new strings added, 286 updated, 1 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[5.0.3.1] 2020-03-23</h4>\n<ul>\n<li>Fix &#8211; Assets class modification to prevent JavaScript and CSS failing to load when <code>SCRIPT_DEBUG=true</code> [TCMN-52]</li>\n</ul>\n<h4>[5.0.3] 2020-03-23</h4>\n<ul>\n<li>Feature &#8211; Allow users to set a custom name for new Event Aggregator Imports. [TEC-3286]</li>\n<li>Tweak &#8211; Add back missing JSON-LD to Single Events. [TEC-3262]</li>\n<li>Tweak &#8211; Minify the Freemius svg assets. [TEC-3215]</li>\n<li>Tweak &#8211; Remove &#8220;(beta)&#8221; label from URL source type of import. [TEC-3289]</li>\n<li>Tweak &#8211; Reword the Filter Activation setting&#8217;s labels for better clarity.  [FBAR-79]</li>\n<li>Fix &#8211; Ensure that any values for <code>liveFilterUpdate</code> that are not <code>automatic</code> or <code>manual</code> get converted. [FBAR-83]</li>\n<li>Fix &#8211; Breakpoint code compatibility with the latest version of jQuery 3.4.1 [TEC-3251]</li>\n<li>Fix &#8211; Remove numbers from listed events in event list widget for Genesis theme. [TEC-2957]</li>\n<li>Fix &#8211; Customizer accent color affects featured line and text. [TEC-3277]</li>\n<li>Fix &#8211; Resolve conflict between datepicker holding consistent size when navigating and flexibility on small screen sizes. [TEC-3322]</li>\n<li>Fix &#8211; Respect EA <code>post_status</code> from settings when an event does not have a defined value. [TEC-3255]</li>\n<li>Fix &#8211; Save the <code>post_status</code> for a scheduled import when using a different value other than <code>publish</code>. [TEC-3296]</li>\n<li>Fix &#8211; Update events, venues, and organizers to use dynamic labels. [TEC-3280]</li>\n<li>Fix &#8211; Resolve an issue in Views v2 that would break URLs when the event single and archive slugs have the same value due to the &#8220;Events URL slug&#8221; and &#8220;Single event URL slug&#8221; settings or due to their translations [TEC-3254]</li>\n<li>Fix &#8211; Restore correct handling of events RSS feeds; events will show in the RSS feed in ascending start date, starting from the current day and the event publish date will be set to the event start date [TEC-3252]</li>\n<li>Hook &#8211; Add filters <code>tribe_events_liveupdate_automatic_label_text</code> and <code>tribe_events_liveupdate_manual_label_text</code> to allow Filter Bar to include itself in those labels. [TEC-3322]</li>\n<li>Hook &#8211; Add the <code>tribe_views_v2_events_query_controller_active</code> filter; returning a falsy value from this filter will prevent Views v2 from altering the WordPress query. This filter allows handling situations where Views v2 might interfere with third party plugins (e.g. custom RSS feed implementations) [TEC-3252]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_option_convert_live_filters</code>, <code>tribe_events_views_v2_messages_need_events_label_keys</code></li>\n<li>Tweak &#8211; Removed filters: <code>tribe_events_ical_export_text</code></li>\n<li>Tweak &#8211; Changed views: <code>v2/components/events-bar/search/keyword</code>, <code>v2/month/calendar-body/day</code></li>\n<li>Language &#8211; 11 new strings added, 81 updated, 0 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.0.2.1] 2020-02-25</h4>\n<ul>\n<li>Fix &#8211; Plugin dependency registration with <code>Plugin_Register</code> will not prevent loading of all plugins in list if the last item loaded fails. [TCMN-41]</li>\n</ul>\n<h4>[5.0.2] 2020-02-19</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.0.2 is only compatible with Filter Bar 4.9.2 and higher</li>\n<li>Version &#8211; The Events Calendar 5.0.2 is only compatible with Events Calendar PRO 5.0.2 and higher</li>\n<li>Tweak &#8211; Modify Link Color Customizer option for single event links in description, the venue, the organizer, and the website link in classic editor.  [TEC-3219]</li>\n<li>Tweak &#8211; Move link color option to General tab in Customizer and remove Text tab.  [TEC-3244]</li>\n<li>Tweak &#8211; Freemius Opt-out workflow now present on all occasions [TEC-3171]</li>\n<li>Tweak &#8211; Freemius updated to the latest version 2.3.2 [TEC-3171]</li>\n<li>Tweak &#8211; Remove the &#8220;Default stylesheet &#8211; full&#8221; option from display settings, for the new views. [TEC-3125]</li>\n<li>Tweak &#8211; Change the live refresh option to a radio, adjust conditional checks to accommodate. [TEC-3072]</li>\n<li>Fix &#8211; Freemius activation URL send via email works as expected [TEC-3218]</li>\n<li>Fix &#8211; Improve compatibility from Updated Views V2 with Beaver Builder plugins [TEC-3248]</li>\n<li>Fix &#8211; More robust handling of <code>hide_from_listings</code> in REST API v2, thanks @maxm123</li>\n<li>Fix &#8211; Make sure the new Views (v2) will correctly print JSON-LD schema information [TEC-3241]</li>\n<li>Language &#8211; 4 new strings added, 248 updated, 1 fuzzied, and 3 obsoleted</li>\n</ul>\n<h4>[5.0.1] 2020-02-12</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.0.1 is only compatible with Filter Bar 4.9.1 and higher</li>\n<li>Version &#8211; The Events Calendar 5.0.1 is only compatible with Events Calendar PRO 5.0.1 and higher</li>\n<li>Feature &#8211; Add the &#8220;Accent Color&#8221; option in the customizer, for the new views. [TEC-3067]</li>\n<li>Fix &#8211; Fix venue block title from being indented in Twenty Twenty theme. [TEC-3140]</li>\n<li>Fix &#8211; Fix website block label from disappearing when adding event details classic block. [TEC-2971]</li>\n<li>Fix &#8211; Fix style overrides for new view shortcodes for Enfold theme. [ECP-315]</li>\n<li>Fix &#8211; Fix events bar input class recognition for JS handling in new views. [TEC-3091]</li>\n<li>Fix &#8211; Ensure datepicker does not get cut off in small width screens for new views. [TEC-2983]</li>\n<li>Fix &#8211; Venue and organizer blocks link to venue and organizer pages if Events Calendar Pro is activated. [ECP-14]</li>\n<li>Fix &#8211; Use proper check for map on venue block to apply proper class. [TEC-3020]</li>\n<li>Fix &#8211; Remove font family applied to organizer block to allow theme styles to be applied. [TEC-2974]</li>\n<li>Fix &#8211; Fix numbers breaking into two lines in datepicker in Twenty Twenty theme. [TEC-2999]</li>\n<li>Fix &#8211; Fix tooltips being cut off and hidden in month view. [TEC-3000]</li>\n<li>Fix &#8211; Fix event sharing block cutting off text in block editor admin when editing event. [TEC-2972]</li>\n<li>Fix &#8211; Fix disappearing price description in block editor admin when editing event. [TEC-2992]</li>\n<li>Fix &#8211; Allow venues to be properly removed by clicking the remove venue button in the venue block. [TEC-2965]</li>\n<li>Fix &#8211; Ensure map does not display if enable map setting is disabled. [TEC-3013]</li>\n<li>Fix &#8211; Fix the datepicker width problem in Google Chrome, for the new views. [TEC-2995]</li>\n<li>Fix &#8211; Fix an issue where Venue provinces would be incorrectly populated in iCal exports [TEC-3223]</li>\n<li>Fix &#8211; Deleting events after X feature no longer will delete posts with <code>_EventEndDate</code> meta [TEC-3233]</li>\n<li>Tweak &#8211; Adjust tooltip title styles for Twenty Twenty theme. [TEC-2998]</li>\n<li>Tweak &#8211; Remove find events button and related data when events bar is disabled. [TEC-3074]</li>\n<li>Tweak &#8211; Ensure datepicker always updates view via live refresh. [TEC-3073]</li>\n<li>Tweak &#8211; Adjust customizer labels for sites using the new views [TEC-3066]</li>\n<li>Tweak &#8211; Allow start datetime and end datetime to be the same to hide end datetime in frontend when using block editor. [TEC-3009]</li>\n<li>Tweak &#8211; Move the &#8220;Link Color&#8221; option in the customizer, for the new views. [TEC-3067]</li>\n<li>Language &#8211; 14 new strings added, 256 updated, 0 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[5.0.0.2] 2020-02-06</h4>\n<ul>\n<li>Fix &#8211; Datepicker format now properly defaults to the correct value when Display Settings have not been saved. [TEC-3229]</li>\n<li>Fix &#8211; New views mobile breakpoints interactions with Caching plugins resolved. [TEC-3221]</li>\n</ul>\n<h4>[5.0.0.1] 2020-01-31</h4>\n<ul>\n<li>Fix &#8211; Events with timezones that differ from the site timezone now display on the correct date. [TEC-3208]</li>\n<li>Fix &#8211; Multi-day events now display on all days that they are supposed to. [TEC-3212]</li>\n<li>Fix &#8211; End of day cutoff is now being observed appropriately when creating the day grid stack. [TEC-3210]</li>\n<li>Fix &#8211; Fix number of parameters when doing <code>the_post</code> action, for the single event view in the new views. [TEC-3214]</li>\n<li>Fix &#8211; 404s on permalinks have been resolved by moving the flush permalink action to a later moment of time on activation after all rules have been declared. [TEC-3211]</li>\n</ul>\n<h4>[5.0.0] 2020-01-27</h4>\n<ul>\n<li>Feature &#8211; Created new Month, Day, and List views with all new HTML, CSS, and JavaScript.</li>\n<li>Feature &#8211; Add upgrade path for new Month, Day, and List views making it opt-in for any existing users.</li>\n<li>Feature &#8211; New templating engine to power the new Views. <a href=\"https://evnt.is/1aid\" rel=\"nofollow ugc\">See More</a></li>\n<li>Feature &#8211; Views initialization and instance includes more filters and actions to allow improved extensibility and customization. (See all filters below)</li>\n<li>Feature &#8211; Views manager and bootstrapping classes were created to allow more control over where and when views will be initialized. (See filters related to those below)</li>\n<li>Feature &#8211; Reduced maintenance burden of customizations by leveraging atomic templates for the new views. (See list of files now available below)</li>\n<li>Feature &#8211; CSS uses a Block Element Modifier (BEM) methodology to improve reusability of components. <a href=\"https://evnt.is/1aib\" rel=\"nofollow ugc\">See More</a></li>\n<li>Feature &#8211; New Views share one JavaScript Manager, which contains multiple jQuery actions and customization points.</li>\n<li>Feature &#8211; View navigation relies on the WP Rest API, improving reliability and caching opportunities.</li>\n<li>Feature &#8211; Event permalinks are now more consistent across navigation using <code>WP_Rewrite</code> to map params to their matching URL, which improves SEO.</li>\n<li>Feature &#8211; Event data filtering used across all new views: <code>tribe_get_event_before</code>, <code>tribe_get_event</code>, <code>tribe_get_event_after</code>, <code>tribe_events_organizers_fetch_callback</code>, <code>tribe_events_venues_fetch_callback</code></li>\n<li>Feature &#8211; Venue data filtering used across all new views: <code>tribe_get_venue_object_before</code>, <code>tribe_get_venue_object</code></li>\n<li>Tweak &#8211; Custom Before and After HTML on the Events &gt; Settings page will now prefer event view styling over the Theme&#8217;s CSS.</li>\n<li>Tweak &#8211; Lowered the reliance on the global <code>$wp_query</code> to create more consistent output and faster maintenance. <a href=\"https://evnt.is/1aic\" rel=\"nofollow ugc\">See More</a></li>\n<li>Tweak &#8211; View overrides for the new views will look within a new folder in your theme to avoid conflicting with old The Events Calendar theme customizations <a href=\"https://evnt.is/1aia\" rel=\"nofollow ugc\">See More</a></li>\n<li>Tweak &#8211; Switch to a compact date while on day and month view in mobile [136789]</li>\n<li>Tweak &#8211; Remove <code>tribe_events_getLink</code> in favor of <code>tribe_events_get_link</code> which was a deprecated filter since version 4.3</li>\n<li>Hooks &#8211; View template include and render filters and actions: <code>tribe_template_before_include</code>, <code>tribe_template_before_include:{$template_path}</code>, <code>tribe_template_after_include</code>, <code>tribe_template_after_include:{$template_path}</code>, <code>tribe_template_html</code>, <code>tribe_template_html:{$template_path}</code></li>\n<li>Hooks &#8211; View instance filters and actions: <code>tribe_events_views_v2_view_template</code>, <code>tribe_events_views_v2_{$view_slug}_view_template</code>, <code>tribe_events_views_v2_view_context</code>, <code>tribe_events_views_v2_{$view_slug}_view_context</code>, <code>tribe_events_views_v2_view_repository</code>, <code>tribe_events_views_v2_{$view_slug}_view_repository</code>, <code>tribe_events_views_v2_view_url_query_args</code>, <code>tribe_events_views_v2_{$view_slug}_view_url_query_args</code>, <code>tribe_events_views_v2_view_html_classes</code>, <code>tribe_events_views_v2_{$view_slug}_view_html_classes</code>, <code>tribe_events_views_v2_url_query_args</code>, <code>tribe_events_views_v2_view_template_vars</code>, <code>tribe_events_views_v2_view_{$view_slug}_template_vars</code>, <code>tribe_events_views_v2_view_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_url</code>, <code>tribe_events_views_v2_view_prev_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_prev_url</code>, <code>tribe_events_views_v2_view_next_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_next_url</code>, <code>tribe_events_views_v2_view_repository_args</code>, <code>tribe_events_views_v2_view_link_label_format</code>, <code>tribe_events_views_v2_view_{$view_slug}_link_label_format</code>, <code>tribe_events_views_v2_view_title</code>, <code>tribe_events_views_v2_view_{$view_slug}_title</code>, <code>tribe_events_views_v2_view_messages</code>, <code>tribe_events_views_v2_view_{$view_slug}_messages</code>, <code>tribe_events_views_v2_view_breadcrumbs</code>, <code>tribe_events_views_v2_view_{$view_slug}_breadcrumbs</code>, <code>tribe_events_views_v2_view_display_events_bar</code>, <code>tribe_events_views_v2_view_{$view_slug}_display_events_bar</code>, <code>tribe_events_views_v2_view_ical_data</code>, <code>tribe_events_views_v2_view_{$view_slug}_ical_data</code>, <code>tribe_events_views_v2_view_show_datepicker_submit</code>, <code>tribe_events_views_v2_view_{$view_slug}_show_datepicker_submit</code>, <code>tribe_events_views_v2_view_public_views</code>, <code>tribe_events_views_v2_view_{$view_slug}_public_views</code>, <code>tribe_events_views_v2_view_data</code>, <code>tribe_events_views_v2_{$view_slug}_view_data</code>, <code>tribe_events_views_v2_{$view_slug}_events_per_day</code>, <code>tribe_events_views_v2_month_events_per_day</code>, <code>tribe_events_views_v2_month_nav_skip_empty</code>, <code>tribe_events_views_v2_view_breakpoints</code>, <code>tribe_events_views_v2_view_{$view_slug}_breakpoints</code>, <code>tribe_events_views_v2_before_make_view</code>, <code>tribe_events_views_v2_after_make_view</code>, <code>tribe_events_views_v2_messages_map</code>, <code>tribe_events_views_v2_view_messages_before_render</code></li>\n<li>Hooks &#8211; View REST API HTML request actions and filters: <code>tribe_events_views_v2_request_arguments</code>, <code>tribe_events_views_v2_rest_endpoint_available</code>, <code>tribe_events_views_v2_rest_params</code>, <code>tribe_events_views_v2_{$view_slug}_rest_params</code></li>\n<li>Hooks &#8211; Views Bootstrap filters and actions: <code>tribe_events_views_v2_bootstrap_pre_get_view_html</code>, <code>tribe_events_views_v2_bootstrap_should_display_single</code>, <code>tribe_events_views_v2_bootstrap_view_slug</code>, <code>tribe_events_views_v2_bootstrap_pre_should_load</code>, <code>tribe_events_views_v2_should_hijack_page_template</code></li>\n<li>Hooks &#8211; Views Manager filters and actions: <code>tribe_events_views</code>, <code>tribe_events_views_v2_manager_default_view</code>, <code>tribe_events_views_v2_manager_view_label_domain</code>, <code>tribe_events_views_v2_manager_{$view_slug}_view_label_domain</code>, <code>tribe_events_views_v2_manager_view_label</code>, <code>tribe_events_views_v2_manager_{$view_slug}_view_label</code></li>\n<li>Hooks &#8211; Other views filters and actions: <code>tribe_events_views_v2_is_enabled</code>, <code>tribe_events_views_v2_assets_should_enqueue_frontend</code>, <code>tribe_events_views_v2_assets_should_enqueue_full_styles</code>, <code>tribe_events_v2_view_title</code>, <code>tribe_events_views_v2_should_replace_excerpt_more_link</code>, <code>tribe_events_views_v2_view_before_events_html</code>, <code>tribe_events_views_v2_view_after_events_html</code>, <code>tribe_events_views_v2_month_title</code>, <code>tribe_events_views_v2_day_title</code>, <code>tribe_events_views_v2_category_title</code>, <code>tribe_events_views_v2_theme_compatibility_registered</code>, <code>tribe_events_views_v2_stack_spacer</code>, <code>tribe_events_views_v2_stack_recycle_spaces</code>, <code>tribe_events_views_v2_stack_events</code>, <code>tribe_events_views_v2_stack_filter_event</code>, <code>tribe_events_views_v2_stack_normalize</code></li>\n<li>Templates &#8211; Views refactored template files: <code>v2/base</code>, <code>v2/components/after</code>, <code>v2/components/before</code>, <code>v2/components/breadcrumbs</code>, <code>v2/components/breadcrumbs/breadcrumb</code>, <code>v2/components/breadcrumbs/linked-breadcrumb</code>, <code>v2/components/breakpoints</code>, <code>v2/components/data</code>, <code>v2/components/events-bar</code>, <code>v2/components/events-bar/filters</code>, <code>v2/components/events-bar/search-button</code>, <code>v2/components/events-bar/search-button/icon</code>, <code>v2/components/events-bar/search</code>, <code>v2/components/events-bar/search/keyword</code>, <code>v2/components/events-bar/search/submit</code>, <code>v2/components/events-bar/tabs</code>, <code>v2/components/events-bar/views</code>, <code>v2/components/events-bar/views/list</code>, <code>v2/components/events-bar/views/list/item</code>, <code>v2/components/filter-bar</code>, <code>v2/components/ical-link</code>, <code>v2/components/loader</code>, <code>v2/components/messages</code>, <code>v2/components/read-more</code>, <code>v2/components/top-bar/actions</code>, <code>v2/components/top-bar/actions/content</code>, <code>v2/components/top-bar/datepicker/submit</code>, <code>v2/components/top-bar/nav</code>, <code>v2/components/top-bar/nav/next-disabled</code>, <code>v2/components/top-bar/nav/next</code>, <code>v2/components/top-bar/nav/prev-disabled</code>, <code>v2/components/top-bar/nav/prev</code>, <code>v2/components/top-bar/today</code>, <code>v2/day</code>, <code>v2/day/event</code>, <code>v2/day/event/cost</code>, <code>v2/day/event/date</code>, <code>v2/day/event/date/meta</code>, <code>v2/day/event/description</code>, <code>v2/day/event/featured-image</code>, <code>v2/day/event/title</code>, <code>v2/day/event/venue</code>, <code>v2/day/nav</code>, <code>v2/day/nav/next-disabled</code>, <code>v2/day/nav/next</code>, <code>v2/day/nav/prev-disabled</code>, <code>v2/day/nav/prev</code>, <code>v2/day/time-separator</code>, <code>v2/day/top-bar</code>, <code>v2/day/top-bar/datepicker</code>, <code>v2/day/type-separator</code>, <code>v2/index</code>, <code>v2/list</code>, <code>v2/list/event</code>, <code>v2/list/event/cost</code>, <code>v2/list/event/date-tag</code>, <code>v2/list/event/date</code>, <code>v2/list/event/date/meta</code>, <code>v2/list/event/description</code>, <code>v2/list/event/featured-image</code>, <code>v2/list/event/title</code>, <code>v2/list/event/venue</code>, <code>v2/list/month-separator</code>, <code>v2/list/nav</code>, <code>v2/list/nav/next-disabled</code>, <code>v2/list/nav/next</code>, <code>v2/list/nav/prev-disabled</code>, <code>v2/list/nav/prev</code>, <code>v2/list/nav/today</code>, <code>v2/list/top-bar</code>, <code>v2/list/top-bar/datepicker</code>, <code>v2/month</code>, <code>v2/month/calendar-body</code>, <code>v2/month/calendar-body/day</code>, <code>v2/month/calendar-body/day/calendar-events</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/date</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/date/meta</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/featured-image</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/title</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/cost</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/date</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/date/meta</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/description</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/featured-image</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/title</code>, <code>v2/month/calendar-body/day/more-events</code>, <code>v2/month/calendar-body/day/multiday-events</code>, <code>v2/month/calendar-body/day/multiday-events/multiday-event-spacer</code>, <code>v2/month/calendar-body/day/multiday-events/multiday-event</code>, <code>v2/month/calendar-header</code>, <code>v2/month/mobile-events</code>, <code>v2/month/mobile-events/mobile-day</code>, <code>v2/month/mobile-events/mobile-day/day-marker</code>, <code>v2/month/mobile-events/mobile-day/mobile-event</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/cost</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/date</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/date/meta</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/featured-image</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/title</code>, <code>v2/month/mobile-events/mobile-day/more-events</code>, <code>v2/month/mobile-events/nav</code>, <code>v2/month/mobile-events/nav/next-disabled</code>, <code>v2/month/mobile-events/nav/next</code>, <code>v2/month/mobile-events/nav/prev-disabled</code>, <code>v2/month/mobile-events/nav/prev</code>, <code>v2/month/mobile-events/nav/today</code>, <code>v2/month/top-bar</code>, <code>v2/month/top-bar/datepicker</code>, <code>v2/not-found</code></li>\n<li>Language &#8211; 2 new strings added, 169 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.14] 2020-01-15</h4>\n<ul>\n<li>Feature &#8211; Add Repository filter <code>where_meta_related_by_meta</code> for getting a post by the meta value an associated post. [133333]</li>\n<li>Tweak &#8211; Modifications to the Freemius code initialization to allow better data around plugin uninstalls.</li>\n<li>Tweak &#8211; Adjust tooltip title styles for Twenty Twenty theme. [TEC-2998]</li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-venue</code></li>\n<li>Fix &#8211; Cost field description no longer disappears when editing the block. [TEC-2992]</li>\n<li>Fix &#8211; Organizer theme no longer getting overwritten by Blocks editor styles. [TEC-2974]</li>\n<li>Fix &#8211; Venue block properly receives the correct HTML class. [TEC-3020]</li>\n<li>Fix &#8211; Correct missing block when switching from blocks to classic editor. [131493]</li>\n</ul>\n<h4>[4.9.13] 2019-12-10</h4>\n<ul>\n<li>Tweak &#8211; Allow Event Aggregator date refinements for Eventbrite source.</li>\n<li>Language &#8211; 29 new strings added, 201 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.12] 2019-11-20</h4>\n<ul>\n<li>Fix &#8211; Blocks Editor date time saving correctly for WordPress 5.3 compatibility. [137421]</li>\n<li>Tweak &#8211; Add the <code>tribe_get_query_var</code> function [137262]</li>\n<li>Tweak &#8211; Add <code>tribe_get_the_content()</code> and <code>tribe_the_content()</code> for PHP 7.2 compatibility with WordPress 5.2</li>\n<li>Language &#8211; 21 new strings added, 162 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.11] 2019-11-12</h4>\n<ul>\n<li>Feature &#8211; Opt-in to the newly redesigned views</li>\n<li>Fix &#8211; Fixed issue where DD/MM/YYYY style dates were not supported during Event Aggregator imports [117691]</li>\n<li>Fix &#8211; Resolved issue where non YYYY-MM-DD datepicker formats resulted in unpredictable behavior while navigating views [116086, 126472, 117909]</li>\n<li>Fix &#8211; Fixed date issue where the event date was defaulting to current date when editing an event with the block editor [132735]</li>\n<li>Tweak &#8211; Added additional datepicker formats for simpler selection [116086, 126472, 117909]</li>\n<li>Tweak &#8211; Updated the Repository implementation to handle more complex <code>orderby</code> constructs [133303]</li>\n<li>Tweak &#8211; Added the <code>Tribe__Date_Utils::get_week_start_end</code> method [133303]</li>\n<li>Tweak &#8211; added the <code>tribe_events_suppress_query_filters</code> filter to allow suppressing <code>Tribe__Events__Query</code> filters [134827]</li>\n<li>Language &#8211; 5 new strings added, 23 updated, 2 fuzzied, and 13 obsoleted</li>\n</ul>\n<h4>[4.9.10] 2019-10-16</h4>\n<ul>\n<li>Tweak &#8211; added the <code>tribe_sanitize_deep</code> function to sanitize and validate input values [134427]</li>\n<li>Tweak &#8211; use the <code>tribe_sanitize_deep</code> function to sanitize the values returned by the <code>tribe_get_request_var</code> function [134427]</li>\n<li>Tweak &#8211; Rename &#8220;Datepicker Date Format&#8221; to &#8220;Compact Date Format&#8221; [134526]</li>\n<li>Tweak &#8211; Adjust Promoter loading order to increase compatibility with plugins that use authentication early in the process [134862]</li>\n<li>Tweak &#8211; Add support for Authentication using a Header when using Promoter [133922]</li>\n<li>Language &#8211; 2 new strings added, 25 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.9.9] 2019-09-25</h4>\n<ul>\n<li>Fix &#8211; Set the start date with the current day for the &#8220;All&#8221; events page for recurring events. Thanks Andy, leapness and others for flagging this! [130350]</li>\n<li>Tweak &#8211; Updated Freemius integration code [133148]</li>\n<li>Tweak &#8211; Conform iCalendar feed to specifications by not putting quotes around the timezone ID. This fixes some custom parsers [133626]</li>\n<li>Language &#8211; 0 new strings added, 16 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.9.8] 2019-09-04</h4>\n<ul>\n<li>Tweak &#8211; Added the Monolog logging library as alternative logging backend [120785]</li>\n<li>Tweak &#8211; Hook Monolog logger on <code>tribe_log</code> action [120785]</li>\n<li>Tweak &#8211; Add redirection of <code>tribe( \'logger\' )-&gt;log()</code> calls to the Monolog logger using the <code>tribe_log_use_action_logger</code> filter [120785]</li>\n<li>Fix &#8211; Conform iCalendar feed to specifications by not putting quotes around the timezone. This fixes Outlook compatibility [131791]</li>\n<li>Fix &#8211; Additional fields with multiple values using pipes <code>|</code> as separators are working properly on importing again. [131510]</li>\n<li>Fix &#8211; Fix default view redirection loop on mobile devices. Thanks Ricardo, cittaslow and others for flagging this! [125567]</li>\n<li>Fix &#8211; Handling of featured image setting during Event Aggregator CSV imports [127132]</li>\n<li>Language &#8211; 1 new strings added, 10 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.7] 2019-08-19</h4>\n<ul>\n<li>Tweak &#8211; Update Lodash version on Block editor to prevent any possibility of a security issue with the package. From v4.17.11 to v4.17.15 [131421]</li>\n<li>Tweak &#8211; Add filter &#8216;tribe_events_js_config&#8217; to allow filtering the contents of the Javascript configuration [132567]</li>\n<li>Tweak &#8211; Updates to the shortcode Javascript code to allow disabling the URL manipulation behavior [132567]</li>\n<li>Fix &#8211; Prevent mascot image to get blown up out of proportions to a larger size on buggy CSS loading. [131910]</li>\n<li>Language &#8211; 3 new strings added, 191 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.6] 2019-08-07</h4>\n<ul>\n<li>Tweak &#8211; Update Event Aggregator to include compatibility with new Meetup API requirements &#8211; <a href=\"https://evnt.is/1afb\" rel=\"nofollow ugc\">See more</a> [125635]</li>\n<li>Language &#8211; 5 new strings added, 120 updated, 5 fuzzied, and 10 obsoleted</li>\n</ul>\n<h4>[4.9.5] 2019-07-25</h4>\n<ul>\n<li>Tweak &#8211; Update redirection URLs for Freemius actions [130281]</li>\n<li>Fix &#8211; Location filtering for Context class moved out of construct, resolving lots of navigation problems across The Events Calendar [130754]</li>\n<li>Fix &#8211; Featured event AJAX and browser navigation working as expected for all use cases. [127272]</li>\n<li>Fix &#8211; Shortcode properly handling featured param on AJAX requests. [114002]</li>\n<li>Fix &#8211; Remove removing wpautop for gutenberg blocks to fix spacing when content comes from classic editor. [122801]</li>\n<li>Language &#8211; 4 new strings added, 16 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.4] 2019-07-03</h4>\n<ul>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_insert_args</code> the arguments in prior to inserting the event and meta fields. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_update_args</code> the arguments prior the update of an event and meta fields. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_prevent_update</code> to disable the update for an event via the Tribe API [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_archive_get_args</code> to filter the arguments used to get the events on the archive page via REST API. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_validator_is_event_id</code> to define if is a valid event_id [129517]</li>\n<li>Tweak &#8211; Add action <code>tribe_rest_before_event_data</code> executed before the Event data is pulled before deliver the Event via REST API. [129517]</li>\n<li>Tweak &#8211; Add <code>Tribe__Events__Query::last_found_events()</code> to access the last results via the <code>Query</code> object [129517]</li>\n<li>Tweak &#8211; Wrap <code>register_rest_route</code> calls with <code>tribe_register_rest_route</code> to enable filtering on REST registration</li>\n<li>Tweak &#8211; Add filter <code>tribe_ical_feed_vtimezone</code> to filter the <code>VTIMEZONE</code> group [89999]</li>\n<li>Tweak &#8211; Include proper documentation of why the plugin has been deactivated and a knowledgebase article about how to downgrade [129726]</li>\n<li>Tweak &#8211; When trying to update The Events Calendar with an incompatible version of an Addon that is expired, it will stop the upgrade [129727]</li>\n<li>Tweak &#8211; Add filter <code>tribe_is_classic_editor_plugin_active</code> to change the output if the classic editor is active or not [121267]</li>\n<li>Tweak &#8211; Create a new key if <code>AUTH_KEY</code> is not defined or is empty and add a new filter <code>tribe_promoter_secret_key</code> to filter the result [127183]</li>\n<li>Tweak &#8211; Divide the <code>tribe-common.js</code> file to prevent that file from being bloated with external dependencies. [129526]</li>\n<li>Tweak &#8211; Make sure <code>UTC-0</code> is converted back to <code>UTC</code> instead of <code>UTC-01</code> [129240]</li>\n<li>Tweak &#8211; Add new function <code>tribe_register_rest_route</code> Wrapper around <code>register_rest_route</code> to filter the arguments when a new REST endpoint is created [129517]</li>\n<li>Tweak &#8211; Add new method <code>Tribe__Cost_Utils::parse_separators</code> to infer decimal and thousands separators from a value that might have been formatted in a local different from the current one [98061]</li>\n<li>Fix &#8211; Save of event meta data when Classic editor plugin and gutenberg blocks for events are enabled [121267]</li>\n<li>Fix &#8211; Moved The Events Calendar specific code from common Context class into The Events Calendar [129241]</li>\n<li>Fix &#8211; Fixed issue where multiday events were not returning correct end date in block editor [128033]</li>\n<li>Fix &#8211; Resolved issue where deactivation feedback was not hooked properly [128341]</li>\n<li>Fix &#8211; Added escaping to the event website URL target attribute [129565]</li>\n<li>Fix &#8211; Fix Timezone definitions for <code>*.ics</code> file on events [89999]</li>\n<li>Fix &#8211; Resolved an issue where non-English decimal and thousands event cost separators could lead to wrong cost values in REST API responses [98061]</li>\n<li>Fix &#8211; Prevent Clipboard Javascript from loading all over the place on <code>/wp-admin/</code> [129526]</li>\n<li>Fix &#8211; PHP 5.6 compatibility for <code>trait Cache_User</code> by using WP action <code>shutdown</code> instead of <code>__destruct</code> on our <code>WP_Rewrite</code> [129860]</li>\n<li>Language &#8211; 14 new strings added, 222 updated, 1 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[4.9.3.2] 2019-06-20</h4>\n<ul>\n<li>Fix &#8211; Prevent issue where older versions of the tribe-common libraries could be bootstrapped [129478]</li>\n<li>Fix &#8211; Add Promoter PCSS file so that the proper CSS will be generated on package build [129584]</li>\n</ul>\n<h4>[4.9.3.1] 2019-06-07</h4>\n<ul>\n<li>Fix &#8211; Remove caching of rewrite base slugs which make third-party, Photo and Week work as expected [129035]</li>\n<li>Tweak &#8211; Adjust newsletter signup submission destination [129034]</li>\n</ul>\n<h4>[4.9.3] 2019-06-06</h4>\n<ul>\n<li>Fix &#8211; Fixed issue where the previous events link was not present on initial page load of the List View [127477]</li>\n<li>Language &#8211; 10 new strings added, 18 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.2] 2019-05-16</h4>\n<ul>\n<li>Tweak &#8211; In the Event Repository class: filter the event creation meta before checking it for coherency</li>\n<li>Tweak &#8211; Reduced file size by removing .po files and directing anyone creating or editing local translations to translate.wordpress.org</li>\n<li>Fix &#8211; Fix event bar issue where it was required to pick the date in order to search events via keyword or location [126158]</li>\n<li>Fix &#8211; Make back-compatibility handling more robust when dealing with classes non-existing in the older plugin versions [127173]</li>\n</ul>\n<h4>[4.9.1.1] 2019-05-06</h4>\n<ul>\n<li>Fix &#8211; Prevent Composer autoloader from throwing Fatal due to nonexistent <code>setClassMapAuthoritative()</code> method [126590]</li>\n</ul>\n<h4>[4.9.1] 2019-05-02</h4>\n<ul>\n<li>Fix &#8211; Prevent recurring events all page to throw 404 when events are in the past [126790]</li>\n<li>Fix &#8211; Backwards compatibility for <code>eventDisplay</code> usage around <code>list</code> and <code>day</code> only showing upcoming events [126686]</li>\n<li>Fix &#8211; List events Widget will display events until their end date has passed [126837]</li>\n<li>Tweak &#8211; Add values for the JSON-LD object to avoid Google console errors. Fields added: <code>offers.availability</code>, <code>offers.category</code>, <code>offers.priceCurrency</code>, <code>offers.validFrom</code> and <code>performer</code> [120193]</li>\n<li>Tweak &#8211; Add <code>tribe_events_cost_unformatted</code> filter to allow WPML support for WooCommerce Multilingual</li>\n<li>Language &#8211; 0 new strings added, 168 updated, 0 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[4.9.0.3] 2019-04-26</h4>\n<ul>\n<li>Fix &#8211; Prevent Composer autoloader from throwing Fatal due to nonexistent <code>setClassMapAuthoritative()</code> method [126590]</li>\n</ul>\n<h4>[4.9.0.2] 2019-04-25</h4>\n<ul>\n<li>Fix &#8211; Avoid fatals due to Query method not been present by bumping version of Event Tickets required to 4.10.4.2</li>\n</ul>\n<h4>[4.9.0.1] 2019-04-25</h4>\n<ul>\n<li>Fix &#8211; Modifications to <code>tribe_get_events()</code> to resolve problems introduced by latest release <code>4.9.0</code></li>\n<li>Fix &#8211; Backwards compatibility for <code>\'eventDisplay\' =&gt; \'upcoming\'</code> on <code>tribe_get_events()</code>. Thanks @softwebteam, @mrwweb and @karks88 [126124]</li>\n<li>Fix &#8211; Single navigation to next and previous events using the Object Relational Mapping classes [126144]</li>\n<li>Fix &#8211; Events displayed correctly on all views, using End date instead of Start Date. Making sure events that are not over still show on upcoming [126259]</li>\n</ul>\n<h4>[4.9.0] 2019-04-17</h4>\n<ul>\n<li>Feature &#8211; Refactor the Database Connection to start using an Object Relational Mapping tool for a better tested codebase</li>\n<li>Feature &#8211; Add the <code>tribe_events()</code> function as entry-point to the Events ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add the <code>tribe_venues()</code> function as entry-point to the Venues ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add the <code>tribe_organizers()</code> function as entry-point to the Organizers ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add additional caching to The Events Calendar REST API archives and the Post Repository event/venue/organizer responses [117159]</li>\n<li>Feature &#8211; Include Freemius integration on to allow opt-in information collection for 10% of new users</li>\n<li>Tweak &#8211; Setting the site of Timezones will trigger queries using UTC to equalize event dates on Views</li>\n<li>Tweak &#8211; Add filter to allow deactivating Freemius <code>tribe_events_integrations_should_load_freemius</code></li>\n<li>Tweak &#8211; Include a way for third-party to handle Known Range rebuilding of events <code>tribe_events_rebuild_known_range</code></li>\n<li>Tweak &#8211; All new granular handling for UTC and Timezone saving on the Classic editor</li>\n<li>Tweak &#8211; Add support for the <code>tribe_suppress_query_filters</code> query variable to prevent the plugin&#8217;s own query filters from applying [116356, 115579]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_has_next_args</code> and <code>tribe_events_has_previous_args</code> filters to allow filtering the arguments that check if next/previous archive pages or events are available [123950]</li>\n<li>Fix &#8211; Include second param for the <code>the_title</code> for Events, Venue and Organizer Rest API endpoints amd prevent warnings. Props to Alex [123317]</li>\n<li>Language &#8211; 5 new strings added, 167 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.8.2] 2019-03-04</h4>\n<ul>\n<li>Fix &#8211; Resolve console warnings around React key usage for Blocks Editor [121198]</li>\n<li>Fix &#8211; Improve our <code>tribe_paged</code> URL parameter sanitization, preventing themes from printing the variable and causing XSS security issues [123616]</li>\n<li>Fix &#8211; Change ordering for Eventbrite Tickets on Event Aggregator, Ascending order by date is now the default [121979]</li>\n<li>Tweak &#8211; Day light savings notice will now reset 4 times per year when using any UTC Timezone [123221]</li>\n<li>Tweak &#8211; Start date for Event Aggregator is now required on Eventbrite Tickets [121979]</li>\n<li>Language &#8211; 3 new strings added, 172 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.8.1] 2019-02-14</h4>\n<ul>\n<li>Feature &#8211; Introduced new &#8220;(do not override)&#8221; default post status for Eventbrite imports in Event Aggregator. This preserves events&#8217; original statuses from Eventbrite.com upon import (e.g., &#8220;draft&#8221; events will not be automatically set to &#8220;publish&#8221; upon import) [112346]</li>\n<li>Fix &#8211; Make sure the setting for &#8220;Default mobile view&#8221; is respected. Thanks to Kathleen, Tim and others for reporting this! [119271]</li>\n<li>Fix &#8211; Apply block closer to price block [120108]</li>\n<li>Tweak &#8211; Added new filter <code>tribe_aggregator_new_event_post_status_before_import</code> to allow for custom handling of an event&#8217;s post status before EA an import is completed [112648]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_admin_js_ajax_url_data</code></li>\n<li>Tweak &#8211; Unload Image Widget Plus version 1.0.2 or older to Prevent it from creating fatals on The Events Calendar</li>\n<li>Language &#8211; 2 new strings added, 150 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.8] 2019-02-04</h4>\n<ul>\n<li>Feature &#8211; Introduced new &#8220;(do not override)&#8221; default post status for Eventbrite imports in Event Aggregator. This preserves events&#8217; original statuses from Eventbrite.com upon import (e.g., &#8220;draft&#8221; events will not be automatically set to &#8220;publish&#8221; upon import) [112346]</li>\n<li>Fix &#8211; Make sure the setting for &#8220;Default mobile view&#8221; is respected. Thanks to Kathleen, Tim and others for reporting this! [119271]</li>\n<li>Fix &#8211; Apply block closer to price block [120108]</li>\n<li>Tweak &#8211; Added new filter <code>tribe_aggregator_new_event_post_status_before_import</code> to allow for custom handling of an event&#8217;s post status before EA an import is completed [112648]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_admin_js_ajax_url_data</code></li>\n<li>Tweak &#8211; Unload Image Widget Plus version 1.0.2 or older to Prevent it from creating fatals on The Events Calendar</li>\n<li>Language &#8211; 2 new strings added, 150 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.8.0.1] 2019-02-07</h4>\n<ul>\n<li>Fix &#8211; Modify extension dependency checking with new system to determine if it can load [122368]</li>\n<li>Tweak &#8211; Prevent most extensions from loading if Event Tickets is on an older version to prevent conflicts [122368]</li>\n</ul>\n<h4>[4.8] 2019-02-05</h4>\n<ul>\n<li>Feature &#8211; Add check and enforce PHP 5.6 as the minimum version [116282]</li>\n<li>Feature &#8211; Add system to check plugin versions to inform you to update and prevent site breaking errors [116841]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_not_php_version_names</code></li>\n<li>Deprecated &#8211; Constants MIN_ET_VERSION and MIN_COMMON_VERSION in Tribe__Events__Main, use $min_et_version property and no replacement for MIN_COMMON_VERSION</li>\n<li>Deprecated &#8211; The <code>is_delayed_activation()</code>, <code>maybe_delay_activation_if_outdated_common()</code>, and <code>checkAddOnCompatibility()</code> method has been deprecated in <code>Tribe__Events__Main</code> in favor of new Dependency Checking System</li>\n<li>Language &#8211; 7 new strings added, 139 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.7.4] 2019-01-21</h4>\n<ul>\n<li>Fix &#8211; Display the tags block delimiter in the editor [119393]</li>\n<li>Fix &#8211; Fixed a number of small layout bugs with the new Twenty Nineteen core theme [119689]</li>\n<li>Fix &#8211; Save the &#8220;Event Options&#8221; when using the block editor [120168]</li>\n<li>Fix &#8211; Filter correctly when in Classic Editor page [120137]</li>\n<li>Fix &#8211; Give the ability to switch back from all day events in date time block [120266]</li>\n<li>Fix &#8211; Properly align the search or create results [120460]</li>\n<li>Fix &#8211; iCal export content for events created with the block editor [118679]</li>\n<li>Fix &#8211; Moved the &#8220;Remove venue&#8221; button for a better user experience when removing venues from an event [120267]</li>\n<li>Fix &#8211; Date/time block conflicts when clicking to open the block options [119413]</li>\n<li>Fix &#8211; Layout bugs with the new Twenty Nineteen core theme [119689]</li>\n<li>Fix &#8211; Include UTC dates meta on the event creation from the block editor [120399]</li>\n<li>Tweak &#8211; Ensure we don&#8217;t re-apply <code>wpautop()</code> to content that has had it removed [120562]</li>\n<li>Tweak &#8211; Added <code>tribe_events_admin_js_ajax_url_data</code> filter to make filtering the JS vars of TEC&#8217;s admin JS easier [116973]</li>\n<li>Tweak &#8211; Adjusted content in the admin welcome page that users are brought to upon newly activating The Events Calendar [117795]</li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-tags</code></li>\n<li>Language &#8211; 3 new strings added, 21 updated, 1 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[4.7.3] 2018-12-19</h4>\n<ul>\n<li>Tweak &#8211; Tweak the registration of the Event, Venue, and Organizer post types so they use some new post type labels introduced in WordPress 5.0 like <code>item_updated</code>, <code>item_scheduled</code>, etc. [119451]</li>\n<li>Fix &#8211; Password protected events breaking the month view. Thanks to Lindsay, Simon and others for flagging this out! [117385]</li>\n<li>Fix &#8211; Add proper capitalization for Event Price for Blocks Editor [119140]</li>\n<li>Fix &#8211; Make sure Datetime Format for Datepickers are respected on the Blocks Editor [117428]</li>\n<li>Fix &#8211; Correct text domain and remove old <code>events-gutenberg</code> [118656]</li>\n<li>Fix &#8211; Properly display recurrence description on Blocks Editor view [119354]</li>\n<li>Fix &#8211; Point support links to the correct places [117795]</li>\n<li>Language &#8211; 27 new strings added, 106 updated, 0 fuzzied, and 13 obsoleted</li>\n</ul>\n<h4>[4.7.2] 2018-12-13</h4>\n<ul>\n<li>Feature &#8211; Added new action <code>tribe_events_before_event_template_data_date_display</code> and <code>tribe_events_after_event_template_data_date_display</code></li>\n<li>Tweak &#8211; Corrected font on time picker components in Event Date Time block [116907]</li>\n<li>Tweak &#8211; Adjusted padding on the Event Date Time block [118697]</li>\n<li>Tweak &#8211; Set default start time to 8:00am and default end time to 5:00pm in Event Date Time block [118112]</li>\n<li>Fix &#8211; Corrected an issue where feature detection of async-process support would fire too many requests [118876]</li>\n<li>Fix &#8211; Removed tribe_events_template_data()&#8217;s dependency on Events Calendar PRO, which could lead to a fatal error under some conditions [119263]</li>\n<li>Fix &#8211; Made the Event Date Time block respect the timezone settings [118682]</li>\n<li>Fix &#8211; Removed Price block dashboard gap [118683]</li>\n<li>Fix &#8211; Made sure all block editor code for Meta saving is PHP 5.2 compatible</li>\n<li>Fix &#8211; Prevented <code>undefined</code> from been displayed at the Event Date Time separator fields [119337]</li>\n<li>Fix &#8211; Solved 500 error when trying to update an event [118058]s</li>\n</ul>\n<h4>[4.7.1] 2018-12-05</h4>\n<ul>\n<li>Feature &#8211; Added additional caching to TEC REST API archives and the Post Repository event/venue/organizer responses [117159]</li>\n<li>Feature &#8211; Added new <code>tribe_events_set_month_view_events_from_cache</code> action to make it easier to listen for when Month View events are retrieved from the Month View cache [116124]</li>\n<li>Fix &#8211; Importing CSV files with whitespace at the beginning of the rows won&#8217;t remove headers and skip columns on Preview [117236]</li>\n<li>Fix &#8211; Prevent JavaScript error in Month View when the Date filter is removed from the Tribe Bar (thank you to @tyrann0us on GitHub for submitting this fix!) [116995]</li>\n<li>Fix &#8211; Facilitate automated updates for Events Calendar PRO even if it&#8217;s requirements have not been met</li>\n</ul>\n<h4>[4.7.0.1] 2018-11-30</h4>\n<ul>\n<li>Fix &#8211; Update common library to maximize compatibility with earlier PHP versions (our thanks to @megabit81 for highlighting this problem) [119073]</li>\n<li>Fix &#8211; Update common library to ensure better compatibility with addons running inside multisite networks [119044]</li>\n<li>Language &#8211; 0 new strings added, 141 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.7] 2018-11-29</h4>\n<ul>\n<li>Feature &#8211; added new setting to activate the block editor on events for users running the WordPress 5.0 beta.</li>\n<li>Feature &#8211; added an Event Date Time block to add and display the event date and time</li>\n<li>Feature &#8211; added an Event Price block to add and display the event price and optional event description</li>\n<li>Feature &#8211; added an Event Organizer block to add and display an organizer on an event single</li>\n<li>Feature &#8211; added an Event Venue block to add and display the event venue information including optional link or map</li>\n<li>Feature &#8211; added an Event Website block to add and display an external website link as a button with custom label</li>\n<li>Feature &#8211; added an Event Sharing block to display event export options and allow for more customization</li>\n<li>Feature &#8211; added an Event Details Classic block to maintain a combined content display as in the classic editor</li>\n<li>Feature &#8211; added a Featured Image block to display an event’s featured image in the editor content</li>\n<li>Feature &#8211; added a Tags block to display an event’s tags in the editor content</li>\n<li>Feature &#8211; added an Event Categories block to display an event’s categories in the editor content</li>\n<li>Feature &#8211; added a new Events Blocks section to the block inserter</li>\n<li>Tweak &#8211; Added filters: <code>tribe_blocks_editor_update_classic_content_params</code>, <code>tribe_blocks_editor_update_classic_content</code>, <code>tribe_events_editor_default_classic_template</code>, <code>tribe_events_editor_default_template</code>, <code>tribe_events_google_maps_api</code>, <code>tribe_events_editor_assets_should_enqueue_frontend</code>, <code>tribe_events_single_map_zoom_level</code>, <code>tribe_events_single_event_time_formatted</code>, <code>tribe_events_single_event_time_title</code>, <code>tribe_events_event_block_datetime_use_yearless_format</code>, <code>tribe_get_event_website_link_target</code>, <code>tribe_events_single_event_time_formatted</code>, <code>tribe_events_single_event_time_title</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_blocks_editor_flag_post_classic_editor</code>, <code>tribe_events_editor_register_blocks</code>, <code>tribe_events_single_event_meta_primary_section_start</code>, <code>tribe_events_single_event_meta_primary_section_end</code>, <code>tribe_events_single_event_meta_secondary_section_start</code>, <code>tribe_events_single_event_meta_secondary_section_end</code>, <code>tribe_events_single_meta_details_section_start</code>, <code>tribe_events_single_meta_details_section_end</code>, <code>tribe_events_single_meta_map_section_start</code>, <code>tribe_events_single_meta_map_section_end</code>, <code>tribe_events_single_meta_organizer_section_start</code>, <code>tribe_events_single_meta_organizer_section_end</code>, <code>tribe_events_single_meta_venue_section_start</code>, <code>tribe_events_single_meta_venue_section_end</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details</code>, <code>blocks/event-category</code>, <code>blocks/event-datetime</code>, <code>blocks/event-links</code>, <code>blocks/event-organizer</code>, <code>blocks/event-price</code>, <code>blocks/event-tags</code>, <code>blocks/event-venue</code>, <code>blocks/event-website</code>, <code>blocks/featured-image</code>, <code>blocks/parts/details</code>, <code>blocks/parts/map</code>, <code>blocks/parts/organizer</code>, <code>blocks/parts/venue</code>, <code>silence</code>, <code>single-event-blocks</code>, <code>single-event</code>, <code>single-event/back-link</code>, <code>single-event/comments</code>, <code>single-event/content</code>, <code>single-event/footer</code>, <code>single-event/notices</code>, <code>single-event/title</code></li>\n<li>Language &#8211; 11 new strings added, 0 updated, 0 fuzzied, and 30 obsoleted</li>\n</ul>\n<h4>[4.6.26.1] 2018-11-21</h4>\n<ul>\n<li>Fix &#8211; Resolved a compatibility issue with WordPress version 4.7.11 and earlier (our thanks to @placer69 and @earthnutvt for flagging this) [118627]</li>\n</ul>\n<h4>[4.6.26] 2018-11-13</h4>\n<ul>\n<li>Fix &#8211; Fixed the setting-up of strings in the Tribe Bar datepicker to ensure they&#8217;re translatable into languages other than English [115286]</li>\n<li>Tweak &#8211; Improved the legibility of text in Featured Events that are in the Event List widget [116702]</li>\n<li>Tweak &#8211; Clarified a number of maps-related settings strings [114865]</li>\n</ul>\n<h4>[4.6.25] 2018-10-22</h4>\n<ul>\n<li>Fix &#8211; List only enabled views on the &#8220;Default View&#8221; option. Thanks to wescole, John Meuse and others for reporting! [114807]</li>\n<li>Fix &#8211; Handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Fix &#8211; Fixed event navigation when the mini calendar widget was on the event page. Props to Matt and wescole for flagging this [114359]</li>\n<li>Fix &#8211; Ensure columns without headers are handled in CSV imports [114199]</li>\n<li>Tweak &#8211; Added notice for the Events Gutenberg extension and eBook download [115543]</li>\n<li>Tweak &#8211; Avoid unnecessary HTTP calls in the Settings screens [114013]</li>\n<li>Tweak &#8211; Show only applicable refinements for the Eventbrite source types in Event Aggregator imports [107009]</li>\n<li>Tweak &#8211; Added <code>tribe_aggregator_resolve_geolocation</code> filter to allow for disabling of Geocoding using the EA service [114171]</li>\n<li>Tweak &#8211; Added <code>tribe_aggregator_clean_unsupported</code> filter to specify whether unsupported origin records should be removed or not</li>\n</ul>\n<h4>[4.6.24.1] 2018-10-08</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where a fatal error could be generated when trying to save a new Event Aggregator scheduled import [115339]</li>\n<li>Fix &#8211; Handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_import_setting_origins</code> filter to the origins available for default import settings [115704]</li>\n</ul>\n<h4>[4.6.24] 2018-10-03</h4>\n<ul>\n<li>Fix &#8211; Prevent broken and low-resolution Google Maps if user has not provided a Google Maps API key of their own by providing our own fallback API key [114442]</li>\n<li>Fix &#8211; Only load widget assets when widget is active on the page [113141]</li>\n<li>Fix &#8211; Ensure that venue, organizer, and meta information doesn&#8217;t show on password-protected events [102643]</li>\n<li>Fix &#8211; Correct the Google Maps API link in the Settings help text to point to the correct API page [112322]</li>\n<li>Fix &#8211; Restores the event categories and tags creation summary in CSV imports [105888]</li>\n<li>Fix &#8211; Updated the Events Gutenberg extension install check to show only when the extension is not active [114577]</li>\n<li>Fix &#8211; Stop potential fatal errors from debug logging when running EA import actions from command line [114555]</li>\n<li>Fix &#8211; Fixed a bug where it was often not possible to un-check the &#8220;Enable JSON-LD&#8221; option in the Events List Widget (thanks to @myrunningresource and @craigwilcox for reporting this!) [113541]</li>\n<li>Fix &#8211; Ensure that the <code>tribe-events-bar-should-show</code> filter functions as aspected; if <code>__return_false</code> is passed, the Tribe Bar will be totally hidden (thanks @debranettles for reporting this!) [112260]</li>\n<li>Fix &#8211; Added checks to prevent JS Type Error in mobile view. Thanks szenenight, agrilife and others for flagging this! [113524]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_month_daily_events</code> filter to the Month view [114041]</li>\n<li>Tweak &#8211; Move Google Maps API loading to tribe_assets and only load once on single views when PRO is active, thanks to info2grow first reporting [112221]</li>\n<li>Tweak &#8211; Accept 0 as an argument in tribe_get_events() so that <code>\'post_parent\' =&gt; 0</code> works, thanks Cy for the detailed report [111518]</li>\n<li>Fix &#8211; handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Tweak &#8211; Added new filters for customizing the fallback Google Maps embeds: <code>tribe_is_using_basic_gmaps_api</code>, <code>tribe_get_basic_gmap_embed_url</code>, and <code>tribe_get_basic_gmap_embed_url_args</code> [114442]</li>\n<li>Tweak &#8211; Fixed the handling of the global $post variable in some Month View templates to make it easier for themers to customize those templates [113283]</li>\n<li>Tweak &#8211; Ensure linked posts are listed alphabetically in metabox dropdowns, as they are in all other admin locations [108120]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_month_daily_events</code> filter to the Month view [114041]</li>\n<li>Tweak &#8211; Move Google Maps API loading to tribe_assets and only load once on single views when PRO is active, thanks to info2grow first reporting [112221]</li>\n<li>Tweak &#8211; Accept 0 as an argument in tribe_get_events() so that <code>\'post_parent\' =&gt; 0</code> works, thanks Cy for the detailed report [111518]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_record_by_origin</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_service_post_import_args</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_import_validate_meta_by_origin</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_refine_keyword_exclusions</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_refine_location_exclusions</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_venue_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_organizer_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_status_third_party</code> action to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_import_form</code> action to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added <code>$origin_show_map_options</code> parameter to the <code>tribe_aggregator_fields</code> filter to allow new EA origins to make use of them [114652]</li>\n<li>Fix &#8211; Fixed an issue where a fatal error could be generated when trying to save a new Event Aggregator scheduled import [115339]</li>\n</ul>\n<h4>[4.6.23] 2018-09-12</h4>\n<ul>\n<li>Fix &#8211; Fixed the &#8220;Full Styles&#8221; mobile view. Thanks Matthew, Laura and others for flagging this! [112301]</li>\n<li>Fix &#8211; Modify resource url function to work in mu-plugin directory, thanks to Doug for reporting it  [86104]</li>\n<li>Fix &#8211; Remove references to and settings for Facebook importing in Event Aggregator [112432]</li>\n<li>Fix &#8211; Ensure Event Aggregator allows for importing events from Eventbrite sites other than eventbrite.com, including but not limited to eventbrite.ca, .co.uk, and .co.nz [107821]</li>\n<li>Fix &#8211; Allow venue location fields to be intentionally empty on Venue Singular REST API calls [108834]</li>\n<li>Tweak &#8211; Add the WordPress Custom Fields Metabox show|hide settings from the Events Calendar Pro [109815]</li>\n<li>Tweak &#8211; Allow changing Event Aggregator import process system between the asynchronous and the cron-based one; previously only available as a filter [113418, 113475]</li>\n<li>Tweak &#8211; Allow stopping and clearing asynchronous queue processes from the admin UI [113418, 113475]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Aggregator__Record__Facebook</code></li>\n</ul>\n<h4>[4.6.22.1] 2018-08-27</h4>\n<ul>\n<li>Fix &#8211; Allow user to choose venues not created by them. Props to @integrity, @nomadadmin, and many others for reporting this! [113147]</li>\n</ul>\n<h4>[4.6.22] 2018-08-22</h4>\n<ul>\n<li>Add &#8211; Allow filtering events, in REST API requests, by their post ID with <code>include</code> [94326]</li>\n<li>Add &#8211; Enable future event display to get all events in the future that have not started [70769]</li>\n<li>Add &#8211; Allow filtering events, in REST API requests, by their post ID with <code>include</code> [94326]</li>\n<li>Add &#8211; Enable future event display to get all events in the future that have not started [70769]</li>\n<li>Fix &#8211; Prevent subsequent CSV imports from duplicating events in some instances [102745]</li>\n<li>Fix &#8211; The &#8220;Import events but preserve local changes to event fields&#8221; Event Aggregator change authority setting will now behave as expected [87443]</li>\n<li>Fix &#8211; Multiple fixes regarding linked post types (e.g. Organizers and custom post types) &#8211; props to @natureslens and others for reporting these [105116]:\n<ul>\n<li>Now correctly saves in their drag-and-drop order</li>\n<li>Deprecated the functions added in version 4.6.13 that previously attempted to fix ordering logic but was not done in a backwards-compatible way: <code>get_order_meta_key()</code> and <code>tribe_sanitize_organizers()</code></li>\n<li>We no longer rely on a separate postmeta value dedicated to ordering linked posts (e.g. <code>_EventOrganizerID_Order</code>), and you may want to remove all such values from your database after re-saving any events that have linked posts and their ordering is important</li>\n<li><code>tribe_get_linked_posts_by_post_type()</code> now works as expected, no longer returning zero results in error, nor returning all of the post type&#8217;s posts if there are none linked. The <code>tribe_events_return_all_linked_posts_if_none</code> filter was added, as it is necessary for this fix.</li>\n<li>Editing an existing event no longer loses the linked posts just because they were not part of the submission. Example of the bug in prior versions: If organizers are editable in the wp-admin event edit screen but not on the Community Events &#8220;event edit&#8221; form (via template override or other custom code), all pre-existing organizers were removed in error.</li>\n</ul>\n</li>\n<li>Fix &#8211; Handle the case where Event Aggregator import queues might get stuck when deleting import records [111856]</li>\n<li>Fix &#8211; Only show admin notice when it is a top-level page with the event slug, thanks to MikeNGarrett for the code fix! [111186]</li>\n<li>Fix &#8211; Change template_redirect to an action for some legacy view redirects, thanks barryceelen! [110463]</li>\n<li>Fix &#8211; Correctly import and set Organizers for iCal and ICS files Event Aggregator imports [96059]</li>\n<li>Fix &#8211; Retain category title in month view and month view shortcode, thanks corthoover for the first report [108258]</li>\n<li>Fix &#8211; The &#8220;Import events but preserve local changes to event fields&#8221; Event Aggregator change authority setting will now behave as expected [87443]</li>\n<li>Fix &#8211; Handle the case where Event Aggregator import queues might get stuck when deleting import records [111856]</li>\n<li>Fix &#8211; Prevent subsequent CSV imports from duplicating events in some instances [102745]</li>\n<li>Fix &#8211; Fix the classic header option not working. Thanks @hanemac, David Luyendyk and others for flagging this! [111672]</li>\n<li>Tweak &#8211; Namespace javascript debug function to prevent conflicts causing a function found, thanks to Tom-Mulvey for the fix [110462]</li>\n<li>Tweak &#8211; Add venue name to address string for iCal and gCal export, thanks for the coding from sylviavanos [110464]</li>\n<li>Tweak &#8211;  Drop the order from the query WPML linked query as it is set later in the method, thanks to dgwatkins for the PR [110459]</li>\n<li>Tweak &#8211; Display JS debug messages only if setting is set or through the <code>tribe_events_js_debug</code> filter. Thanks to Rob, @aand and others for flagging this! [82781]</li>\n</ul>\n<h4>[4.6.21] 2018-08-01</h4>\n<ul>\n<li>Add &#8211; Make global $post obj available to tribe_events_get_the_excerpt() with setup_postdata($post) [108043]</li>\n<li>Add &#8211; Added WPML metadata improvements for Organizers and Venue. Thanks to David Garcia Watkins and the entire WPML team for their contribution [106798]</li>\n<li>Fix &#8211; Ensure no console errors are being displayed if there&#8217;s no Google Maps API key present. Thanks Greg for flagging this [95312]</li>\n<li>Fix &#8211; Fixed an issue where saving Event Aggregator scheduled imports with an empty preview would generate PHP notices [110311]</li>\n<li>Fix &#8211; Escape each closing html element in month view tooltip to prevent PHP parser from exposing html, thanks to Karen for a solution [64834]</li>\n<li>Fix &#8211; Sending empty &#8216;categories&#8217; and &#8216;tags&#8217; for the REST API event endpoints when inserting and updating events [109627]</li>\n<li>Fix &#8211; Prevent selection of past dates when setting up Scheduled Other URL Imports in Event Aggregator [111227]</li>\n<li>Tweak &#8211; Manage plugin assets via <code>tribe_assets()</code> [40267]</li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Abstract_Asset in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Abstract_Events_Css in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin_Menu in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin_Ui in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_Calendar in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_Dayview in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_List in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Bootstrap_Datepicker in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Calendar_Script in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Chosen in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Datepicker in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Dialog in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Dynamic in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ecp_Plugins in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Default in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Full in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Skeleton in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Factory in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Jquery_Placeholder in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Jquery_Resize in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__PHP_Date_Formatter in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Settings in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Smoothness in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Tribe_Events_Bar in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Tribe_Select2 in favor of using <code>tribe_asset</code></li>\n</ul>\n<h4>[4.6.20.1] 2018-07-10</h4>\n<ul>\n<li>Fix &#8211; Fix an issue where Event Aggregator imports might get blocked at 1% progress [110258]</li>\n<li>Fix &#8211; Fix the error displayed when navigating the month view via shortcode. Thanks Lam, @ltcalendar, Disk and others for flagging this! [109589]</li>\n</ul>\n<h4>[4.6.20] 2018-07-09</h4>\n<ul>\n<li>Feature &#8211; Add featured event column support for CLI imports [108027]</li>\n<li>Fix &#8211; Display the exact search term in the &#8220;no results&#8221; notice on the events page [106991]</li>\n<li>Fix &#8211; Allow venue and organizer fields to be intentionally empty on Event Singular REST API calls [109482]</li>\n<li>Fix &#8211; Added basic checks to prevent saving obviously-invalid event meta values, such as sending <code>EventStartMinute</code> of <code>60</code> (since it should be 0-59) to <code>tribe_create_event()</code>. This prevents falling back to &#8220;zero&#8221; values (e.g. Unix Epoch) when another value was intended. Thanks to @compton-bob for flagging this via our Help Desk. [109722]</li>\n<li>Fix &#8211; Add Privacy Policy guide for The Events Calendar [108454]</li>\n<li>Tweak &#8211; Added event ID parameter to <code>tribe_events_event_classes</code> filter to make it more useful [64807]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_record_finalized</code> action to allow developers to act before Event Aggregator imports start [109938]</li>\n</ul>\n<h4>[4.6.19] 2018-06-20</h4>\n<ul>\n<li>Feature &#8211; CSV importer now supports a featured event column [72376]</li>\n<li>Add &#8211; Add Eventbrite Icon to Third Party Accounts on the help page [105388]</li>\n<li>Add &#8211; Accessibility repair: new title-bar template for loop views included above the filter bar and content containing the page title in a <code>h1</code> tag.</li>\n<li>Fix &#8211; Accessibility repair: adjust main content container element from <code>div</code> to <code>main</code>.</li>\n<li>Fix &#8211; More robust handling of errors and exceptions during Event Aggregator imports [107929]</li>\n<li>Fix &#8211; Ensure that the &#8220;Export Events&#8221; button is properly displayed in month view when paginating. Thanks to @linpleva, Steven, Will and others for flagging this! [104751]</li>\n<li>Fix &#8211; Month view pagination for datepicker formats: YYYY.MM.DD, MM.DD.YYYY, and DD.MM.YYYY. Thanks @netzwerk, @wdburgdorf, @oliverwick and others for notifying us! [105443]</li>\n<li>Fix &#8211; Resolved customizer inconsistencies with month/week views and full styles [69758]</li>\n<li>Fix &#8211; Check the Events Aggregator license each time the page is accessed [67864]</li>\n<li>Fix &#8211; Improve Event Import message responses from Event Aggregator for certain cases where &#8220;Unknown service message&#8221; would be returned [107606]</li>\n<li>Fix &#8211; Make the date picker respect the &#8220;Start of the week&#8221; Setting. Thanks to @websource, @dsb and others for flagging this! [76320]</li>\n<li>Fix &#8211; Correct the &#8220;View All&#8221; link when using the events month view and plain permalinks. props to Kay and Robert for notifying us [72544]</li>\n<li>Fix &#8211; Keep filter bar date when changing from month to list view, with all datepicker formats. Thanks to Caio for reporting this! [83018]</li>\n<li>Fix &#8211; Correct the pagination in list view when a keyword is being searched. Thanks to @versi, @akr and Mary for reporting this! [94613]</li>\n<li>Fix &#8211; Split linked posts (Organizers and Venues) by ownership, for all users [71349]</li>\n<li>Fix &#8211; The connected status for Eventbrite under Third Party Accounts on the Help page [106868]</li>\n<li>Fix &#8211; Fixed two PHP 5.2 errors on the Events &gt; Help page [108338]</li>\n<li>Fix &#8211; Display the correct Import Settings when Eventbrite Tickets is enabled [106947]</li>\n<li>Tweak &#8211; Modify the default values for the CSV settings if there&#8217;s no EA license [94426]</li>\n<li>Tweak &#8211; Added classes to meta output in Single Event meta templates to facilitate customization [62704]</li>\n<li>Tweak &#8211; Add the <code>tribe_aggregator_async_insert_event</code> filter to allow overriding the Event Aggregator asynchronous event insertion [107929]</li>\n<li>Tweak &#8211; Add the <code>\'tribe_aggregator_async_import_event_task</code> filter to allow overriding the Event Aggregator asynchronous import task [107929]</li>\n<li>Tweak &#8211; Added venue google map link to events in Day view [91610]</li>\n<li>Tweak &#8211; Renamed the Time zone mode option &#8220;Use the local time zones for each event&#8221; to &#8220;Use manual timezones for each event&#8221; (thanks @hikeitbaby for the suggestion) [67148]</li>\n<li>Tweak &#8211; Accessibility repair: heading hierarchy improvements throughout.</li>\n<li>Tweak &#8211; Accessibility repair: make sure all elements have unique <code>id</code> attributes.</li>\n<li>Tweak &#8211; Accessibility repair: remove redundant tab stops on feature image links.</li>\n<li>Tweak &#8211; Accessibility repair: filter bar view selector adjustments.</li>\n<li>Tweak &#8211; Accessibility repair: provide meaningful aria labels for filter bar inputs.</li>\n<li>Tweak &#8211; Accessibility repair: hide Google Map embeds from screen readers.</li>\n<li>Tweak &#8211; Enable only url imports for Eventbrite when that plugin is not active [107415]</li>\n<li>Tweak &#8211; The EB 4.5 migration process to better detect events for migration and insure all fields are migrated [106623]</li>\n<li>Tweak &#8211; Add <code>tribe_events_month_has_events_filtered</code> function and filter to see if there are events on a certain month, with filters (categories, search) [67607]</li>\n<li>Language &#8211; 68 new strings added, 406 updated, 3 fuzzied, and 37 obsoleted</li>\n</ul>\n<h4>[4.6.18] 2018-06-04</h4>\n<ul>\n<li>Add &#8211; Eventbrite to Event Aggregator import origins [61172]</li>\n<li>Add &#8211; Priority attribute to Import Setting fields to be able to customize order of fields [61173]</li>\n<li>Add &#8211; Default category and change authority for Eventbrite Imports [61173]</li>\n<li>Add &#8211; Ability to schedule Eventbrite imports through Event Aggregator [35454]</li>\n<li>Add &#8211; Preview for Eventbrite events in the import screen ordered from farthest future event to closest [70130]</li>\n<li>Add &#8211; Import Eventbrite events using the Other URL import origin [81825]</li>\n<li>Add &#8211; Ability to preview and import multiple Eventbrite events using the Organizer URL [94284]</li>\n<li>Add &#8211; Import from Eventbrite Location Search URL, i.e. https://www.eventbrite.com/d/or&#8211;portland/events/ [94588]</li>\n<li>Tweak &#8211; Move Eventbrite settings from Legacy Import to Settings Import Tab [94388]</li>\n<li>Tweak &#8211; Add Eventbrite imports to the Import History Tab [81826]</li>\n<li>Tweak &#8211; Remove Legacy Imports UI [81829]</li>\n</ul>\n<h4>[4.6.17] 2018-05-29</h4>\n<ul>\n<li>Tweak &#8211; Add tribe_redirected parameter to enable a visitor to select another view after default mobile redirect, thanks to Marcella for notifying us [102743]</li>\n<li>Fix &#8211; Hide any errors generated by servers that don&#8217;t support <code>set_time_limit()</code> (props to @jsww for flagging this!) [64183]</li>\n<li>Fix &#8211; Add a warning when the site Timezone is set to UTC [105217]</li>\n<li>Fix &#8211; An issue with organizers and venues not being attached to events on Eventbrite import  [106869]</li>\n<li>Language &#8211; 4 new strings added, 170 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.16] 2018-05-16</h4>\n<ul>\n<li>Tweak &#8211; Replaced the Aggregator queue processing system to run independently of WP Cron (not for CSV) [105650]</li>\n<li>Fix &#8211; Prevents notices for Events Community when handling State and Province fields [106415]</li>\n</ul>\n<h4>[4.6.15] 2018-05-09</h4>\n<ul>\n<li>Feature &#8211; Added wp-cli command to import events from a source with Event Aggregator. See <code>wp event-aggregator import-from --help</code> to know more [104426]</li>\n<li>Feature &#8211; Added wp-cli command to run scheduled imports with Event Aggregator. See <code>wp event-aggregator run-import --help</code> to know more [104426]</li>\n<li>Fix &#8211; Ensure that organizers can be deleted when an event has multiple organizers [103715]</li>\n<li>Fix &#8211; Fixed a bug where the <code>[tribe_events]</code> Month View pagination would fail when no Tribe Bar was visible and plain permalinks were being used [95720]</li>\n<li>Fix &#8211; Prevent <code>url_to_postid</code> from running when on the main events page to avoid query conflicts [94328]</li>\n<li>Fix &#8211; Prevent 404s and malformed URLs that would sometimes arise when navigating to a past-events view from the &#8220;All&#8221;-events view on a single recurring event [43925]</li>\n<li>Fix &#8211; Make the <code>[tribe_events]</code> shortcode&#8217;s output scroll to top when using the List View to match the non-shortcode List View  [81509]</li>\n<li>Fix &#8211; Ensure that default venue and address values are used throughout various venue-creation forms [63915]</li>\n<li>Tweak &#8211; Honor the return types for <code>tribe_has_next_event</code> and <code>tribe_has_previous_event</code> when the global query is null</li>\n<li>Language &#8211; 28 new strings added, 290 updated, 29 fuzzied, and 7 obsoleted</li>\n</ul>\n<h4>[4.6.14.1] 2018-04-18</h4>\n<ul>\n<li>Fix &#8211; Fixed fatal error that would sometimes arise when The Events Calendar was set to display on the front page</li>\n</ul>\n<h4>[4.6.14] 2018-04-18</h4>\n<ul>\n<li>Fix &#8211; Updated the &#8220;front page&#8221; logic to store the value in the DB instead of &#8220;mocking&#8221; the view via JS [100832]</li>\n<li>Fix &#8211; Fixed the generation of PHP warnings on retrieval of posts if the &#8220;Include events in main blog loop&#8221; option is checked (thanks to Colin Carmichael for reporting this problem) [97667]</li>\n<li>Fix &#8211; Made the <code>tribe-ea-record</code> custom post type (used to store Event Aggregator record information) private [99106]</li>\n<li>Fix &#8211; Expanded the size of the time zone input in the admin to allow for better visibility for long names [100363]</li>\n<li>Fix &#8211; If the main events page is set to be the site&#8217;s front page, ensure it shows as &#8220;selected&#8221; in the Customizer&#8217;s front page option [100832]</li>\n<li>Fix &#8211; Fixed an issue where failed Event Aggregator scheduled imports would re-attempt the import too soon [102489]</li>\n<li>Fix &#8211; Ensure the Tribe Bar displays all the available ranges of dates and times [100646]</li>\n<li>Fix &#8211; Hid the filters in the Tribe Bar if a unique view is enabled [75114]</li>\n<li>Fix &#8211; Fixed some imported-event handling so that events with no time and that aren&#8217;t all-day events do not display on the front-end [93979]</li>\n<li>Fix &#8211; Changed the HTTP status codes of empty event, venue, organizer, category, and tag archives from 404 to 200 and return empty arrays to stick with WP REST API standard [102283]</li>\n<li>Fix &#8211; Better &#8220;guessing&#8221; on column mapping during the import of CSV file (thanks to April in our Help Desk for flagging this problem!) [96162]</li>\n<li>Fix &#8211; Add new <code>tribe_events_linked_post_type_meta_key</code> filter, required to be set for each custom linked post type, to output custom linked post types in their drag-and-drop order (thanks @natureslens for highlighting the issue) [100733]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_find_matching_organizer</code> and <code>tribe_aggregator_find_matching_venue</code> filters in Events Aggregator to allow the definition of custom Venue and Organizer match criteria [97292]</li>\n<li>Tweak &#8211; Display the retry time for a failed Event Aggregator scheduled import in the Scheduled tab [102489]</li>\n<li>Tweak &#8211; Add new filter, <code>tribe_events_import_event_duplicate_matches</code>, to determine if an event is part of the duplicates matches [77956]</li>\n<li>Tweak &#8211; Ensure &#8220;secondary&#8221; maps, e.g. in the sidebar, have the same full-width behavior as &#8220;main&#8221; maps [74052]</li>\n<li>Tweak &#8211; Restore some missing header navigation elements [99742]</li>\n<li>Tweak &#8211; Add notice if an import is missing required columns [67886]</li>\n<li>Tweak &#8211; Save time zone and time zone abbreviation fields (if provided) even if date was not changed when saving event through API [102705]</li>\n</ul>\n<h4>[4.6.13] 2018-03-28</h4>\n<ul>\n<li>Feature &#8211; Added facilities allowing users to trash or permanently delete expired events [98826]</li>\n<li>Fix &#8211; Corrected the behavior of the previous/next event links rendered on single event pages (props to @jeremyfelt for fixing this) [101757]</li>\n<li>Fix &#8211; Save order of organizers as displayed in the admin (thanks to JobInfo and others for report) [79126]</li>\n<li>Tweak &#8211; Added Gutenberg compatibility for the Gutenberg Extension plugin</li>\n<li>Tweak &#8211; Added new filter <code>tribe_tickets_venue_action_links_edit_url</code> to modify the venue edit link for the sales and attendee reports [93923]</li>\n<li>Tweak &#8211; Altered day view to start at 00:00:00 and not 00:00:01 [99641]</li>\n</ul>\n<h4>[4.6.12] 2018-03-08</h4>\n<ul>\n<li>Fix &#8211; Resolved an oversight resulting in notice-level errors when the <code>tribe_event_is_on_date()</code> function was called incorrectly (props to @sharewisdom for pointing this out) [99117]</li>\n<li>Fix &#8211; Resolved errors within the admin environment when the &#8220;ticketed&#8221; view of events is generated [99266]</li>\n<li>Fix &#8211; Improved compatibility with WordPress SEO in relation to the default mobile events view [68716]</li>\n<li>Fix &#8211; Resolved Javascript errors in month view which were triggered under some conditions by the presence of password-protected events [99089]</li>\n<li>Fix &#8211; Improved logic responsible for identifying which events are expired (in the past) by using timezone-aware comparisons [91168]</li>\n<li>Fix &#8211; Corrected the export of upcoming events from single organizer pages (added to support changes in Events Calendar PRO) [70727]</li>\n<li>Tweak &#8211; Added safety checks around our use of the global $wp_query object (thanks @archetypalsxe for highlighting this issue!) [100199]</li>\n<li>Tweak &#8211; Renamed &#8216;Use Javascript to control date filtering&#8217; option to &#8216;Enable live refresh&#8217; and improved the associated helper text [98022]</li>\n<li>Tweak &#8211; Added caching to reduce the number of HTTP requests being made in relation to Event Aggregator within the admin environment [99486]</li>\n<li>Tweak &#8211; Improved performance by reducing the number of queries that run in single event pages (in relation to <code>tribe_get_prev_event_link()</code> and <code>tribe_get_next_event_link()</code> specifically) [94587]</li>\n<li>Tweak &#8211; Added pagination to single organizer and venue pages [97772]</li>\n<li>Tweak &#8211; Improved compatibility with the Twenty Seventeen theme (ensuring the calendar is full-width if set to be the site&#8217;s homepage) [97977]</li>\n<li>Language &#8211; 3 new strings added, 161 updated, 1 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[4.6.11.1] 2018-02-16</h4>\n<ul>\n<li>Fix &#8211; The render of the venue and organizer templates (thanks to Antonio and others for reporting this in our forums) [99550]</li>\n<li>Fix &#8211; Make sure events on calendar are not affected by DST changes [99537]</li>\n</ul>\n<h4>[4.6.11] 2018-02-14</h4>\n<ul>\n<li>Fix &#8211; Ensure parity of CSS styles between the default Month View and the embedded Month Views generated by Events Calendar PRO&#8217;s [tribe_events] shortcode (thanks @copoloff for reporting this bug!) [92329]</li>\n<li>Fix &#8211; If <code>tribe_ical_feed_calname</code>  is empty the property <code>X-WR-CALNAME</code> is not added to the .ics file [46620]</li>\n<li>Fix &#8211; Stopped modifications of the main query if is in a single post to allow custom variables don&#8217;t affect the page loading when using shortcode (our thanks to Joseph Reckley and others for highlighting this problem) [91787]</li>\n<li>Tweak &#8211; Fixed a handful of small CSS bugs in the mobile views of the Twenty Sixteen, Twenty Fifteen, and Twenty Fourteen themes [95693]</li>\n<li>Tweak &#8211; Added new hooks (<code>tribe_events_ical_before</code>, <code>tribe_events_ical_events_list_args</code> and <code>tribe_events_ical_events_list_query</code>) to allow further customization of the iCal feed [86227]</li>\n<li>Tweak &#8211; Added safeguards to reduce conflicts when lodash and underscore are used on the same site [92205]</li>\n<li>Language &#8211; 0 new strings added, 41 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.10.1] 2018-01-26</h4>\n<ul>\n<li>Fix &#8211; Make sure rewrite rule for <code>/events</code> is not hardcoded and is based on dynamic option field (thanks to @earnjam and others for flagging this problem) [98463]</li>\n</ul>\n<h4>[4.6.10] 2018-01-23</h4>\n<ul>\n<li>Fix &#8211; Allow The Events Calendar REST API to be disabled using the <code>tribe_events_rest_api_enabled</code> filter [97209]</li>\n<li>Fix &#8211; Remove the errant <code>div.tribe-events-single-section</code> on the single event view when there is no venue [97615]</li>\n<li>Fix &#8211; Make sure the date for past events is set to the current date not the end of the day of the current date [71936]</li>\n<li>Fix &#8211; Use <code>featured_color_scheme_custom</code> if present as mechanism to overwrite the default color scheme for highlight color [96821]</li>\n<li>Fix &#8211; Make sure the date for past events is set to the current date not the end of the day of the current date [71936]</li>\n<li>Tweak &#8211; Trigger an event <code>map-created.tribe</code> when a map is created to allow flexibility on customization [91984]</li>\n<li>Tweak &#8211; Add a link to the knowledge base about &#8216;Setting Up Your Google Maps API Key&#8217; [89761]</li>\n<li>Tweak &#8211; Add <code>the_title</code> filter to events called by <code>tribe_events_template_data</code> [38237]</li>\n<li>Tweak &#8211; Made the &#8220;events&#8221; and &#8220;event&#8221; slugs translatable by WPML and other multilingual plugins [95026]</li>\n<li>Tweak &#8211; Introduced the <code>tribe_events_query_force_local_tz</code> filter to allow for forcing non-UTC event start and end times in Tribe__Events__Query [92948]</li>\n<li>Tweak &#8211; Prevent empty or otherwise-invalid values for various date-format options in the Display settings [94725]</li>\n<li>Tweak &#8211; Brought day number headers in the Month View into compliance with WCAG 2.0 accessibility standards when using the &#8220;Tribe Events&#8221; stylesheet [68411]</li>\n<li>Tweak &#8211; Improved the alignment of the event cost on the single-event view (props to @canberraclimbersassociation for reporting this bug) [97208]</li>\n<li>Tweak &#8211; Added some more context to the labeling of the &#8220;Number of events per page&#8221; option (thanks to Todd H. for highlighting this label) [73659]</li>\n<li>Tweak &#8211; Improve performance on Event Admin List Count by removing JOIN and use cached results [63567]</li>\n<li>Tweak &#8211; Made the &#8220;/page/&#8221; component of some views&#8217; URL string translatable [40976]</li>\n<li>Tweak &#8211; Button &#8220;Merge Duplicates&#8221; is always visible from now on [75208]</li>\n<li>Tweak &#8211; Allow queries to explicitly include or exclude events that are nominally hidden from event listings [91254]</li>\n</ul>\n<h4>[4.6.9] 2018-01-10</h4>\n<ul>\n<li>Feature &#8211; Add new utility functions tribe_is_events_home and tribe_is_events_front_page similar to native WP is_home and is_front_page [42195]</li>\n<li>Fix &#8211; Avoid issues when importing multiple organizers that specify images [96354]</li>\n<li>Fix &#8211; Make sure latitude and longitude information from iCal feeds is used if available [96363]</li>\n<li>Fix &#8211; Fixed an issue that prevented EA from importing images attached to Facebook events [96393]</li>\n<li>Fix &#8211; Remove the duplicate filter call that was running twice for <code>tribe_rest_venue_data</code> [96090]</li>\n<li>Tweak &#8211; Added new <code>tribe_aggregator_import_event_image</code>, <code>tribe_aggregator_import_venue_image</code> and <code>tribe_aggregator_import_organizer_image</code> filter so that users can control whether, during EA imports, images should be attached to post or not [96393]</li>\n<li>Tweak &#8211; Made it possible to translate the iCal feed&#8217;s description field (props @gafderks) [96677]</li>\n<li>Tweak &#8211; Improved escaping of map IDs (props LucaPipolo) [96772]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up organizers by slug instead of ID at the path <code>organizers/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>organizers/{ID}</code> [96088]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up venues by slug instead of ID at the path <code>venues/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>venues/{ID}</code> [96088]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API responses for organizer and venue data [96088]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API parameters allowed to use when inserting or updating an organizer or event [96088]</li>\n<li>Tweak &#8211; Added action: <code>tribe_events_venue_save</code> [96069]</li>\n<li>Tweak &#8211; Added action: <code>tribe_events_organizer_save</code> [96069]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_rest_venue_prepare_postarr</code> [96069]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_rest_organizer_prepare_postarr</code> [96069]</li>\n<li>Tweak &#8211; Old <code>tribe_rest_venue_data</code> filter was passing the venue and the event two the second parameter because of the duplication. Now it has the second parameter as $venue, third parameter as $event if event ID was provided [96090]</li>\n<li>Language &#8211; 5 new strings added, 30 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.8] 2017-12-18</h4>\n<ul>\n<li>Fix &#8211; Preserve filter bar checkbox selections when changing views [66749]</li>\n<li>Fix &#8211; Fix radio filters so they are only included as values when switching views when checked [72954]</li>\n<li>Fix &#8211; Ensure the correct properties are set for list widget queries, to avoid problems when running alongside Events Calendar PRO (props @KZeni) [94105]</li>\n<li>Fix &#8211; Fixed some layout issues with the &#8220;Buy Now&#8221; button and stock labels on mobile list views [81115]</li>\n<li>Fix &#8211; Fixed issue where left- or right-aligned images at the bottom of event descriptions would overlap event meta on single-event pages [71134]</li>\n<li>Fix &#8211; Fixed issue where Google Maps Link would display in some situations even when there is no address information for which to generate a link. [94909]</li>\n<li>Fix &#8211; Corrected reference to a Select2 asset (our thanks to @pyxis630 for flagging this problem and props to @andrasguseo for the fix) [95348]</li>\n<li>Fix &#8211; Ensure that when start and end dates are passed to the REST API, all events within the date range are correctly retrieved (thanks @braffenberg and others for highlighting this issue!) [90005]</li>\n<li>Tweak &#8211; Added Google Maps API key to all Google Maps URLs when the key is available, allowing maps to load more reliably on some hosting environments (props to @sfdfortnight, @thor, and many others for reporting this!) [62910]</li>\n<li>Tweak &#8211; Adjusted CSS to improve the display of venue URLs/phone numbers (especially when Events Calendar PRO is also active) (our thanks to Mathew on the forums for flagging this issue) [69127]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up events by slug instead of ID at the path <code>events/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>events/{ID}</code> [92825]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API responses for event data [92825]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API parameters allowed to use when inserting or updating an event [92825]</li>\n<li>Tweak &#8211; Added new <code>tribe_events_rest_use_inclusive_start_end_dates</code> filter so that users can make the REST API return events from a more literal date range [90005]</li>\n<li>Language &#8211; 3 new strings added, 68 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.7] 2017-12-07</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where EA imports might not correctly create venues for iCalendar imports (thanks @starweb and others for highlighting this issue) [94323]</li>\n<li>Fix &#8211; Fixed an issue where Month View wouldn&#8217;t render correctly in X Theme with the &#8220;Events template&#8221; option set to &#8220;Default Page Template&#8221; [92554]</li>\n<li>Fix &#8211; Fixed a WPML incompatibility issue where language could be switched to the wrong one (thanks @dgwatkins) [94732]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_x_theme_force_full_content()</code> filter to let users disable X Theme compatibility code [92554]</li>\n<li>Language &#8211; 0 new strings added, 2 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.6] 2017-11-21</h4>\n<ul>\n<li>Feature &#8211; Added Template class which adds a few layers of filtering to any template file included</li>\n<li>Tweak &#8211; Added clear warnings and errors to prevent and limit the import of iCalendar sources missing required fields [93600]</li>\n<li>Tweak &#8211; Included <code>tribe_callback_return</code> for static returns for Hooks</li>\n<li>Tweak &#8211; Improved Aggregator notices including error data on the responses [87326]</li>\n<li>Language &#8211; 4 new strings added, 79 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.5] 2017-11-16</h4>\n<ul>\n<li>Fix &#8211; Improved legacy URL redirect logic to prevent unwanted redirects (our thanks to wesleyanhq and Adam Schwartz for highlighting this issue) [86942]</li>\n<li>Fix &#8211; Modified tribe_get_template_part() to remove potential for multiple templates to be rendered in a single call [46630]</li>\n<li>Fix &#8211; Fixed an issue where Event Aggregator scheduled imports might remain stuck in pending status [90501, 92614, 91754]</li>\n<li>Fix &#8211; Removed code which was automatically populating various address fields with default values when creating a new venue from within the event editor [44732]</li>\n<li>Fix &#8211; Resolved some issues with the &#8220;Show Map&#8221; and &#8220;Show Map Link&#8221; options in CSV files not being reliably respected on import (props @joappf and many others for highlighting this issue) [82784]</li>\n<li>Fix &#8211; Added opportunities to override edit linked post links [89015]</li>\n<li>Fix &#8211; Fixed a bug where only some parts of event featured images were clickable in List Views (thanks @mattemkadia for highlighting this issue) [81392]</li>\n<li>Fix &#8211; Fixed the broken &#8216;Learn more&#8217; URL received after an unsuccessful &#8220;Other URL&#8221; import preview [92890]</li>\n<li>Fix &#8211; Fixed issue in list view navigation with backwards previous/next classes (thanks @secondtoughest) [36230]</li>\n<li>Fix &#8211; Fixed an issue where venues and organizers would not be correctly assigned to events in CSV imports with import statuses other than &#8220;Publish&#8221; [79680]</li>\n<li>Tweak &#8211; Remove net import scheduled notes for on demand imports [79079]</li>\n<li>Tweak &#8211; Allow for non-Latin characters to be used as the Events URL slug and the Single Event URL slug (thanks @daviddweb for originally reporting this) [61880]</li>\n<li>Tweak &#8211; Remove net import scheduled notes for on demand imports [79079]</li>\n<li>Tweak &#8211; Fixed some layout issues that would emerge with &#8220;Events URL Slug&#8221; option when &#8220;Plain&#8221; permalinks were enabled [92314]</li>\n<li>Tweak &#8211; Tweaked some language in Event Aggregator&#8217;s metabox on individual edit-event screens to reduce confusion around the impact of the Update Authority on CSV imports [77957]</li>\n<li>Tweak &#8211; Fix PHP 7.1 compatibility with Event Aggregator (props @BJP NEALE) [90002]</li>\n<li>Tweak &#8211; Added new filter: <code>tribe_events_force_filtered_ical_link</code>. This makes the &#8220;Export Events&#8221; URL more easily modifiable (thanks to @tdudley07 for highlighting this issue) [43908]</li>\n<li>Tweak &#8211; Made the &#8220;End of Day Cutoff&#8221; option better accommodate 24-hour and other time formats (thanks @festivalgeneral for bringing this issue to our attention!) [78621]</li>\n<li>Tweak &#8211; Made the options presented by the timezone selector filterable (via the newly added <code>tribe_events_timezone_choice</code> hook &#8211; our thanks to National University&#8217;s Marketing Department for this idea) [92909]</li>\n<li>Tweak &#8211; Improved integration with Twenty Seventeen &#8211; main events page now uses full height header when set to front page (thanks @uncovery for pointing this out) [89767]</li>\n<li>Tweak &#8211; Ensured REST API taxonomy endpoints are only registered in WordPress versions 4.7 and higher (thanks @dnaber-de for reporting this) [93227]</li>\n<li>Language &#8211; 1 new strings added, 132 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.6.4] 2017-11-09</h4>\n<ul>\n<li>Tweak &#8211; Timepicker is now part of Tribe Common, it was removed from The Events Calendar</li>\n<li>Tweak &#8211; Required changes to make the plugin compatible with version 4.6 of Event Tickets</li>\n<li>Language &#8211; 10 new strings added, 167 updated, 0 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[4.6.3] 2017-11-02</h4>\n<ul>\n<li>Fix &#8211; Prevent JS error when adding a Pro widget in the WP Customizer screen [72127]</li>\n<li>Fix &#8211; Fixed issue where the value of an event&#8217;s &#8220;Show Google Maps Link&#8221; option would not properly affect the displaying of the link on List View (props: @etechnologie) [75547]</li>\n<li>Fix &#8211; Added some more specification to our jquery-ui-datepicker CSS to limit conflicts with other plugins and themes [90577]</li>\n<li>Fix &#8211; Improve shortcode pagination/view change url so it is reusable (props: @der.chef and others) [70021]</li>\n<li>Fix &#8211; Ensure the <code>tribe_json_ld_{type}_object</code> filter is available to make modifications of event, venue and organizer JSON LD data possible (thanks to Mathew for flagging this problem) [89801]</li>\n<li>Fix &#8211; Improved JSON LD output for events by outputting the correct UTC offset where required (our thanks to Nina and many others for flagging this issue) [78233]</li>\n<li>Tweak &#8211; Fixed some display issues for the event schedule details (props @mia-caro)</li>\n<li>Tweak &#8211; Improved the clarity of and amount of context for some linked post labels to make translation of those labels a little easier and more nuanced (props @hnacc and others) [88589]</li>\n<li>Tweak &#8211; Changed the order in which the list view &#8220;next events&#8221; link is assembled for better translatability (with thanks to @alelouya for highlighting this problem) [72097]</li>\n<li>Tweak &#8211; Adjusted linked posts selector HTML to improve compatibility with Batcache [92049]</li>\n<li>Tweak &#8211; Improved datepicker handling so an end date on or later than the start date can always be selected [89825]</li>\n<li>Language &#8211; 0 new strings added, 7 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.2] 2017-10-18</h4>\n<ul>\n<li>Fix &#8211; Restored functionality to the &#8220;currency position&#8221; options in Events Settings, and in the per-event cost settings (props @schola and many others!) [89918]</li>\n<li>Fix &#8211; Fixed issue in Month view with multi-month events not appearing on subsequent months (thanks @shinno.kei &amp; @schittly for helping isolate this) [89747]</li>\n<li>Fix &#8211; Made some changes to prevent Month View caching from breaking WPML support when in Month View (props: @mpike and many others!) [82286]</li>\n<li>Fix &#8211; Fixed start/end times being displayed in incorrect timezone in structured data (thanks @mtncreative &amp; @esosa) [42125]</li>\n<li>Fix &#8211; Fixed an issue that would cause a 404 error if the selected default view was not enabled (thanks @pruneau) [45612]</li>\n<li>Fix &#8211; Improved translatability by adding missing textdomains for a number of strings (props @pedro-mendonca) [91071]</li>\n<li>Fix &#8211; Removed unneeded escaping to ensure the organizer link displays as expected (pros @f4w-pwharton) [91074]</li>\n<li>Tweak &#8211; Improvements to the readme.txt file surrounding plugin requirements (thanks @ramiy) [90285]</li>\n<li>Tweak &#8211; Improve site identification in multisite installations using Event Aggregator to avoid throttling issues [90489]</li>\n<li>Tweak &#8211; Avoid notice level errors when a non-existent category archive is requested (our thanks to Charles Simmons for highlighting this) [90697]</li>\n<li>Tweak &#8211; Added a new filter <code>tribe_events_ical_single_event_links</code> to make customizing the iCal and gCal export links on single-event views easier [90705]</li>\n</ul>\n<h4>[4.6.1] 2017-10-04</h4>\n<ul>\n<li>Fix &#8211; Fixed &#8220;Next Events&#8221; and &#8220;Previous Events&#8221; navigation links in list views, which would sometimes make a category-filtered list view lose its category filter as a user navigated through pages of future or past events (props @forumhelpdesk and @atomicdust for reporting this!) [72013]</li>\n<li>Fix &#8211; Fixed some layout issues with the Tribe Bar datepicker that would arise when using a Twenty Sixteen or Twenty Fifteen child them (thanks to @stefanrueegger for reporting this) [46471]</li>\n<li>Fix &#8211; Prevented modification of event titles within the loop when using TRIBE_MODIFY_GLOBAL_TITLE [89273]</li>\n<li>Fix &#8211; Fixed issue when exporting all-day multi-day events via iCal where the end date was one day early (Thank you @fairmont for reporting this!) [87775]</li>\n<li>Fix &#8211; Fixed issues with the jQuery Timepicker vendor script conflicting with other plugins&#8217; similar scripts (props: @hcny et al.) [74644]</li>\n<li>Fix &#8211; Fixed an issue that would prevent Event Aggregator scheduled imports from running [88395]</li>\n<li>Fix &#8211; Fixed the &#8220;Start Time&#8221; and &#8220;End Time&#8221; timepicker fields in the event-creation screen to make it impossible to have an end date/time that comes before the start date/time [72686]</li>\n<li>Tweak &#8211; Remove unnecessary parameters from some remove_action calls in the plugin (thanks to @JPry on GitHub for submitting this fix!) [88867]</li>\n<li>Tweak &#8211; Adjusted the EA cron start time so that it never gets created in the past [88965]</li>\n<li>Tweak &#8211; Improved options format in the Event Aggregator settings [88970]</li>\n<li>Tweak &#8211; Added a filter to CSV importer for altering the delimiter, escaping, and enclosing characters [70570]</li>\n<li>Tweak &#8211; Adjusted the <code>tribe_update_venue()</code> template tag so it no longer creates some unnecessary meta fields involving post_title, post_content, etc. (thanks @oheinrich for bringing this to our attention) [66968]</li>\n<li>Tweak &#8211; Improved the performance of The Events Calendar REST API tweaking some queries [89743]</li>\n<li>Tweak &#8211; Add support for a <code>found_posts</code> argument in <code>tribe_get_events</code>, <code>tribe_get_venues</code> and <code>tribe_get_organizers</code> functions to return the number of posts found matching the current query arguments [89743]</li>\n<li>Deprecated &#8211; Deprecated the <code>tribe-events-bar-date-search-default-value</code> filter; use <code>tribe_events_bar_date_search_default_value</code> instead [67482]</li>\n<li>Language &#8211; Improvements to aid translatability of text throughout plugin (props: @ramiy) [88982]</li>\n<li>Language &#8211; 7 new strings added, 180 updated, 4 fuzzied, and 3 obsoleted</li>\n</ul>\n<h4>[4.6] 2017-09-25</h4>\n<ul>\n<li>Feature &#8211; Added full CRUD REST support for Events, Organizers, Venues, Event Categories, and Tags</li>\n<li>Tweak &#8211; Updated Bootstrap Datepicker to v1.7.0</li>\n<li>Tweak &#8211; Added latitude/longitude to REST responses when available on venues</li>\n<li>Tweak &#8211; Added JSON-LD data to REST responses when available</li>\n<li>Tweak &#8211; Replaced deprecated first parameter of <code>tribe_get_organizers()</code> with a parameter that, when specified with a truthy value, returns only organizers with upcoming events attached to them</li>\n<li>Tweak &#8211; Added linked post filters: <code>tribe_{$this-&gt;post_type}_has_events_excluded_post_stati</code>, <code>tribe_events_tribe_organizer_create</code>, <code>tribe_events_tribe_organizer_update</code>, <code>tribe_event_venue_duplicate_post_fields</code>, <code>tribe_event_organizer_duplicate_custom_fields</code></li>\n<li>Tweak &#8211; Added action: <code>tribe_events_organizer_created</code></li>\n<li>Tweak &#8211; Added REST filters: <code>tribe_rest_organizer_default_only_with_upcoming</code>, <code>tribe_rest_venue_default_only_with_upcoming</code>, <code>tribe_events_rest_term_allow_delete</code></li>\n<li>Tweak &#8211; Added duplicate-detection filters: <code>tribe_duplicate_post_strategies</code>, <code>tribe_duplicate_post_strategy</code>, <code>tribe_duplicate_post_{$strategy}_strategy</code></li>\n<li>Language &#8211; 152 new strings added, 217 updated, 6 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.5.13] 2017-09-20</h4>\n<ul>\n<li>Feature &#8211; Add link to the featured image in the Events List widget. New filter introduced to control this: <code>tribe_events_list_widget_featured_image_link</code> (props to @cabadaj007 for the feature request) [84807]</li>\n<li>Feature &#8211; Remove &#8216;France, Metropolitan&#8217; option from country list to prevent issues with Google Maps API (thanks @varesanodotfr for pointing this out) [78023]</li>\n<li>Feature &#8211; Ignored Events will restore previous status instead of setting to &#8216;publish&#8217; [82213]</li>\n<li>Fix &#8211; Patched jQuery Resize vendor library to avoid JavaScript conflicts (props to @britner for the original report) [71994]</li>\n<li>Fix &#8211; Fixed a typo in the Event List widget options [71081]</li>\n<li>Fix &#8211; Addressed some PHP notices that would sometimes emerge in tag-filtered post lists in the wp-admin (thanks to @wfsec28 and others in the forums for reporting this!) [45274]</li>\n<li>Fix &#8211; When &#8220;Full Styles&#8221; or &#8220;Tribe Events Styles&#8221; are used, prevent duplicate featured images from showing up in the Twenty Seventeen theme (props to @want2what and others in the forums for reporting this) [80955]</li>\n<li>Fix &#8211; Fixed the issue that would prevent the start date and date range parameters from being taken into account when using &#8216;Other URL&#8217; source in Event Aggregator</li>\n<li>Fix &#8211; Aggregator will no longer update comments while inactive [78890]</li>\n<li>Fix &#8211; Avoid issues when REST API archive request parameters are not in the original order (thanks @Nslaver for reporting this and providing a fix) [88748]</li>\n<li>Tweak &#8211; Aggregator prevents duplicated records with the same params from being created [68833]</li>\n<li>Tweak &#8211; Aggregator will now allow for some minor shifts in schedule execution time to help distribute requests to EA Service [86628]</li>\n<li>Tweak &#8211; Improve text in the Event Aggregator settings [77452]</li>\n<li>Tweak &#8211; Add actions before and after posts are inserted or updated by Event Aggregator to allow custom functions to kick in (<code>tribe_aggregator_before_insert_posts</code> and <code>tribe_aggregator_after_insert_posts</code>) [87530]</li>\n<li>Tweak &#8211; Allow users to import CSV with numerically-named categories by using a flag (currently <code>%n</code>) (thanks @Shamsi for reporting) [78340]</li>\n<li>Tweak &#8211; Allow date range and events count limits to be set on each type of import (except for &#8216;Other URL&#8217;) in Event Aggregator [79975]</li>\n</ul>\n<h4>[4.5.12.3] 2017-09-19</h4>\n<ul>\n<li>Fix &#8211; Display events on Month View correctly for WordPress version 4.8.2 and up (props @realcrozetva for reporting this) [88952]</li>\n</ul>\n<h4>[4.5.12.2] 2017-09-08</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where manually running Scheduled Imports would always result in a failed import [87321]</li>\n</ul>\n<h4>[4.5.12.1] 2017-09-07</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where events imported via Event Aggregator from an iCal-like source would be duplicated in place of being updated [87654]</li>\n</ul>\n<h4>[4.5.12] 2017-09-06</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where, with certain date formats chosen in the Events display settings, the &#8220;Next Month&#8221; link navigation wasn&#8217;t working (props to @tttammi and others for reporting this issue!) [86937]</li>\n<li>Fix &#8211; Fixed a typo in REST API Swagger documentation that mentioned &#8220;organizer&#8221; when it should have stated &#8220;venue&#8221;.</li>\n<li>Fix &#8211; Fixed issues with Event Aggregator queueing system where events might be duplicated or incorrectly updated [79975]</li>\n<li>Fix &#8211; Prevent notice when the Aggregator Record title is an array [82149]</li>\n<li>Fix &#8211; Allows Aggregator Google Map settings to extend the Global Setting by default (props to queerio for reporting this!) [67639]</li>\n<li>Fix &#8211; Prevent Warnings when throwing WordPress admin notices from Aggregator daily usage limit (props to cigarplanner for reporting this!) [83187]</li>\n<li>Fix &#8211; Resolved problem where Aggregator wouldn&#8217;t allow you to remove filtering terms for Records [76949]</li>\n<li>Fix &#8211; Allow any datepicker format to be used on Aggregator filtering Events (props to matthewseymour for reporting this!) [77819]</li>\n<li>Fix &#8211; Added check to see if log directory is readable before listing logs within it (thank you @rodrigochallengeday-org and @richmondmom for reporting this) [86091]</li>\n<li>Tweak &#8211; Datatables Head and Foot checkboxes will not select all items, only the current page [77395]</li>\n<li>Tweak &#8211; Included tooltip for Aggregator &#8220;Hide &amp; Ignore&#8221; button for events [67890]</li>\n<li>Tweak &#8211; Added all the Aggregator Origins to the Admin Bar [68693]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_get_state_options</code></li>\n<li>Tweak &#8211; Added template tags: <code>maybe_format_from_datepicker()</code></li>\n<li>Tweak &#8211; Added the <code>tribe_rest_single_event_data</code> filter to the single event REST API endpoint to allow filtering the returned data (thanks @mwender) [88748]</li>\n<li>Language &#8211; 2 new strings added, 90 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.5.11] 2017-08-24</h4>\n<ul>\n<li>Fix &#8211; Avoid Event Aggregator previews or scheduled imports being marked as failures [84259]</li>\n<li>Fix &#8211; Fixed start and end date limit parsing for events archive in the REST API code [78375]</li>\n<li>Fix &#8211; Fixed issue with <code>tribe_events_get_the_excerpt()</code> returning a read more link that sometimes pointed to the current page [70473]</li>\n<li>Fix &#8211; Fixed Post ID not being sent to the_title filter for Organizers and Venues (props Anna L.) [85206]</li>\n<li>Fix &#8211; Fixed issue where Month View tooltips would often go off-screen in some smaller viewport sizes [65136]</li>\n<li>Fix &#8211; Fixed an issue that would sometimes render Event Aggregator options invalid even with a valid license [78469]</li>\n<li>Fix &#8211; Fixed an issue where the mobile.php template file would often fail to include an event&#8217;s featured image [74291]</li>\n<li>Fix &#8211; Resolved issue where invalid linked post IDs prevent proper updates on linked posts (props to Mathew L. and a few others for highlighting this issue) [71802]</li>\n<li>Fix &#8211; Do not hijack the blog when the main events page is configured to appear on the site&#8217;s homepage (our thanks to Jason and others for flagging this problem) [72094]</li>\n<li>Fix &#8211; Remove extra trailing double-quotes at the end of the timepicker data-format attributes [85603]</li>\n<li>Fix &#8211; Fixed an issues where Event Aggregator scheduled imports could not run other than manually [81639]</li>\n<li>Tweak &#8211; Prevent stray commas from showing up for some event venues in the List View [72289]</li>\n<li>Tweak &#8211; Prevent stray commas from showing up for some event venues in the Day View [85429]</li>\n<li>Tweak &#8211; Modify certain event queries to widen the window of opportunity for query caching (props @garretjohnson) [84841]</li>\n<li>Tweak &#8211; Improve Event Aggregator message regarding Facebook token expiration [70376]</li>\n<li>Tweak &#8211; Support importing from URLs (Event Aggregator) where the protocol hasn&#8217;t been specified by defaulting to HTTP [76466]</li>\n<li>Tweak &#8211; Removed WP API adjustments [85996]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_aggregator_meta_source</code> to filter the Event Aggregator import source</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_linked_post_meta_values_{$current_linked_post_meta_key}</code> for filtering the array of values retrieved for a specific linked post meta field</li>\n<li>Tweak &#8211; Updated views: <code>src/views/day/single-event.php</code> and <code>src/views/list/single-event.php</code></li>\n<li>Compatibility &#8211; Minimum supported version of WordPress is now 4.5</li>\n<li>Language &#8211; Improvements to various strings to improve ease of translation (props to @ramiy)</li>\n<li>Language &#8211; 5 new strings added, 56 updated, 1 fuzzied, and 3 obsoleted [the-events-calendar]</li>\n</ul>\n<h4>[4.5.10.1] 2017-08-16</h4>\n<ul>\n<li>Fix &#8211; Updates common library to resolve a range of issues preventing frontend assets from loading and breaking parts of our user interface [85017]</li>\n</ul>\n<h4>[4.5.10] 2017-08-09</h4>\n<ul>\n<li>Fix &#8211; Avoid duplicate events when importing from some iCal, Google Calendar and Facebook feeds in Event Aggregator (our thanks to Jason Sears, controlyours and many other users for highlighting these issues) [67038]</li>\n<li>Fix &#8211; Fixed bug that caused scheduled imports to get stuck in a perpetual state of failure when receiving error messages from the Event Aggregator service (our thanks to Antonio Jose and others for flagging this problem) [83767]</li>\n<li>Fix &#8211; Resolved issue where errors from the Event Aggregator service were not properly logging/visible on the History tab [83767]</li>\n<li>Tweak &#8211; Made linked post fields&#8217; auto-save features more stringently check for empty values to prevent the plugin from trying to &#8220;save&#8221; empty values (our thanks to Jean-Marie for highlighting this problem) [80282]</li>\n<li>Tweak &#8211; Moved the organizer e-mail address field label a bit to better accommodate Community Events [80426]</li>\n<li>Tweak &#8211; Added filter to tribe_get_display_end_date()&#8217;s return value [77730]</li>\n<li>Tweak &#8211; Avoid notice-level errors while processing queues within Event Aggregator (our thanks to David Sharpe and others for reporting this) [84020]</li>\n<li>Tweak &#8211; Improve compatibility and avoid Javascript errors when running alongside Twenty Seventeen [70853]</li>\n<li>Compatibility &#8211; Minimum supported version of WordPress is now 4.4</li>\n<li>Language &#8211; 1 new strings added, 119 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.5.9] 2017-07-26</h4>\n<ul>\n<li>Fix &#8211; Send Aggregator callback URL with correct Scheme [83364]</li>\n<li>Fix &#8211; Scheduled Aggregator cron for inserting will re-enqueue to complete scheduled imports [83382]</li>\n<li>Fix &#8211; Avoid overwriting Venues and Organizers when importing FB events with similarly named Venues and Organizers [75370]</li>\n<li>Fix &#8211; Improve handling of large and/or slow Google Calendar and iCal feeds [79975]</li>\n<li>Tweak &#8211; Added period &#8220;.&#8221; separator to datepicker formats. [65282]</li>\n<li>Tweak &#8211; Added tribe_events_month_get_events_in_month filter to allow overriding of events used in month templates. [83317]</li>\n</ul>\n<h4>[4.5.8.1] 2017-07-21</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where failed EA Imports would hang for a long time before failing [83344]</li>\n</ul>\n<h4>[4.5.8] 2017-07-13</h4>\n<ul>\n<li>Fix &#8211; Remove permalink logic for recurring events (Events Calendar PRO will implement instead) [74153]</li>\n<li>Fix &#8211; Avoid type error when setting up one-time imports for Facebook URLs (our thanks to @J for flagging this!) [78664]</li>\n<li>Fix &#8211; Add a safety check in isOrganizer() function (our thanks to Kevin for flagging this!) [81645]</li>\n<li>Fix &#8211; Avoid EA Client hanging when no events are found while attempting an import from a Facebook source [82713]</li>\n<li>Fix &#8211; Improve compatibility of The Events Calendar when operating with WPML from within a subdirectory (props: @dgwatkins) [81998]</li>\n</ul>\n<h4>[4.5.7] 2017-06-28</h4>\n<ul>\n<li>Fix &#8211; Restore support for translated events category slugs when WPML is active [73478]</li>\n<li>Fix &#8211; Improve handling of shortcodes within event view excerpts (props: @awbauer) [81226]</li>\n<li>Fix &#8211; Improve compatibility with WPML in relation to event permalinks specifically (props: @dgwatkins) [81224]</li>\n<li>Fix &#8211; Improved handling of Venue fields that allows for better form validation in Community Events [76297]</li>\n<li>Tweak &#8211; Better detection and reporting of communication failures with the Event Aggregator server</li>\n<li>Tweak &#8211; Textual corrections (with thanks to @garrett-eclipse for highlighting many of these) [77196]</li>\n<li>Tweak &#8211; New filter added (&#8220;tribe_events_linked_posts_dropdown_enable_creation&#8221;) to facilitate more control over linked posts [80487]</li>\n<li>Tweak &#8211; Improve performance of theme compatibility code [71974]</li>\n<li>Tweak &#8211; Don&#8217;t show Event Aggregator system status in Help tab if there&#8217;s no Event Aggregator license in place [68506]</li>\n</ul>\n<h4>[4.5.6] 2017-06-22</h4>\n<ul>\n<li>Tweak &#8211; Improved how Cost field looks and it&#8217;s consistency across views [71092 &amp; 71094]</li>\n<li>Fix &#8211; Resolved issue where the Meta Chunker attempted to inappropriately chunk meta for post post_types [80857]</li>\n<li>Tweak &#8211; Added actions: <code>tribe_events_inside_cost</code></li>\n<li>Tweak &#8211; Changed views: <code>day/single-event</code>, <code>day/single-featured</code>, <code>list/single-event</code>, <code>list/single-featured</code></li>\n<li>Language &#8211; 1 new strings added, 15 updated, 1 fuzzied, and 1 obsoleted [the-events-calendar]</li>\n<li>Language &#8211; 0 new strings added, 0 updated, 1 fuzzied, and 0 obsoleted [tribe-common]</li>\n</ul>\n<h4>[4.5.5] 2017-06-14</h4>\n<ul>\n<li>Fix &#8211; Removed extra double quotes in organizer link output [71133]</li>\n<li>Fix &#8211; Make the list and day view styles match more closely [63599]</li>\n<li>Fix &#8211; Better sanitization on CSV imports (thanks to Valentinos Chouris from NCC Group for reporting this) [80311]</li>\n<li>Fix &#8211; Prevent tabs from being incorrectly escaped in iCal output (props: KZeni) [80452]</li>\n<li>Fix &#8211; Fixed inconsistent font styling of Tribe Bar form labels. [27252]</li>\n<li>Tweak &#8211; Removed unused Javascript (jQuery UI Dialog) to help avoid warnings (our thanks to @gama6889 for flagging this) [80766]</li>\n<li>Tweak &#8211; Added new filter hooks &#8216;tribe_events_register_event_type_args&#8217; and &#8216;tribe_events_register_event_cat_type_args&#8217; [80658]</li>\n</ul>\n<h4>[4.5.4] 2017-06-06</h4>\n<ul>\n<li>Tweak &#8211; Minor tweaks to the CSS for linked post types (Organizer/Venues)</li>\n<li>Fix &#8211; Prevent drag and drop icon showing when singular linked post type is been displayed</li>\n<li>Fix &#8211; Resolved issue where scheduled imports sometimes failed to execute [79587]</li>\n<li>Fix &#8211; Better sanitization of data (Props to Valentinos Chouris for reporting this) [80310]</li>\n<li>Language &#8211; 2 new strings added, 156 updated, 0 fuzzied, and 4 obsoleted [the-events-calendar]</li>\n<li>Language &#8211; 4 new strings added, 20 updated, 1 fuzzied, and 0 obsoleted [tribe-common]</li>\n</ul>\n<h4>[4.5.3] 2017-06-01</h4>\n<ul>\n<li>Fix &#8211; Made it easier to translate the update confirmation message (our thanks to safu9 for highlighting this) [79729]</li>\n<li>Fix &#8211; Fixed compatibility issue with WPML which caused organizers and venues to disappear on translated events [67581]</li>\n<li>Fix — Fixed bug where venues and organizers would be duplicated when their associated event is previewed. [64088]</li>\n<li>Tweak &#8211; Other fixes to the plugin verbiage (with thanks to @garrett-eclipse and others)</li>\n</ul>\n<h4>[4.5.2.1] 2017-05-19</h4>\n<ul>\n<li>Fix &#8211; Prevent fatal errors occuring in PHP 5.5 and earlier [79208]</li>\n</ul>\n<h4>[4.5.2] 2017-05-17</h4>\n<ul>\n<li>Fix &#8211; Correct REST API reference URL (our thanks to Lindsey for flagging this) [78658]</li>\n<li>Fix &#8211; Improve Event Aggregator integration to avoid situations where imports continually restart but do not complete [77988]</li>\n<li>Tweak &#8211; Make the inclusion or exclusion of the year (within the event schedule string) filterable [78070]</li>\n<li>Tweak &#8211; Adjustments to help avoid false positive security alerts being generated in relation to our customizer integration [78355]</li>\n</ul>\n<h4>[4.5.1] 2017-05-04</h4>\n<ul>\n<li>Fix &#8211; Prevented errors on EA import screen that happened in exotic circumstance. Thanks @kathryn for reporting this! [75787]</li>\n<li>Fix &#8211; Made EA preserve custom dates after reimporting a Facebook Event when option is set. [75787]</li>\n<li>Fix &#8211; Enhance month view caching to minimize impact of JSON-LD generation [74656]</li>\n<li>Tweak &#8211; Styling/layout improvements within the Event Aggregator screen [77895]</li>\n</ul>\n<h4>[4.5.0.2] 2017-05-01</h4>\n<ul>\n<li>Fix &#8211; Ensure compatibility with WordPress version 4.4 and earlier</li>\n</ul>\n<h4>[4.5.0.1] 2017-05-01</h4>\n<ul>\n<li>Fix &#8211; Resolving issue where some premium plugins were falsely claiming they were out of date</li>\n</ul>\n<h4>[4.5] 2017-05-01</h4>\n<ul>\n<li>Feature &#8211; Event Aggregator now allows users to import from other sites with The Events Calendar [68139]</li>\n<li>Feature &#8211; Include a Events REST API endpoint for read operations [70711]</li>\n<li>Feature &#8211; Include granular Scheduling for Events Aggregator</li>\n<li>Tweak &#8211; Update Authority for modified fields now will include Organizer, Venues and Taxonomy changes [71152]</li>\n<li>Tweak &#8211; Clean up direct calls to get events and use wrapper <code>tribe_get_events()</code> which has a hook for customizing</li>\n<li>Tweak &#8211; Remove including Event Tickets for backwards compatibility as a vendor library [71908]</li>\n<li>Tweak &#8211; Create a global ID to increase consistency on all of the imported items with Event Aggregator [75218]</li>\n<li>Fix &#8211; Prevent Aggregator to run on Empty Queues thus generating fatals (props to @Donald for the report here) [75377]</li>\n<li>Fix &#8211; Categories and Tags are no longer cleared when importing with Event Aggregator (thank you @Nicolas for the report) [74264]</li>\n<li>Fix &#8211; Increase consistency on Column Mapping for CSV imports [76476]</li>\n<li>Tweak &#8211; Added filters for REST API: <code>tribe_events_rest_url_prefix</code>, <code>tribe_rest_url</code>, <code>tribe_events_rest_use_builtin</code>, <code>tribe_rest_events_archive_data</code>, <code>tribe_rest_event_max_per_page</code>, <code>tribe_rest_event_data</code>, <code>tribe_rest_venue_data</code>, <code>tribe_rest_organizer_data</code>, <code>tribe_rest_event_categories_data</code>, <code>tribe_rest_event_tags_data</code>, <code>tribe_rest_event_taxonomy_term_data</code>, <code>tribe_rest_event_featured_image</code>, <code>tribe_events_rest_api_enabled</code></li>\n<li>Tweak &#8211; Added filters for REST API Documentation: <code>tribe_rest_swagger_cost_details_documentation</code>, <code>tribe_rest_swagger_date_details_documentation</code>, <code>tribe_rest_swagger_image_details_documentation</code>, <code>tribe_rest_swagger_image_size_documentation</code>, <code>tribe_rest_swagger_term_documentation</code>, <code>tribe_rest_swagger_event_documentation</code>, <code>tribe_rest_swagger_organizer_documentation</code>, <code>tribe_rest_swagger_venue_documentation</code>, <code>tribe_rest_swagger_documentation</code></li>\n<li>Tweak &#8211; Added filters for Modified fields tracking: <code>tribe_tracker_post_types</code>, <code>tribe_tracker_excluded_meta_keys</code>, <code>tribe_tracker_enabled</code>, <code>tribe_tracker_enabled_for_terms</code>, <code>tribe_tracker_taxonomies</code></li>\n<li>Tweak &#8211; Added filters for Event Aggregator: <code>tribe_aggregator_localized_data</code>, <code>tribe_aggregator_service_messages</code>, <code>tribe_aggregator_url_import_range_options</code>, <code>tribe_aggregator_url_import_range_cap</code>, <code>tribe_aggregator_url_import_range_start</code>, <code>tribe_aggregator_url_import_range_end</code></li>\n<li>Tweak &#8211; Removed filters for Event Aggregator: <code>tribe_aggregator_track_modified_fields</code></li>\n<li>Tweak &#8211; Added actions for Initialization: <code>tribe_events_bound_implementations</code></li>\n<li>Tweak &#8211; Removed methods for <code>Tribe__Events__Main</code>: <code>track_event_post_field_changes</code>, <code>maybe_load_tickets_framework</code></li>\n<li>Tweak &#8211; Removed methods for <code>Tribe__Events__Aggregator__Service</code>: <code>has_service_message</code></li>\n</ul>\n<h4>[4.4.5] 2017-03-23</h4>\n<ul>\n<li>Fix &#8211; Local changes to events should be preserved in accordance with the Event Import Authority setting (thanks to @bryan for reporting this one) [72876]</li>\n<li>Fix &#8211; Correct the value for days of the week abbreviation (thanks @mmmmartin03 for the report) [75379]</li>\n<li>Tweak &#8211; Enable the month view cache by default on new installations [74867]</li>\n<li>Tweak &#8211; External links to Google maps changed from http to https (nice find by @bjf2000 &#8211; reported via the .org support page) [74930]</li>\n<li>Tweak &#8211; Links to WordPress.org changed from http to https (ultimately this is also credited to @bjf2000&#8217;s find. Thanks!) [72273]</li>\n</ul>\n<h4>[4.4.4] 2017-03-08</h4>\n<ul>\n<li>Fix &#8211; Avoid unnecessarily removing a callback from an action while inside the same action (improves PolyLang compatibility &#8211; props @Chouby) [73122]</li>\n<li>Fix &#8211; Resolving issue where sites that overrode the wp-admin path would fail to successfully perform a Facebook OAuth with Event Aggregator [74687]</li>\n<li>Tweak &#8211; Improve template loading for easier customization by developers and better support of the template hierarchy (props @QWp6t) [72842]</li>\n</ul>\n<h4>[4.4.3] 2017-02-22</h4>\n<ul>\n<li>Fix &#8211; Resolved issue where iCal exports on month view were exporting more events than intended (thanks to @s2ldesign for reporting in our forums) [72133]</li>\n<li>Fix &#8211; Resolved meta width issue for maps when Pro is active (gracias a @ANTONIO JOSE por el reporte del error)  [69844, 72272]</li>\n<li>Fix &#8211; Resolved issue where featured images were not being imported via Event Aggregator Facebook imports (cheers to @Cody for the initial bug report) [72764]</li>\n<li>Fix &#8211; Resolved issue where translated &#8216;all&#8217; slugs were not respected (thank you @Marianne for your report in the forums) [71996]</li>\n<li>Tweak &#8211; Translation improvements and fixes (@Katja &#8211; thanks! ) [70068]</li>\n<li>Tweak &#8211; Allow &#8220;-1&#8221; when specifying the &#8220;Month view events per day&#8221; setting [70497]</li>\n</ul>\n<h4>[4.4.2] 2017-02-09</h4>\n<ul>\n<li>Fix &#8211; Ensure the global and source-specific Google Map settings for imports are respected [67228]</li>\n<li>Fix &#8211; Prevent PHP 5.2 Strict mode from throwing notices due to usage of <code>is_a</code> [72812]</li>\n<li>Fix &#8211; Ensure the events list widget&#8217;s show/hide if there are upcoming events setting is respected [72965]</li>\n<li>Tweak &#8211; Add filters for template tag functions related to dates: <code>tribe_get_start_time</code>, <code>tribe_get_end_time</code>, <code>tribe_get_start_date</code> and <code>tribe_get_end_date</code> [67759]</li>\n</ul>\n<h4>[4.4.1.1] 2017-01-26</h4>\n<ul>\n<li>Fix &#8211; Resolved fatal caused when rendering themes that override tribe styles</li>\n</ul>\n<h4>[4.4.1] 2017-01-26</h4>\n<ul>\n<li>Fix &#8211; Resolve the Fatals related to undefined methods and Memory exhaustion [71958, 71912]</li>\n<li>Fix &#8211; iCal export for Single events working again [71916]</li>\n<li>Tweak &#8211; Changes the Search label to prevent duplicate words (props @oheinrich) [72149]</li>\n<li>Tweak &#8211; Add theme version to <code>tribe-event.css</code> (props @berler) [71973]</li>\n<li>Fix &#8211; Resolve JavaScript error when jQuery was been de-registered [71369]</li>\n<li>Fix &#8211; Prevent Fatals when Importing Images on Event Aggregator [70576]</li>\n<li>Fix &#8211; Prevent Third Party notes to be escaped, anchor link working again [71872]</li>\n<li>Fix &#8211; Google Maps now are using HTTPS instead of HTTP (props @cliffordp)</li>\n<li>Fix &#8211; Prevent Fatals on Event Aggregator Cron, due to Activity logging failure [71904]</li>\n<li>Fix &#8211; Elminate some cases of problem with Facebook manual import on Event Aggregator [69137]</li>\n<li>Fix &#8211; WPML integration smaller incompatibilities [70520, 70522]</li>\n</ul>\n<h4>[4.4.0.1] 2017-01-09</h4>\n<ul>\n<li>Fix &#8211; Adds safety check to ensure a smooth activation process when earlier versions of Tribe Common are active</li>\n</ul>\n<h4>[4.4] 2017-01-09</h4>\n<ul>\n<li>Feature &#8211; Add dynamic helper text to single event editor to display the events date and time [66484]</li>\n<li>Feature &#8211; Add support for featured events [65898]</li>\n<li>Feature &#8211; Add support for placing the main events archive on the site homepage [38757]</li>\n<li>Feature &#8211; Add support for the theme customizer [67489]</li>\n<li>Feature &#8211; Make it possible to adjust map pins via the theme customizer [65889]</li>\n<li>Feature &#8211; Support for Event Aggregator in a multisite network context added [61427]</li>\n<li>Fix &#8211; Add a link to The Events Calendar Help page in the Network Administration screen of multisite installations [68665]</li>\n<li>Fix &#8211; Multisite license editing and displaying consistency [68662]</li>\n<li>Tweak &#8211; Adjusted styles and added actions for featured events in the List Widget [65923]</li>\n<li>Tweak &#8211; Organizers and Venues are now with a better and cleaner interface [68430]</li>\n<li>Tweak &#8211; Eliminate duplicate meta data for organizer posts [25084]</li>\n<li>Tweak &#8211; Improved the start/end date user interface [66486, 66487, 66550]</li>\n<li>Tweak &#8211; iCal export now includes all events &#8211; up to a reasonable limit &#8211; rather than just those in the current view [65037]</li>\n<li>Tweak &#8211; Adjustments made to the default week view color scheme [69756]</li>\n<li>Tweak &#8211; Add AJAX and improve consistency of the venue and organizer UI [38129]</li>\n</ul>\n<h4>[4.3.5] 2016-12-20</h4>\n<ul>\n<li>Tweak &#8211; Updated the template override instructions in a number of templates [68229]</li>\n<li>Tweak &#8211; Improve behavior of tribe_get_events_title() in respect of single events [46313]</li>\n<li>Tweak &#8211; Event Aggregator will only load on the Administration, prevent bigger loads for Front-End users [70812]</li>\n<li>Tweak &#8211; Allow better filtering for Organizers and Venue Meta fields (Props: @Chouby from Polylang) [70894]</li>\n<li>Fix &#8211; Prevent JavaScript Notices related to Bumpdown [69886]</li>\n<li>Fix &#8211; Assets URL on Windows Servers are fully operational again [68377]</li>\n<li>Fix &#8211; JavaScript and CSS files will respect HTTPS on all pages [69561]</li>\n<li>Fix &#8211; Fixed comment count and visibility issues due to Event Aggregator records [68297]</li>\n<li>Fix &#8211; Fixed PHP notices and warnings raised when importing .ics files [69960]</li>\n<li>Fix &#8211; Only show link to Venues if Pro is active in List View [69887]</li>\n<li>Fix &#8211; Fixed and issue that would make Event Aggregator importing notices remain stuck in the Import screen [70614]</li>\n<li>Fix &#8211; Avoid error screen when saving licenses on multisite installations [68599]</li>\n<li>Fix &#8211; Fix calendar view links in WPML language switcher [67134]</li>\n</ul>\n<h4>[4.3.4.2] 2016-12-13</h4>\n<ul>\n<li>Fix &#8211; Correct an oversight leading to breakages of the /all/ events archive for Events Calendar PRO users [70662]</li>\n</ul>\n<h4>[4.3.4.1] 2016-12-09</h4>\n<ul>\n<li>Fix &#8211; Updates Tribe Common to remove some stray characters that were impacting page layouts (props: @Aetles) [70536]</li>\n</ul>\n<h4>[4.3.4] 2016-12-08</h4>\n<ul>\n<li>Tweak &#8211; Tribe Common now is loaded only once across our plugin suite, improves performance in some cases [65755]</li>\n<li>Fix &#8211; Featured Images for Event Aggregator imports are working as expected again. [69465]</li>\n<li>Fix &#8211; Google Calendar and iCalendar files are now updating their respective events [68684]</li>\n<li>Fix &#8211; On demand Event Aggregator records will update events correctly [69542]</li>\n</ul>\n<h4>[4.3.3] 2016-11-16</h4>\n<ul>\n<li>Feature &#8211; Added Tribe Extension class and loader, to make small addons easier to build [68188]</li>\n<li>Fix &#8211; Ordering on Month view is working as expected again [69123]</li>\n<li>Fix &#8211; Enable ampersand character in mobile month view titles (thanks @kate for the report of this) [45409]</li>\n<li>Fix &#8211; Prevent notices for Event Aggregator License checking [67981]</li>\n<li>Fix &#8211; Mismatched text domains are resolved, important for translations (props to @Hans) [68462]</li>\n<li>Fix &#8211; Sticky on Month View is working as expected again [68902]</li>\n<li>Fix &#8211; Prevent HTTPS websites from pointing to Assets in HTTP [68372]</li>\n<li>Fix &#8211; On <code>WP_Query</code> we will no-longer overwrite custom <code>post__not_in</code> params [42143]</li>\n</ul>\n<h4>[4.3.2] 2016-11-02</h4>\n<ul>\n<li>Fix &#8211; Fixes an issue where the text in the Location search field was URL encoded when using the back or forward button for navigation. [61742]</li>\n<li>Fix &#8211; Aggregator Errors will not show more than once daily as comments (Thanks @Jacob for your report on the forums) [68094]</li>\n<li>Fix &#8211; Event Aggregator ICS default configuration now are been Selected Correctly [67885]</li>\n<li>Fix &#8211; Shortcode Month view now will display tooltips correctly [68094]</li>\n<li>Fix &#8211; Avoid loading the select2 JavaScript library twice when Advanced Custom Fields is activated (props to @ryan for the initial report [43605]</li>\n<li>Fix &#8211; Avoid errors and notices on calendar page when X theme and WPML plugins are active (thanks @ingrid for reporting this one) [64400]</li>\n</ul>\n<h4>[4.3.1.1] 2016-10-20</h4>\n<ul>\n<li>Fix &#8211; Corrected a packaging issue from the 4.3.1 release [67936]</li>\n</ul>\n<h4>[4.3.1] 2016-10-20</h4>\n<ul>\n<li>Tweak &#8211; Implement the pruning of Event Aggregator history records after 7 days, filterable by tribe_aggregator_record_retention [68283]</li>\n<li>Tweak &#8211; Event Aggregator will now verify that the license key has uses remaining before creating a history record [68286]</li>\n<li>Tweak &#8211; Improve <code>tribe_create_event</code> documentation (Props to Keith) [44871]</li>\n<li>Fix &#8211; Resolved an issue where scheduled Event Aggregator imports marked as &#8220;On Demand&#8221; were being run by cron [68284]</li>\n<li>Fix &#8211; Resolved a bug where empty meta fields were being inserted into Event Aggregator record post meta [68290]</li>\n<li>Fix &#8211; Resolved a bug where Venue and Organizers urls were been generated incorrectly (Thanks @Matt) [68168]</li>\n<li>Fix &#8211; Pagination links on Month view are updating correctly [67977]</li>\n<li>Fix &#8211; Resolved the support for translated event category archive slug that could lead to broken links on the front-end while using WPML (Props to Wilco in the support Forums) [62018]</li>\n<li>Fix &#8211; Resolved a bug where searching for past events in the List view would always yield no results (Thanks for the report @Davide) [61863]</li>\n<li>Fix &#8211; Resolved an issue where long file names would break plugin updates on some Windows installations (pros to @Alan [62552]</li>\n<li>Fix &#8211; Resolved an issue where the <code>/all</code> link on recurring events on non English websites could be broken (reported by @lumiest &#8211; thanks!) [68062]</li>\n<li>Fix &#8211; Pagination links on Month view are updating correctly [67977]</li>\n</ul>\n<h4>[4.3.0.1] 2016-10-14</h4>\n<ul>\n<li>Fix &#8211; Preventing legacy Facebook events from being duplicated</li>\n</ul>\n<h4>[4.3] 2016-10-13</h4>\n<ul>\n<li>Feature &#8211; Added Event Aggregator to enable service-based event imports from iCal feeds, Facebook, and Meetup</li>\n<li>Feature &#8211; Revamped the CSV import screens to work within the new Event Aggregator pages</li>\n<li>Tweak &#8211; Adjusted some view logic to support the new Event Views shortcode in Pro [44800]</li>\n<li>Tweak &#8211; Added a button to copy the system infomation on the help tab [43709]</li>\n<li>Tweak &#8211; Added an option for users to opt into automatic system infomation so our support system can grab the system information found on the help tab automatically [31645]</li>\n<li>Tweak &#8211; Use an earlier hook for iCal feed generation (props @jlambe) [64141]</li>\n<li>Tweak &#8211; Revise and simplify integration with Event Tickets attendee screen [61992]</li>\n<li>Tweak &#8211; Added context to a set of strings to make translation easier (props @pedro-mendonca) [64586]</li>\n<li>Tweak &#8211; Deprecated various disused functions and classes relating to the Meta Factory [39905]</li>\n<li>Fix &#8211; Cease using GLOB_BRACE for including deprecated files due to limited server support [63172]</li>\n<li>Fix &#8211; Avoid problems that can occur when hooking and unhooking actions (props @Chouby) [63474]</li>\n<li>Fix &#8211; Resolves an issue where we were duplicating a core WordPress hook but with a different set of parameters (props @Chouby) [66455]</li>\n<li>Fix &#8211; Correct the datetime formatting issues within the iCal feed (props @henryk) [65968]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Main::initOptions()</code> has been deprecated with no replacement</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Main::set_meta_factory_global()</code> has been deprecated in favor of using the <code>Tribe__Events__Meta_Factory</code> class</li>\n<li>Deprecated &#8211; The <code>setup_meta()</code> method in both the <code>Tribe__Events__Template__Single_Event</code> and <code>Tribe__Events__Template_Factory</code> classes has been deprecated</li>\n<li>Deprecated &#8211; The <code>the_title()</code>, <code>event_date()</code>, <code>event_category()</code>, <code>event_tag()</code>, <code>event_website()</code>, <code>event_origin()</code>, <code>organizer_name()</code>, <code>organizer_email()</code>, <code>venue_name()</code>, <code>venue_address()</code>, and <code>venue_map()</code> methods have been deprecated in the <code>Tribe__Events__Advanced_Functions__Register_Meta</code> class</li>\n<li>Deprecated &#8211; The <code>register()</code>, <code>check_exists()</code>, and <code>get_args()</code> methods have been deprecated in the <code>Tribe__Events__Meta_Factory</code> class</li>\n</ul>\n<h4>[4.2.7] 2016-09-15</h4>\n<ul>\n<li>Tweak &#8211; Additional support for plugin extensions</li>\n</ul>\n<h4>[4.2.6] 2016-08-31</h4>\n<ul>\n<li>Add &#8211; tribe_is_event_past() conditional to detect if event end time is past current time (Reported by @Jonathan in our support forums &#8211; thanks Jonathan.)</li>\n</ul>\n<h4>[4.2.5] 2016-08-17</h4>\n<ul>\n<li>Fix &#8211; Fixed inconsistent template filtering logic for single event template [62525]</li>\n<li>Tweak &#8211; Restored preview for published events [64874]</li>\n</ul>\n<h4>[4.2.4] 2016-08-03</h4>\n<ul>\n<li>Tweak &#8211; Changed &#8220;Event Add-Ons&#8221; to load faster [64286]</li>\n<li>Fix &#8211; Fixed default venue setting [64628]</li>\n<li>Fix &#8211; Fixed default venue state and province settings [64629]</li>\n</ul>\n<h4>[4.2.3] 2016-07-20</h4>\n<ul>\n<li>Fix &#8211; In month view, be sure to unhook JSON-LD output when calling unhook function</li>\n<li>Fix &#8211; Incorrect JSON-LD event start and end times (thank you @jjbte for reporting on .org forums)</li>\n<li>Fix &#8211; Show Google Map and Link checkbox so they show when editing an event (Reported originally by Michael of @NailedIT in the .org forum)</li>\n<li>Fix &#8211; Use Community Events Venue Edit Link when on Community Events Forms instead of Admin (also as a result of the report abve from @NailedIT. Thanks again.)</li>\n</ul>\n<h4>[4.2.2] 2016-07-06</h4>\n<ul>\n<li>Fix &#8211; Small CSS Issue on Welcome Page</li>\n<li>Fix &#8211; Month view on mobile device width doesn&#8217;t have links to prev/next months</li>\n<li>Fix &#8211; Reimport of updated CSV removes featured image (Bug #46149)</li>\n<li>Fix &#8211; Fixed the issue that would make multiple organizers details disappear when trying to submit invalid event data using Community</li>\n<li>Fix &#8211; Add a check to avoid being unable to switch view when Filter Bar plugin is active and at least one field is set to auto-complete mode</li>\n<li>Fix &#8211; Only add the events custom post type to the tag archive queries and not custom queries with tags [45635]</li>\n<li>Fix &#8211; When using the filter tribe_events_excerpt_allow_shortcode shortcodes will be maybe be processed in event excerpts in the list views [42289]</li>\n</ul>\n<h4>[4.2.1.1] 2016-06-28</h4>\n<ul>\n<li>Fix &#8211; Ensure translations load as expected with all supported versions of WordPress (thanks to @JacobALund for originally reporting this on .org forums)</li>\n</ul>\n<h4>[4.2.1] 2016-06-22</h4>\n<ul>\n<li>Tweak &#8211; Adjust the caching rules for Month View for faster loading</li>\n<li>Fix &#8211; Replace a bad return type to avoid unnecessary notices in the error log</li>\n<li>Fix &#8211; Add missing styles for correctly hide screen reader text</li>\n<li>Fix &#8211; Fixes <code>tribe_get_event_link()</code> which wasn&#8217;t working when passing second parameter as `true&#8217;</li>\n<li>Tweak &#8211; Reduce the ginormous font size of Month View titles in skeleton styles</li>\n<li>Fix &#8211; Add styling to adjust List View description to full width</li>\n<li>Fix &#8211; Miscellaneous tweaks to improve the Month and Day views</li>\n<li>Fix &#8211; Fix a shorthand array that was causing errors in PHP 5.2 and 5.3 when importing events</li>\n</ul>\n<h4>[4.2] 2016-06-08</h4>\n<ul>\n<li>Feature &#8211; Added Google Maps API key field in the Settings tab to avoid map timeouts and errors on larger sites (Thanks to Yan for reporting this!)</li>\n<li>Feature &#8211; Added support for featured image, multiple organizers, excerpt and more custom fields in the .csv file import function for events (Thank you to Graphic Designer for posting on UserVoice!)</li>\n<li>Feature &#8211; Added support for featured image, description, map details and more custom fields in the .csv file import function for venues</li>\n<li>Feature &#8211; Added support for featured image and description in the .csv file import function for organizers (Thank you to Rebecca for posting on UserVoice!)</li>\n<li>Feature &#8211; Added an oEmbed template for events</li>\n<li>Feature &#8211; Improve performance of a query used to determine if there are free/uncosted events (Thank you @fabianmarz for the pull request!)</li>\n<li>Feature &#8211; Added support for attaching custom post types to events</li>\n<li>Tweak &#8211; Improved filtering of the <code>tribe_event_featured_image()</code> function (Cheers to @fabianmarz!)</li>\n<li>Tweak &#8211; Add an encoding class for the CSV importer to prevent non utf8 characters from preventing imports (Thanks to screenrage for the report!)</li>\n<li>Tweak &#8211; Improved our JSON-LD output to ensure consistency (Props to @garrettjohnson and Lars!)</li>\n<li>Tweak &#8211; Language files in the <code>wp-content/languages/plugins</code> path will be loaded before attempting to load internal language files (Thank you to user aafhhl for bringing this to our attention!)</li>\n<li>Tweak &#8211; Switch to HTTPS for the &#8220;Powered by The Events Calendar&#8221; link (Thank you Cynthia for reporting this!)</li>\n<li>Tweak &#8211; Switch to using HTTPS by default for interactions with Google Maps API</li>\n<li>Tweak &#8211; Improved filterability of calendar excerpts by introducing the new <code>tribe_events_get_the_excerpt</code> filter hook</li>\n<li>Tweak &#8211; Improved filtering of organizer details when importing by CSV (Props to @Geir for bringing this up!)</li>\n<li>Tweak &#8211; Adjustments for single event view in Twenty Fifteen theme</li>\n<li>Tweak &#8211; Improved performance of query used to test for events without any cost</li>\n<li>Tweak &#8211; Added missing semicolon to a laquo (Props to mwender on GitHub for the fix!)</li>\n<li>Tweak &#8211; Improve the &#8220;stickiness&#8221; of CSV import column mappings (Thank you @jamesgol!)</li>\n<li>Tweak &#8211; Consistency of JSON-LD markup improved (Cheers to @garrettjohnson for the help!)</li>\n<li>Tweak &#8211; Avoid notice-level errors when working with WP CLI on a site where The Events Calendar is also active (Thanks to @sun)</li>\n<li>Tweak &#8211; Corrected the spelling of timezone in the CSV Importer&#8217;s event field</li>\n<li>Tweak &#8211; Updated venue and organizer templates to use the new architecture for attaching custom post types to events</li>\n<li>Tweak &#8211; Move plugin CSS to PostCSS</li>\n<li>Tweak &#8211; Category default view is now set to <code>default</code> in place of hardcoding the current default view in the category base rewrite rule [31907]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__PUE__Checker</code>, <code>Tribe__Events__PUE__Plugin_Info</code>, and <code>Tribe__Events__PUE__Utility</code> classes are deprecated and are replaced by <code>Tribe__PUE__Checker</code>, <code>Tribe__PUE__Plugin_Info</code>, and <code>Tribe__PUE__Utility</code> classes</li>\n<li>Fixed &#8211; Changed the use of <code>have_posts()</code> in the maybe iCal links for the main views that could cause an infinite loop</li>\n<li>Accessibility &#8211; Focus styles added for search fields</li>\n<li>Accessibility &#8211; Add ARIA labels for Month/Day/List sub nav</li>\n<li>Accessibility &#8211; Add ARIA label for events footer sub nav heading</li>\n</ul>\n<h4>[4.1.4] 2016-05-19</h4>\n<ul>\n<li>Fix &#8211; Improve accuracy of list view pagination after switching from month view</li>\n<li>Tweak &#8211; Give the multi-organizer form &#8216;sticky&#8217; properties so values persist even if the submission is initially rejected</li>\n<li>Tweak &#8211; Resolved minor CSS issues in the welcome page</li>\n</ul>\n<h4>[4.1.3] 2016-04-28</h4>\n<ul>\n<li>Fix &#8211; Month View single days are now ordered as follows: sticky events, ongoing multi-day events, all day events, then start time. In other words, all events should be ordered as you&#8217;d expect when viewing events in Month View.</li>\n<li>Fix &#8211; Updated the compatibility of CSV importer with WordPress 4.5 due to a change in the <code>post_status</code> filter. This will help prevent some of the errors you may have seen when importing events using a CSV file.</li>\n<li>Tweak &#8211; Added new event names for AJAX success to the List, Month, and Day views to help The Events Calendar&#8217;s compatibility with our other premium plugins.</li>\n</ul>\n<h4>[4.1.2] 2016-04-11</h4>\n<ul>\n<li>Tweak &#8211; Removed an unneeded hook that attempted to add a query argument to event tag links</li>\n<li>Fix &#8211; Resolved an issue where events marked as &#8220;sticky&#8221; would not display as such in Month View</li>\n<li>Fix &#8211; Dashes, hyphens, or whatever you like to call them in the events archive slug no longer breaks the URL</li>\n<li>Fix &#8211; The notice that pops up when a conflicting &#8220;events&#8221; page exists can now be dismissed</li>\n</ul>\n<h4>[4.1.1.1] 2016-04-07</h4>\n<ul>\n<li>Security &#8211; Tightened up security with post type link filtering (props to Nadal Soler for reporting this issue!)</li>\n<li>Security &#8211; Tightened up security around tribe bar submissions (props to Paul Mynarsky for reporting this issue!)</li>\n</ul>\n<h4>[4.1.1] 2016-03-30</h4>\n<ul>\n<li>Fix &#8211; Resolved bug where array notices were output on single event pages when venues were not set (props to zaxiscreative for reporting this issue!)</li>\n<li>Fix &#8211; Resolved issue where the Month View in mobile sizes retained the long day-of-week names when the abbreviations should have been used (props to Lucy for the bug report!)</li>\n<li>Fix &#8211; Fixed bug where a &#8220;0&#8221; was added to the default Venue name when creating a new event</li>\n<li>Fix &#8211; Fixed notice that caused Ajax requests to fail (props to cgrymala on WP.org for reporting this!)</li>\n<li>Fix &#8211; Removed quotes from around TZID-specified timezones in iCal feeds which causes problems with some parsers (props to factory44 for reporting the issue that lead to this fix)</li>\n<li>Fix &#8211; Resolved various capitalization issues with German translations (props to oheinrich in our forums for pointing out this issue!)</li>\n</ul>\n<h4>[4.1.0.1] 2016-03-17</h4>\n<ul>\n<li>Fix &#8211; Resolved multiple issues with the German <code>de_DE</code> language file that caused a number of site-breaking issues</li>\n</ul>\n<h4>[4.1] 2016-03-15</h4>\n<ul>\n<li>Feature &#8211; Added a tribe_get_venue_website_url() function for fetching Venue website URLs (props to fervorcreative in our forums for this request!)</li>\n<li>Performance &#8211; Lazy-load venue and organizer selector data</li>\n<li>Tweak &#8211; Allow iCal filenames to be filtered via a new filter: tribe_events_ical_feed_filename</li>\n<li>Tweak &#8211; Added a hook to allow single day queries in month view to be filtered: tribe_events_month_daily_events_query_args</li>\n<li>Tweak &#8211; Improved the logic around rebuilding known date ranges</li>\n<li>Tweak &#8211; Always show the &#8220;Merge Duplicates&#8221; button for venues and organizers in the Events General Settings page</li>\n<li>Tweak &#8211; Allow the &#8220;same slug&#8221; notice to be dismissed and fix some text in that message</li>\n<li>Tweak &#8211; Ignore alpha/beta/rc suffixes on version numbers when checking template versions</li>\n<li>Tweak &#8211; Add a filter for month view daily events query: tribe_events_month_daily_events_query_args</li>\n<li>Tweak &#8211; Added a more flexible cost range parsing function</li>\n<li>Tweak &#8211; Obfuscate license keys Events &gt; Help &gt; System Information</li>\n<li>Fix &#8211; Fixed a fatal that sometimes occurred when refreshing the import CSV page</li>\n<li>Fix &#8211; Fixed issue where some characters were not escaped appropriately for month and year formats</li>\n<li>Fix &#8211; Added missing tribe-loading@2x.gif</li>\n<li>Fix &#8211; Fixed a warning produced by passing a DateTime() object into start_date or end_date args of tribe_get_events (props to iamhexcoder for the pull request!)</li>\n<li>Fix &#8211; Fixed bug where events in month view were not always sorted in chronological order</li>\n<li>Fix &#8211; Fixed the System Info URL in Events &gt; Help</li>\n<li>Fix &#8211; Resolved issue where the default country would be &#8220;Array&#8221; if no default country is set</li>\n<li>Fix &#8211; Fixed bug where ajaxurl was sometimes undefined</li>\n</ul>\n<h4>[4.0.7] 2016-03-02</h4>\n<ul>\n<li>Fix &#8211; Resolve display issues on templates with Jetpack and a few themes</li>\n<li>Fix &#8211; Mobile breakpoints on month view working with custom breakpoints</li>\n<li>Fix &#8211; Reordering Venue and Organizer metadata no longer breaks titles</li>\n<li>Fix &#8211; Prevented notices from happening when using <code>the_title</code> filter</li>\n<li>Fix &#8211; iCal links now will respect categories on the first page</li>\n<li>Fix &#8211; Prevent third-party bugs with SEO plugins when inserting events programmatically</li>\n<li>Fix &#8211; Organizer information is showing up again correctly</li>\n<li>Fix &#8211; Modified the add-on license validation method to better explain what is happening</li>\n<li>Fix &#8211; Description on mobile views now have the correct class attribute on HTML</li>\n<li>Fix &#8211; Added missing semicolon on the list navigation for &#8220;&amp;laquo&#8221;</li>\n</ul>\n<h4>[4.0.6] 2016-02-17</h4>\n<ul>\n<li>Tweak &#8211; Adjust injection of event data into the_content from priority 10 to 9 for better 3rd-party plugin compatibility</li>\n<li>Tweak &#8211; Change mobile month view selector to load event details below the calendar for better theme compatibility</li>\n<li>Tweak &#8211; Better handling of edge cases on the post_excerpt for List View</li>\n<li>Tweak &#8211; Removal of generic CSS classes like <code>.updated</code> and <code>.published</code></li>\n<li>Fix &#8211; Prevent Notices from appearing when using <code>tribe_get_organizer()</code></li>\n<li>Fix &#8211; Make HTML Single Event Pages valid</li>\n<li>Fix &#8211; Numeric named categories URLs are now fully working</li>\n<li>Fix &#8211; Event Title now Accepts HTML on Tooltips</li>\n<li>Fix &#8211; Licenses Tab now will work with <code>DISALLOW_FILE_MODS</code> (Props to Sun for spotting and fixing this)</li>\n</ul>\n<h4>[4.0.5] 2016-01-15</h4>\n<ul>\n<li>Security &#8211; Security fix with Venues and Organizers (props to grantdayjames for reporting this!)</li>\n</ul>\n<h4>[4.0.4] 2015-12-23</h4>\n<ul>\n<li>Tweak &#8211; Including the latest embedded Event Tickets release for backward compatibility</li>\n</ul>\n<h4>[4.0.3] 2015-12-22</h4>\n<ul>\n<li>Tweak &#8211; Adjust single-event.php template to allow the &#8220;Time&#8221; title and content to be filterable (Props to Sitecrafting for highlighting this issue!)</li>\n<li>Fix &#8211; Resolved issue with an overly escaped Event Category edit URL that prevented editing categories (Thanks to Ian for the first report of this issue!)</li>\n<li>Fix &#8211; Fixed issue where clicking on columns on the Events listed in the Admin Dashboard were ALWAYS sorted by Event start/end date before sorting by the column selected (Cheers to Corrado for bringing this to our attention!)</li>\n</ul>\n<h4>[4.0.2] 2015-12-16</h4>\n<ul>\n<li>Tweak &#8211; Adding better support for non-numeric cost values on events (Props to Mirja for highlighting this!)</li>\n<li>Tweak &#8211; Avoid notice level errors when advanced events list widget settings are saved (Thank you Johan for reporting the issue!)</li>\n<li>Tweak &#8211; Improve messaging in the same-slug warning message (Thanks to Simon for bringing this to our attention!)</li>\n<li>Tweak &#8211; Hook to Event Tickets to inject event dates into ticket emails</li>\n<li>Tweak &#8211; Adding better support for default venues (Props to Karly for noting this!)</li>\n<li>Tweak &#8211; Improve handling of internationalized slugs (Cheers to Oliver for the help!)</li>\n<li>Fix &#8211; Ensure the past events list displays the correct events when accessed via ajax (Thank you Jesse for highlighting this!)</li>\n<li>Fix &#8211; Support ordering by venue/organizer within event queries (Thank you Doug for bringing this to our attention!)</li>\n<li>Fix &#8211; Fixed issue where events with the same date/time would sometimes be excluded from single-event navigation (Cheers to JeremyEnglert for the tip!)</li>\n<li>Fix &#8211; Resolved issue where events set with the explicit cost of 0 were not showing as &#8220;Free&#8221; (Thank you terrizsolo for reporting this!)</li>\n<li>Fix &#8211; Fixed bug where the datepicker in Twenty Sixteen was really ugly</li>\n<li>Fix &#8211; Fixed bug where using Quick Edit on events caused the table columns in the event list to become jumbled on save (Props to A K for the report!)</li>\n<li>Fix &#8211; Resolved bug where category links sometimes included event category 1 (Thank you Anthony for the original report of this problem!)</li>\n<li>Fix &#8211; Fixed a settings page URL (Props to Kristy for the heads up!)</li>\n</ul>\n<h4>[4.0.1] 2015-12-10</h4>\n<ul>\n<li>Tweak &#8211; Add a warning message for major updates</li>\n<li>Tweak &#8211; For SEO reasons, use an h1 for the title rather than an h2 (props to wpexplorer for this fix)</li>\n<li>Tweak &#8211; Target the calendar view grid in JS using a simpler selector</li>\n<li>Fix &#8211; Resolved WP 4.4 related fatal on the Nav Menu page that prevented the admin footer from rendering/enqueuing JS</li>\n<li>Fix &#8211; Resolved bug where visiting /events/upcoming could sometimes result in an infinite redirect loop</li>\n<li>Fix &#8211; Removed <code>wp_trim_excerpt</code> and use only it&#8217;s powers, fixing the excerpt problem</li>\n<li>Fix &#8211; Fixed bug where the mobile calendar view did not display the date for the date being viewed</li>\n<li>Fix &#8211; Fixed bug where the admin toolbar&#8217;s Events &gt; Import &gt; CSV did not link to the CSV importer page</li>\n<li>Fix &#8211; Fixed issue where the events list in the admin dashboard were not ordered in an intuitive manner</li>\n<li>Fix &#8211; Resolved bug where sorting by event category or tag resulted in an error</li>\n<li>Fix &#8211; Fixed bug where full event content text was displayed where excerpts should have been displayed</li>\n<li>Fix &#8211; Resolved issue where events imported via CSV were excluded from single event navigation</li>\n<li>Fix &#8211; Fixed bug where /events/list would sometimes 404 on a new install</li>\n<li>Fix &#8211; Resolved bug where multiday all-day events displayed the end date as one day later than it should be when the End of Day Cut-off was set to something other than 12am</li>\n<li>Fix &#8211; Timezone handling fixed within generated iCal feeds</li>\n</ul>\n<h4>[4.0] 2015-12-02</h4>\n<ul>\n<li>Security &#8211; A TON of escaping was added to our codebase thanks to the efforts of the always-helpful Andy Fragen (@afragen)</li>\n<li>Feature &#8211; Moved the Ticket framework code into its own plugin (event-tickets)</li>\n<li>Feature &#8211; The event cost now supports more international formats with the addition of the tribe_events_cost_separators filter (Thank you remokrol for bringing this to our attention!)</li>\n<li>Feature &#8211; Added support for the twentysixteen theme</li>\n<li>Feature &#8211; Created a new Add-Ons tab in Settings so that TEC add-ons can have a consolidated settings tab</li>\n<li>Feature &#8211; Improve the date formats UI by providing example output for each selected format</li>\n<li>Tweak &#8211; Restructured TEC&#8217;s core settings code for reusability with other standalone plugins like Event Tickets</li>\n<li>Tweak &#8211; Deprecate old JS event names in favor of a new JS event naming standard. Example: deprecated tribe_ev_runAjax in favor of run-ajax.tribe</li>\n<li>Tweak &#8211; Consolidated import pages for TEC and add-ons</li>\n<li>Tweak &#8211; When suggesting a UTF-8 compatibility CSV formatting tool, point to one that still exists</li>\n<li>Tweak &#8211; Added the ability to filter attendees CSV items via tribe_events_tickets_attendees_csv_items (Props to @bostondv on GitHub for this patch!)</li>\n<li>Tweak &#8211; Updated all excerpt output to use tribe_events_get_the_excerpt() to ensure a consistent display of excerpt content (Cheers to Joseph to pointing this out!)</li>\n<li>Tweak &#8211; Add support for wp_get_document_title in response to the WordPress 4.4 deprecation of wp_title</li>\n<li>Tweak &#8211; Check post creation permissions before letting users create venues and organizers from the event meta box</li>\n<li>Tweak &#8211; Only display data separators between fields that have data when rendering organizers (Thank you Bud for highlighting this issue!)</li>\n<li>Tweak &#8211; When a user cannot create organizers, prevent the auto-selection of organizers when editing an event</li>\n<li>Tweak &#8211; Remove microformat CSS classes from templates and replace with namespaced content-relevant CSS classes</li>\n<li>Tweak &#8211; Changed the &#8220;updated&#8221; CSS class to &#8220;tribe-updated&#8221; so that it is properly namespaced (Thank you vijayrajesh!)</li>\n<li>Tweak &#8211; The Plugin Update Checker will now auto-save valid plugin keys (Thanks to Denon for originally bringing this up!)</li>\n<li>Tweak &#8211; Cleaned up the output of JSON-LD data. Filterable via the new tribe_google_data_markup_json filter</li>\n<li>Tweak &#8211; Drop the use of the generic CSS class &#8220;placeholder&#8221; in favor of &#8220;tribe-event-placeholder&#8221; (Thanks to Marc on the forums!)</li>\n<li>Tweak &#8211; Adjusted the CSS padding on Admin Menu items for Events</li>\n<li>Tweak &#8211; Various codesniffer fixes</li>\n<li>Tweak &#8211; tribe_get_venue_link() no longer echoes if you ask it to return an <a> element</a></li>\n<li>Tweak &#8211; Error messages for empty Venue names</li>\n<li>Tweak &#8211; Improve our responsiveness for the widget mini calendar, allowing smaller sidebars.</li>\n<li>Tweak &#8211; No longer retrieve empty costs when fetching all costs for all events</li>\n<li>Tweak &#8211; Change the priority of bootstrapping the-events-calendar to ensure it occurs before any of the TEC addons in the event some addons are upgraded to v4.0 later than TEC</li>\n<li>Tweak &#8211; Adjust the logic used for adding a noindex/follow tag to event views</li>\n<li>Tweak &#8211; No longer hiding default address fields when default venues are selected when Pro is active</li>\n<li>Fix &#8211; Resolved issue where the iCal feed did not provide an appropriately formatted timezone in some cases (Cheers to Matt for the report!)</li>\n<li>Fix &#8211; Added support for translating some previously untranslatable strings (Props to tititou36, media325, and Stef!)</li>\n<li>Fix &#8211; Prevented duplicate CSS IDs on the mini calendars (Cheers to Corrado for the help!)</li>\n<li>Fix &#8211; Fixed bug causing tribe_get_single_ical_link() and tribe_get_ical_link() to use the same URL when it shouldn&#8217;t (Props to Ben Byrne @drywall on Twitter for the heads up!)</li>\n<li>Fix &#8211; Fixed issue where the &#8220;Add another organizer&#8221; text wasn&#8217;t using the correct singular label (Thank you MIKE for the report!)</li>\n<li>Fix &#8211; Various CSS fixes for twenty(ten-fifteen)</li>\n<li>Fix &#8211; Improved our handling of <code>get_current_screen()</code> across the plugin, avoiding notices and warnings (Thank you Mike for the help!)</li>\n<li>Fix &#8211; Fixed bug where accessing object properties on a non object errored out when saving event meta (props to @dalethedeveloper on GitHub for this fix!)</li>\n<li>Fix &#8211; Fixed bug where organizer ID meta attached sometimes included a blank record. That blank record is no longer returned in tribe_get_organizer_ids()</li>\n<li>Fix &#8211; Fixed error message returned when tabbing away from a blank event name meta box so that it properly indicates that an event name is required (Our thanks to @tapan29bd for this fix!)</li>\n<li>Fix &#8211; Resolved issue where Timezone event start/end date property name strings were malformed which guaranteed a a call to get_post_meta for Timezone date strings</li>\n<li>Fix &#8211; Fixed CSS issue where the month view calendar could sometimes extend beyond the edge of the page when Skeleton Styles were enabled</li>\n<li>Fix &#8211; Fixed a problem where iCal data was generated with incorrect dates in the case of some all days events (thanks to Matt for highlighting this)</li>\n<li>Fix &#8211; Resolved a problem causing the previous month view to appear when it should not</li>\n<li>Fix &#8211; Fixed issue in mobile month view where date was missing from heading</li>\n<li>Fix &#8211; Resolved issue that caused /events/ to 404 if it was visited on a new install before hitting &#8220;Save&#8221; on the Events &gt; Settings &gt; Display page</li>\n<li>Deprecated &#8211; The Tribe__Events__Main::defaultValueReplaceEnabled() method is being deprecated in favor of tribe_get_option(&#8216;defaultValueReplace&#8217;). Schedules for removal in v4.5</li>\n<li>Deprecated &#8211; The tribe_event_link() has been deprecated in favor of tribe_get_event_link(). Scheduled for removal in 5.0</li>\n<li>Deprecated &#8211; The third parameter of tribe_get_organizer_link() (the $echo parameter) has been deprecated and is scheduled for removal in 5.0</li>\n<li>Deprecated &#8211; Tribe__Events__Abstract_Deactivation in favor of Tribe__Abstract_Deactivation</li>\n<li>Deprecated &#8211; Tribe__Events__Admin__Helpers in favor of Tribe__Admin__Helpers</li>\n<li>Deprecated &#8211; Tribe__Events__App_Shop in favor of Tribe__App_Shop</li>\n<li>Deprecated &#8211; Tribe__Events__Autoloader in favor of Tribe__Autoloader</li>\n<li>Deprecated &#8211; Tribe__Events__Cache in favor of Tribe__Cache</li>\n<li>Deprecated &#8211; Tribe__Events__Cache_Listener in favor of Tribe__Cache_Listener</li>\n<li>Deprecated &#8211; Tribe__Events__Changelog_Reader in favor of Tribe__Changelog_Reader</li>\n<li>Deprecated &#8211; Tribe__Events__Credits in favor of Tribe__Credits</li>\n<li>Deprecated &#8211; Tribe__Events__Date_Utils in favor of Tribe__Date_Utils</li>\n<li>Deprecated &#8211; Tribe__Events__Field in favor of Tribe__Field</li>\n<li>Deprecated &#8211; Tribe__Events__Settings in favor of Tribe__Settings</li>\n<li>Deprecated &#8211; Tribe__Events__Settings_Tab in favor of Tribe__Settings_Tab</li>\n<li>Deprecated &#8211; Tribe__Events__Support in favor of Tribe__Support</li>\n<li>Deprecated &#8211; Tribe__Events__Template_Part_Cache in favor of Tribe__Template_Part_Cache</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Attendees_Table in favor of Tribe__Tickets__Attendees_Table in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Metabox in favor of Tribe__Tickets__Metabox in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Ticket_Object in favor of Tribe__Tickets__Ticket_Object in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Tickets in favor of Tribe__Tickets__Tickets in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Tickets_Pro in favor of Tribe__Tickets__Tickets_Handler in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Validate in favor of Tribe__Validate</li>\n<li>Deprecated &#8211; Tribe__Events__View_Helpers in favor of Tribe__View_Helpers</li>\n<li>Deprecated &#8211; Tribe__Events__Main::OPTIONNAME in favor of Tribe__Main::OPTIONNAME</li>\n<li>Deprecated &#8211; Tribe__Events__Main::OPTIONNAMENETWORK in favor of Tribe__Main::OPTIONNAMENETWORK</li>\n<li>Deprecated &#8211; Tribe__Events__Main::addHelpAdminMenuItem() in favor of Tribe__Settings_Manager::add_help_admin_menu_item()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::addNetworkOptionsPage() in favor of Tribe__Settings_Manager::add_network_options_page()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::array_insert_after_key() in favor of Tribe__Main::array_insert_after_key()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::array_insert_before_key() in favor of Tribe__Main::array_insert_before_key()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::debug() in favor of Tribe__Debug::debug()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::defaultValueReplaceEnabled() in favor of tribe_get_option( &#8216;defaultValueReplace&#8217; )</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doHelpTab() in favor of Tribe__Settings_Manager::do_help_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doNetworkSettingTab() in favor of Tribe__Settings_Manager::do_network_settings_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doSettingTabs() in favor of Tribe__Settings_Manager::do_setting_tabs()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::do_licenses_tab() in favor of Tribe__Settings_Manager::do_licenses_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNetworkOption() in favor of Tribe__Settings_Manager::get_network_option()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNetworkOptions() in favor of Tribe__Settings_Manager::get_network_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNotices() in favor of Tribe__Notices::get()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getOption() in favor of Tribe__Settings_Manager::get_option()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getOptions() in favor of Tribe__Settings_Manager::get_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::have_addons() in favor of Tribe__Settings_Manager::have_addons()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::isNotice() in favor of Tribe__Notices::is_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginDir in favor of Tribe__Events__Main::plugin_dir</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginName in favor of Tribe__Events__Main::plugin_name</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginPath in favor of Tribe__Events__Main::plugin_path</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginUrl in favor of Tribe__Events__Main::plugin_url</li>\n<li>Deprecated &#8211; Tribe__Events__Main::removeNotice() in favor of Tribe__Notices::remove_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::renderDebug() in favor of Tribe__Debug::render()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::saveAllTabsHidden() in favor of Tribe__Settings_Manager::save_all_tabs_hidden()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::setNetworkOptions() in favor of Tribe__Settings_Manager::set_network_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::setNotice() in favor of Tribe__Notices::set_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::truncate() in favor of tribe_events_get_the_excerpt()</li>\n<li>Deprecated &#8211; tribe_event_beginning_of_day() in favor of tribe_beginning_of_day()</li>\n<li>Deprecated &#8211; tribe_event_end_of_day() in favor of tribe_end_of_day()</li>\n<li>Deprecated &#8211; tribe_event_format_date() in favor of tribe_format_date()</li>\n<li>Deprecated &#8211; tribe_events_the_notices() in favor of tribe_the_notices()</li>\n</ul>\n<h4>3.x and previous</h4>\n<p>For release notes from the 3.x and older lifecycles, see our <a href=\"https://theeventscalendar.com/category/products/release-notes/\" rel=\"nofollow ugc\">full historical release notes</a>.</p>\n\";s:11:\"screenshots\";s:2015:\"<ol><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2755131\" alt=\"Month View with hover\"></a><p>Month View with hover</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2755131\" alt=\"Mobile Views\"></a><p>Mobile Views</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2755131\" alt=\"Single event\"></a><p>Single event</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2755131\" alt=\"List View\"></a><p>List View</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-5.jpg?rev=2755091\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-5.jpg?rev=2755091\" alt=\"Event Editor\"></a><p>Event Editor</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.jpg?rev=2755091\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.jpg?rev=2755091\" alt=\"Events admin listing\"></a><p>Events admin listing</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.jpg?rev=2755091\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.jpg?rev=2755091\" alt=\"General Settings\"></a><p>General Settings</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.jpg?rev=2755091\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.jpg?rev=2755091\" alt=\"Display Settings\"></a><p>Display Settings</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2755131\" alt=\"CSV Importer\"></a><p>CSV Importer</p></li></ol>\";s:7:\"reviews\";s:16140:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Not usable on black theme background</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ryder203/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/99ee06889dc63a6297940963fee21ea4?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/99ee06889dc63a6297940963fee21ea4?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ryder203/\" class=\"reviewer-name\">t-ryder <small>(ryder203)</small></a> on <span class=\"review-date\">October 15, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">This plugin lacks proper CSS and styling for when you have a dark theme for your website. It looks horrible and unusable no matter how you config the settings... waste of time.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Support</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/wickeninc/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/11f70f0bae410bb847e573a7b56e7ef0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/11f70f0bae410bb847e573a7b56e7ef0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/wickeninc/\" class=\"reviewer-name\">wickeninc</a> on <span class=\"review-date\">October 15, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">It\'s a power plugin with lots of settings. Their support was great getting my questions answered. Special thanks to Jean.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It works and good support</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/daveatcos/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0067719e080b620c22b4fe54369437e1?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0067719e080b620c22b4fe54369437e1?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/daveatcos/\" class=\"reviewer-name\">daveatcos</a> on <span class=\"review-date\">October 14, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I\'ve found this to be the best events plugin and when I\'ve needed support, it has been good. The ability to import via csv is great. The only area that could be improved is for duplicate or recurring events and that\'s why I\'ve given 4 stars rather than 5.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Thank you!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/design-and-internet/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0ac163765babe44d9d4ca0ce729a3cc7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0ac163765babe44d9d4ca0ce729a3cc7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/design-and-internet/\" class=\"reviewer-name\">designandinternet <small>(Design and Internet)</small></a> on <span class=\"review-date\">October 13, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Abz &amp; Jean helped fix the issue by inspecting the code of an ongoing problem. Great minds working together. Thanks for the prompt fix. </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">This WAS our go to - but NO MORE...</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/jonbius/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/50934d8943d306ac61b1b3b3f6091675?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/50934d8943d306ac61b1b3b3f6091675?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/jonbius/\" class=\"reviewer-name\">jonbius</a> on <span class=\"review-date\">October 12, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">We\'ve used TEC on hundreds of sites we built, for many years. It was always a safe bet.\n\nBut the 6.0 release has hosed down nearly every site we had with a calendar of events. Data stopped showing, orders reversed, migrations of data get stuck. I\'ve had to spend hundreds of dollars (unbillable) to pay my developer to fix it all. And then every time we think it\'s fixed, another incremental \"upgrade\" happens, and breaks it all again.\n\nWe\'re done with TEC. I don\'t know what we will use, but I refuse to install it on another site.\n\nI know, I know... it\'s our fault. Always is.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">was very happy untill 6.X....</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/markbasisreclamenl/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/95ad54810e022c8c4c8b9268ae173c3e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/95ad54810e022c8c4c8b9268ae173c3e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/markbasisreclamenl/\" class=\"reviewer-name\">Basis Reclame <small>(mark@basisreclame.nl)</small></a> on <span class=\"review-date\">October 10, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I was using this plugin for a year. Me and my clients were happy.\nAfter updating the plugin and migrating the events, no events were listed on the calender page. I troubleshot the errots (timezone error), but still, no events. The events still exist and are visible when you go to them directly but cant seem to get them on the calender page.\n\nAm I missing something?</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Very happy and grateful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/jklodt/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b9c2c4b05175457679777da3d9c98055?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b9c2c4b05175457679777da3d9c98055?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/jklodt/\" class=\"reviewer-name\">jklodt</a> on <span class=\"review-date\">October 7, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Even the free version does everything I need, especially with the additional shortcode and ticket plugins. Beautiful templates, just installed it on three websites and works everywhere as it should! Great! Thank you!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Product But Support Takes Time</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/rectofossa/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4f070dfd546882b66c1ea61adf802dfe?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4f070dfd546882b66c1ea61adf802dfe?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/rectofossa/\" class=\"reviewer-name\">rectofossa</a> on <span class=\"review-date\">October 14, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><strong>This is a great product with some very impressive add-ons.</strong> Works great out of the box - but if you\'re using some of the more advanced features I recommend you read the manual! But don\'t let that put you off - the support materials are comprehensive and once you get your head around how the trick stuff works it\'s well worth the effort. \n\nHowever the v6 iteration clearly has a few teething problems that seem to have increased response times a bit. Hopefully they\'ll get on top of that v quickly and this will settle down - but in fairness, yes they <strong>do </strong>get back to you and sort stuff out. </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">WHY?</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ltimoniels/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/fb2619cc5a21522672c3bf912ff421e1?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/fb2619cc5a21522672c3bf912ff421e1?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ltimoniels/\" class=\"reviewer-name\">Timo Niels <small>(ltimoniels)</small></a> on <span class=\"review-date\">October 4, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I\'ve been so happy about this plugin that i used with its shortcode to insert it into an elementor site. The popus it generated for every single event have been so great. But now...\n\nWithout updating the shortcode was gone and all the entered events were lost. so i updated... terrible mistake. Events now show up on a single standrtpage for every single event, so popups, no shortcode, all over bad design. I\'m sad you changed nearly everything, what has been so great about you plugin... :| </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">First choice of event calendars</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/henrikrossini/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ded1cbef1ada74a020b2eeeff8f01275?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ded1cbef1ada74a020b2eeeff8f01275?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/henrikrossini/\" class=\"reviewer-name\"> <small>(henrikrossini)</small></a> on <span class=\"review-date\">October 3, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I’ve been using TEC on several sites now and for a while. Can’t find any other alternatives as good as this plugin.\n\nHad some problems with a view getting stuck but their support helped us out with great patience. \n\nI’d recommended this plugin if you need a great event calendar on your website.</div>\n</div>\n\";}s:13:\"download_link\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.1.1.zip\";s:11:\"screenshots\";a:9:{i:1;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2755131\";s:7:\"caption\";s:21:\"Month View with hover\";}i:2;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2755131\";s:7:\"caption\";s:12:\"Mobile Views\";}i:3;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2755131\";s:7:\"caption\";s:12:\"Single event\";}i:4;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2755131\";s:7:\"caption\";s:9:\"List View\";}i:5;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-5.jpg?rev=2755091\";s:7:\"caption\";s:12:\"Event Editor\";}i:6;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-6.jpg?rev=2755091\";s:7:\"caption\";s:20:\"Events admin listing\";}i:7;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-7.jpg?rev=2755091\";s:7:\"caption\";s:16:\"General Settings\";}i:8;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-8.jpg?rev=2755091\";s:7:\"caption\";s:16:\"Display Settings\";}i:9;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2755131\";s:7:\"caption\";s:12:\"CSV Importer\";}}s:4:\"tags\";a:5:{s:8:\"calendar\";s:8:\"calendar\";s:5:\"event\";s:5:\"Event\";s:6:\"events\";s:6:\"events\";s:9:\"organizer\";s:9:\"organizer\";s:8:\"schedule\";s:8:\"schedule\";}s:8:\"versions\";a:271:{s:3:\"1.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.zip\";s:5:\"1.5.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.1.zip\";s:5:\"1.5.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.2.zip\";s:5:\"1.5.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.3.zip\";s:5:\"1.5.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.4.zip\";s:5:\"1.5.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.5.zip\";s:5:\"1.5.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.6.zip\";s:3:\"1.6\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.zip\";s:5:\"1.6.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.1.zip\";s:5:\"1.6.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.2.zip\";s:5:\"1.6.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.3.zip\";s:5:\"1.6.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.4.zip\";s:5:\"1.6.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.5.zip\";s:3:\"2.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.zip\";s:5:\"2.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.1.zip\";s:6:\"2.0.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.10.zip\";s:6:\"2.0.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.11.zip\";s:5:\"2.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.2.zip\";s:5:\"2.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.3.zip\";s:5:\"2.0.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.4.zip\";s:5:\"2.0.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.5.zip\";s:5:\"2.0.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.6.zip\";s:5:\"2.0.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.7.zip\";s:5:\"2.0.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.8.zip\";s:5:\"2.0.9\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.9.zip\";s:3:\"3.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.zip\";s:5:\"3.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.1.zip\";s:5:\"3.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.2.zip\";s:5:\"3.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.3.zip\";s:3:\"3.1\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.1.zip\";s:4:\"3.10\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.10.zip\";s:6:\"3.10.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.10.1.zip\";s:4:\"3.11\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.zip\";s:6:\"3.11.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.1.zip\";s:6:\"3.11.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.2.zip\";s:4:\"3.12\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.zip\";s:6:\"3.12.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.1.zip\";s:6:\"3.12.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.2.zip\";s:6:\"3.12.3\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.3.zip\";s:6:\"3.12.4\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.4.zip\";s:6:\"3.12.5\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.5.zip\";s:6:\"3.12.6\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.6.zip\";s:3:\"3.2\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.2.zip\";s:3:\"3.3\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.3.zip\";s:5:\"3.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.3.1.zip\";s:3:\"3.4\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.4.zip\";s:5:\"3.4.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.4.1.zip\";s:3:\"3.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.5.zip\";s:5:\"3.5.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.5.1.zip\";s:3:\"3.6\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.6.zip\";s:5:\"3.6.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.6.1.zip\";s:3:\"3.7\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.7.zip\";s:3:\"3.8\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.8.zip\";s:5:\"3.8.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.8.1.zip\";s:3:\"3.9\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.zip\";s:5:\"3.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.1.zip\";s:5:\"3.9.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.2.zip\";s:5:\"3.9.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.3.zip\";s:3:\"4.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.zip\";s:5:\"4.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.1.zip\";s:5:\"4.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.2.zip\";s:5:\"4.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.3.zip\";s:5:\"4.0.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.4.zip\";s:5:\"4.0.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.5.zip\";s:5:\"4.0.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.6.zip\";s:5:\"4.0.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.7.zip\";s:3:\"4.1\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.zip\";s:7:\"4.1.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.0.1.zip\";s:5:\"4.1.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.zip\";s:7:\"4.1.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.1.zip\";s:5:\"4.1.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.2.zip\";s:5:\"4.1.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.3.zip\";s:5:\"4.1.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.4.zip\";s:3:\"4.2\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.zip\";s:5:\"4.2.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.zip\";s:7:\"4.2.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.1.zip\";s:5:\"4.2.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.2.zip\";s:5:\"4.2.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.3.zip\";s:5:\"4.2.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.4.zip\";s:5:\"4.2.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.5.zip\";s:5:\"4.2.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.6.zip\";s:5:\"4.2.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.7.zip\";s:3:\"4.3\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.zip\";s:7:\"4.3.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.0.2.zip\";s:5:\"4.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.zip\";s:7:\"4.3.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.2.zip\";s:7:\"4.3.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.2.1.zip\";s:7:\"4.3.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.3.1.zip\";s:7:\"4.3.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.1.zip\";s:7:\"4.3.4.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.3.zip\";s:7:\"4.3.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.5.1.zip\";s:3:\"4.4\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.zip\";s:7:\"4.4.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.0.2.zip\";s:5:\"4.4.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.zip\";s:7:\"4.4.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.2.zip\";s:7:\"4.4.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.2.1.zip\";s:7:\"4.4.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.3.1.zip\";s:7:\"4.4.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.4.1.zip\";s:7:\"4.4.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.5.1.zip\";s:3:\"4.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.zip\";s:7:\"4.5.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.1.zip\";s:7:\"4.5.0.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.3.zip\";s:7:\"4.5.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.1.1.zip\";s:6:\"4.5.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.zip\";s:8:\"4.5.10.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.2.zip\";s:8:\"4.5.11.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.11.1.zip\";s:6:\"4.5.12\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.zip\";s:8:\"4.5.12.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.1.zip\";s:8:\"4.5.12.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.2.zip\";s:8:\"4.5.12.4\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.4.zip\";s:8:\"4.5.13.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.13.1.zip\";s:5:\"4.5.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.zip\";s:7:\"4.5.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.2.zip\";s:7:\"4.5.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.3.1.zip\";s:7:\"4.5.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.4.1.zip\";s:7:\"4.5.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.5.1.zip\";s:7:\"4.5.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.6.1.zip\";s:7:\"4.5.7.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.7.1.zip\";s:5:\"4.5.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.zip\";s:7:\"4.5.8.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.2.zip\";s:7:\"4.5.9.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.9.1.zip\";s:7:\"4.6.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.0.1.zip\";s:7:\"4.6.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.1.1.zip\";s:6:\"4.6.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.zip\";s:8:\"4.6.10.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.2.zip\";s:6:\"4.6.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.zip\";s:8:\"4.6.11.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.2.zip\";s:8:\"4.6.12.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.12.1.zip\";s:8:\"4.6.13.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.13.1.zip\";s:6:\"4.6.14\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.zip\";s:8:\"4.6.14.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.2.zip\";s:8:\"4.6.15.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.15.1.zip\";s:8:\"4.6.16.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.16.1.zip\";s:8:\"4.6.17.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.17.1.zip\";s:8:\"4.6.18.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.18.1.zip\";s:8:\"4.6.19.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.19.1.zip\";s:7:\"4.6.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.2.1.zip\";s:6:\"4.6.20\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.zip\";s:8:\"4.6.20.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.2.zip\";s:8:\"4.6.21.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.21.1.zip\";s:6:\"4.6.22\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.zip\";s:8:\"4.6.22.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.2.zip\";s:8:\"4.6.23.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.23.1.zip\";s:6:\"4.6.24\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.zip\";s:8:\"4.6.24.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.2.zip\";s:8:\"4.6.25.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.25.1.zip\";s:6:\"4.6.26\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.zip\";s:8:\"4.6.26.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.2.zip\";s:7:\"4.6.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.3.1.zip\";s:7:\"4.6.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.4.1.zip\";s:7:\"4.6.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.5.1.zip\";s:7:\"4.6.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.6.1.zip\";s:7:\"4.6.7.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.1.zip\";s:7:\"4.6.8.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.8.1.zip\";s:7:\"4.6.9.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.9.1.zip\";s:3:\"4.7\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.zip\";s:7:\"4.7.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.0.2.zip\";s:7:\"4.7.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.1.1.zip\";s:7:\"4.7.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.2.1.zip\";s:7:\"4.7.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.3.1.zip\";s:7:\"4.7.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.4.1.zip\";s:3:\"4.8\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.zip\";s:7:\"4.8.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.0.2.zip\";s:7:\"4.8.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.1.1.zip\";s:7:\"4.8.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.2.1.zip\";s:7:\"4.9.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.1.zip\";s:7:\"4.9.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.2.zip\";s:7:\"4.9.0.4\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.4.zip\";s:5:\"4.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.zip\";s:7:\"4.9.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.2.zip\";s:8:\"4.9.10.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.10.1.zip\";s:8:\"4.9.11.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.11.1.zip\";s:8:\"4.9.12.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.12.1.zip\";s:8:\"4.9.13.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.13.1.zip\";s:8:\"4.9.14.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.14.1.zip\";s:7:\"4.9.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.2.1.zip\";s:5:\"4.9.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.zip\";s:7:\"4.9.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.1.zip\";s:7:\"4.9.3.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.3.zip\";s:7:\"4.9.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.4.1.zip\";s:7:\"4.9.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.5.1.zip\";s:7:\"4.9.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.6.1.zip\";s:7:\"4.9.7.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.7.1.zip\";s:7:\"4.9.8.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.8.1.zip\";s:7:\"4.9.9.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.9.1.zip\";s:5:\"5.0.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.zip\";s:7:\"5.0.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.1.zip\";s:7:\"5.0.0.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.3.zip\";s:7:\"5.0.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.1.zip\";s:7:\"5.0.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.2.zip\";s:5:\"5.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.zip\";s:7:\"5.0.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.2.zip\";s:7:\"5.0.2.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.3.zip\";s:5:\"5.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.zip\";s:7:\"5.0.3.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.2.zip\";s:7:\"5.0.3.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.3.zip\";s:7:\"5.1.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.1.zip\";s:7:\"5.1.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.2.zip\";s:7:\"5.1.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.1.zip\";s:7:\"5.1.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.2.zip\";s:7:\"5.1.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.1.zip\";s:7:\"5.1.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.2.zip\";s:5:\"5.1.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.zip\";s:7:\"5.1.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.1.zip\";s:5:\"5.1.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.zip\";s:7:\"5.1.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.1.zip\";s:5:\"5.1.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.zip\";s:7:\"5.1.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.1.zip\";s:5:\"5.1.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.zip\";s:7:\"5.1.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.1.zip\";s:6:\"5.10.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.10.0.zip\";s:6:\"5.10.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.10.1.zip\";s:6:\"5.11.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.11.0.zip\";s:6:\"5.12.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.0.zip\";s:6:\"5.12.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.1.zip\";s:6:\"5.12.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.2.zip\";s:6:\"5.12.3\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.3.zip\";s:6:\"5.12.4\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.4.zip\";s:6:\"5.13.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.13.0.zip\";s:6:\"5.14.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.zip\";s:8:\"5.14.0.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.1.zip\";s:8:\"5.14.0.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.2.zip\";s:8:\"5.14.0.3\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.3.zip\";s:8:\"5.14.0.4\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.4.zip\";s:6:\"5.14.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.1.zip\";s:6:\"5.14.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.2.zip\";s:8:\"5.14.2.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.2.1.zip\";s:6:\"5.15.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.15.0.zip\";s:8:\"5.15.0.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.15.0.1.zip\";s:6:\"5.16.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.0.zip\";s:6:\"5.16.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.1.zip\";s:8:\"5.16.1.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.1.1.zip\";s:6:\"5.16.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.2.zip\";s:8:\"5.16.2.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.2.1.zip\";s:6:\"5.16.3\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.3.zip\";s:8:\"5.16.3.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.3.1.zip\";s:6:\"5.16.4\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.4.zip\";s:5:\"5.2.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.zip\";s:7:\"5.2.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.1.zip\";s:5:\"5.2.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.zip\";s:7:\"5.2.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.1.zip\";s:7:\"5.2.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.2.zip\";s:5:\"5.3.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.zip\";s:7:\"5.3.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.1.zip\";s:5:\"5.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.zip\";s:7:\"5.3.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.1.zip\";s:7:\"5.3.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.2.zip\";s:5:\"5.3.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.zip\";s:7:\"5.3.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.1.zip\";s:7:\"5.3.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.2.zip\";s:5:\"5.4.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.zip\";s:7:\"5.4.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.1.zip\";s:7:\"5.4.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.2.zip\";s:7:\"5.4.0.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.3.zip\";s:5:\"5.5.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.zip\";s:7:\"5.5.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.1.zip\";s:7:\"5.5.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.2.zip\";s:5:\"5.6.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.6.0.zip\";s:5:\"5.7.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.7.0.zip\";s:5:\"5.7.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.7.1.zip\";s:5:\"5.8.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.8.0.zip\";s:5:\"5.8.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.8.1.zip\";s:5:\"5.8.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.8.2.zip\";s:5:\"5.9.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.9.0.zip\";s:5:\"5.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.9.1.zip\";s:5:\"5.9.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.9.2.zip\";s:5:\"6.0.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.0.zip\";s:7:\"6.0.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.0.1.zip\";s:5:\"6.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.1.zip\";s:7:\"6.0.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.1.1.zip\";s:5:\"trunk\";s:62:\"https://downloads.wordpress.org/plugin/the-events-calendar.zip\";}s:11:\"donate_link\";s:18:\"https://evnt.is/29\";s:7:\"banners\";a:2:{s:3:\"low\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";s:4:\"high\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";}}s:13:\"wordpress-seo\";a:25:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:4:\"19.8\";s:6:\"author\";s:43:\"<a href=\"https://yoa.st/1uk\">Team Yoast</a>\";s:14:\"author_profile\";s:37:\"https://profiles.wordpress.org/yoast/\";s:12:\"contributors\";a:3:{s:5:\"yoast\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/yoast/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2d6543ef6d3e1336c47d008809b87816?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Yoast\";}s:11:\"joostdevalk\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/joostdevalk/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/f08c3c3253bf14b5616b4db53cea6b78?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Joost de Valk\";}s:7:\"tdevalk\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/tdevalk/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6a9fe2fcb64d083319e85b3934a7ab21?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"tdevalk\";}}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:6:\"5.6.20\";s:6:\"rating\";i:96;s:7:\"ratings\";a:5:{i:5;i:25825;i:4;i:620;i:3;i:183;i:2;i:127;i:1;i:759;}s:11:\"num_ratings\";i:27514;s:15:\"support_threads\";i:388;s:24:\"support_threads_resolved\";i:345;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2022-10-11 8:01am GMT\";s:5:\"added\";s:10:\"2010-10-11\";s:8:\"homepage\";s:18:\"https://yoa.st/1uj\";s:8:\"sections\";a:6:{s:11:\"description\";s:12392:\"<h3>Yoast SEO: the #1 WordPress SEO plugin</h3>\n<p>Since 2008 Yoast SEO has helped millions of websites worldwide to <strong>rank higher in search engines</strong>.</p>\n<p>Yoast’s mission is <strong>SEO for Everyone</strong>. Our plugin’s users range from the bakery around the corner to some of the most popular sites on the planet.</p>\n<p>Yoast SEO Free contains everything that you need to manage your SEO, and the <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Premium</a> plugin and its extensions unlock even more tools and functionality.</p>\n<h4>GET AHEAD OF THE COMPETITION</h4>\n<p>To rank highly in search engines, you need to beat the competition. You need a better, faster, stronger website than the people who sell or do the same kinds of things as you.</p>\n<p>Yoast SEO is the most-used WordPress SEO plugin, and has helped millions of people like you to get ahead, and to stay ahead.</p>\n<h4>TAKING CARE OF YOUR WORDPRESS SEO</h4>\n<p>Yoast SEO is packed full of features, designed to help visitors and search engines to get the most out of your website. Some of our favourites are:</p>\n<ul>\n<li>Automated technical SEO improvements, like <strong>canonical URLs</strong> and <strong>meta tags</strong>.</li>\n<li>Advanced <strong>XML sitemaps</strong>; making it easy for Google to understand your site structure.</li>\n<li>Title and meta description templating, for <strong>better branding</strong> and consistent snippets in the search results.</li>\n<li>An in-depth Schema.org integration that will <strong>increase your chance of getting rich results</strong>, by helping search engines to understand your content.</li>\n<li>Full control over <strong>site breadcrumbs</strong>, so that users and search engines always know where they are.</li>\n<li><strong>Faster loading times</strong> for your whole website, due to an innovative way of managing data in WordPress.</li>\n<li><strong>[Premium]</strong> E-mail support for our <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Premium</a> users.</li>\n<li><strong>[Premium]</strong> The possibility to expand Yoast SEO with the <a href=\"https://yoa.st/1uv\" rel=\"nofollow ugc\">News SEO</a>, <a href=\"https://yoa.st/1uw\" rel=\"nofollow ugc\">Video SEO</a>, <a href=\"https://yoa.st/1uu\" rel=\"nofollow ugc\">Local SEO</a> and <a href=\"https://yoa.st/3rh\" rel=\"nofollow ugc\">WooCommerce SEO</a> extensions.</li>\n<li><strong>[Premium]</strong> <strong>New!</strong> Yoast SEO Premium comes with wide-ranging crawl settings that help you improve how search engines crawl your site.</li>\n<li><strong>[Premium]</strong> <strong>New!</strong> Yoast SEO Premium comes with an IndexNow integration to ping search engines like Microsoft Bing whenever you publish or update content.</li>\n</ul>\n<h4>WRITE KILLER CONTENT WITH YOAST SEO</h4>\n<p>We know content is king, that&#8217;s why Yoast SEO is famous for its <strong>state-of-the-art content and SEO analysis</strong>. Yoast SEO gives you:</p>\n<ul>\n<li><strong>SEO analysis</strong>: an invaluable tool while writing SEO-friendly content with the right (focus) keyphrases in mind.</li>\n<li><strong>Readability analysis</strong>: ensures that humans and search engines can read and understand your content.</li>\n<li><strong>Full language support</strong> for: English, German, French, Dutch, Spanish, Italian, Russian, Indonesian, Polish, Portuguese, Arabic, Swedish, Hebrew, Hungarian, Turkish, Czech, Norwegian, Slovak and Greek.</li>\n<li><strong>A Google preview</strong>, which shows what your listings will look like in the search results. Even on mobile devices!</li>\n<li><strong>Innovative Schema blocks</strong> for the WordPress block editor, so that your FAQ and HowTo content can be shown directly in the search results. Plus a breadcrumbs block to guide your users.</li>\n<li><strong>[Premium] Internal linking blocks</strong> to easily improve the structure of your content. Easily add a <strong>table of contents block</strong>, a <strong>related links block</strong>, a <strong>subpages</strong> block, or <strong>siblings block</strong>! Plus, we’ll keep adding these easy-to-add blocks to improve your site structure.</li>\n<li><strong>[Premium]</strong> Social previews to show you how your content will be shown on Twitter and Facebook. Plus: Social Appearance Templates to guarantee a consistent look.</li>\n<li><strong>[Premium]</strong> The Insights tool that shows you what your text focuses on. This way you can keep your article in line with your keyphrases.</li>\n<li><strong>[Premium]</strong> Optimize your content for synonyms and related keyphrases.</li>\n<li><strong>[Premium]</strong> Optimize your article for different word forms of your keyphrases, as the singular and plural. But also different verb forms, synonyms, and related keyphrases. This makes for more natural content!</li>\n<li><strong>[Premium]</strong> Automatic internal linking suggestions: write your article and get automatic suggested posts to link to!</li>\n<li><strong>[Premium]</strong> An orphaned content filter to detect posts that have no links pointing towards them!</li>\n<li><strong>[Premium]</strong> SEO workouts to make working on your site as easy as ABC. These SEO workflows will get your site into shape in no time!</li>\n<li><strong>[Premium]</strong> <strong>New!</strong> Yoast SEO Premium comes with a new word complexity feature that gives you actionable feedback on using difficult words. This feature is in beta and English only for now.</li>\n<li><strong>[Premium]</strong> <strong>New!</strong> Yoast SEO Premium comes with a new inclusive language analysis that helps you write inclusive content. This feature is opt-in, in beta and English only for now.</li>\n</ul>\n<h4>KEEP YOUR SITE IN PERFECT SHAPE</h4>\n<p>Whether you are an online entrepreneur, blogger or content creator, a developer, a (WordPress) SEO expert or a business owner, Yoast SEO helps you keep your website in perfect shape by:</p>\n<ul>\n<li>Tuning the engine of your website, so you can work on creating great content!</li>\n<li>Giving you <strong>cornerstone content</strong> and <strong>internal linking</strong> features to help you optimize your site structure in a breeze.</li>\n<li>Translating your content to <strong>structured data</strong> where possible, to help search engines understand your website.</li>\n<li>Helping you manage your team: with our <strong>SEO roles</strong> you can give colleagues access to specific sections of the Yoast SEO plugin.</li>\n<li><strong>[Premium] Automatically creating redirects</strong> when URLs change or when pages are deleted, and providing tools to manage or create redirects.</li>\n<li><strong>[Premium]</strong> Showing you <strong>social previews</strong> to manage the way your page is shared on social networks like Facebook and Twitter.</li>\n</ul>\n<h4>TRUST THE EXPERTS</h4>\n<p>Yoast is powered by a team of expert developers, testers, software architects, and SEO consultants. They work constantly to stay at the cutting edge of WordPress SEO, and to improve the plugin with every release.</p>\n<p>Yoast SEO is the <strong>only WordPress SEO plugin made by world-renowned SEO experts</strong>.</p>\n<h3>GET PREMIUM SUPPORT</h3>\n<p>The Yoast team offers regular support on the WordPress.org forums. But we hope you understand that we prioritize our Premium customers. This one-on-one email support is available to people who have purchased Yoast SEO Premium.</p>\n<p>Did you know that <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Premium</a> contains a lot of extra features:</p>\n<ul>\n<li>A <strong>redirect manager</strong> that prevents “404: page not found” errors</li>\n<li>Optimize without worrying about over-optimization with <strong>intelligent word form recognition</strong> available in multiple languages.</li>\n<li><strong>Internal linking blocks</strong> to structure your site easily.</li>\n<li><strong>Internal linking suggestions</strong> while you’re writing.</li>\n<li>Preview your content to see what it will look like in the search results and when shared on social media using the <strong>Google preview</strong> and <strong>social preview</strong>.</li>\n<li><strong>Cornerstone content checks</strong> that point search engines to your most important pages.</li>\n<li>Connect Yoast SEO to Zapier to easily <strong>create zaps that instantly share your published posts</strong> with 2000+ destinations like Twitter, Facebook, and much more.</li>\n</ul>\n<p>If you are serious about your WordPress SEO, install the <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Premium plugin</a>! <strong>Costs a little, saves a lot of time!</strong></p>\n<h4>OUR EXTENSIONS TO FURTHER IMPROVE YOUR WORDPRESS SEO</h4>\n<p>Check out these SEO add-ons by Yoast:</p>\n<ul>\n<li><strong><a href=\"https://yoa.st/1uu\" rel=\"nofollow ugc\">Yoast Local SEO</a></strong> optimizes your website for a local audience.</li>\n<li><strong><a href=\"https://yoa.st/1uw\" rel=\"nofollow ugc\">Yoast Video SEO</a></strong> ensures that Google understands what your video is about, increasing the chances of ranking in the video results.</li>\n<li><strong><a href=\"https://yoa.st/1uv\" rel=\"nofollow ugc\">Yoast News SEO</a></strong> for news websites that want to improve their visibility and performance in Google News.</li>\n<li><strong><a href=\"https://yoa.st/3rh\" rel=\"nofollow ugc\">WooCommerce SEO</a></strong> for all online shops that want to perform better in the search results and social media.</li>\n</ul>\n<p>These extensions work fine with the free version of Yoast SEO. Of course, the premium extensions also include 24/7 support.</p>\n<p>Oh, don&#8217;t forget: our <strong><a href=\"https://yoa.st/3ri\" rel=\"nofollow ugc\">Yoast Academy</a></strong> is for all entrepreneurs, bloggers, and anyone who wants to learn more about optimizing websites, improving your WordPress SEO, and if you want to take your content to the next level!</p>\n<h3>INTEGRATIONS</h3>\n<p>Yoast SEO integrates seamlessly into a range of themes and plugins. We work particularly well with:</p>\n<ul>\n<li>The <a href=\"https://wordpress.org/support/article/wordpress-editor/\">WordPress block editor</a> (or ‘Gutenberg’ editor).</li>\n<li>The official <a href=\"https://wordpress.org/plugins/amp/\">AMP</a> plugin, which changes your templates to use the ‘AMP’ HTML format.</li>\n<li>Google’s <a href=\"https://wordpress.org/plugins/web-stories/\">Web Stories</a> plugin, which helps you to create ‘<a href=\"https://amp.dev/about/stories/\" rel=\"nofollow ugc\">web stories</a>’.</li>\n<li>The <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">Advanced Custom Fields</a> plugin, when you also activate the <a href=\"https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/\">ACF Content Analysis for Yoast SEO</a> plugin.</li>\n<li>The <a href=\"https://wordpress.org/plugins/elementor/\">Elementor</a> website builder.</li>\n<li><a href=\"https://zapier.com/apps/yoast-seo/integrations\" rel=\"nofollow ugc\">Zapier</a>, which helps you automate your publishing flow.</li>\n<li><a href=\"https://wordpress.org/plugins/wp-search-with-algolia/\">Algolia</a> integration to improve the quality of your site search.</li>\n<li><a href=\"https://wordproof.com/\" rel=\"nofollow ugc\">WordProof</a>, which helps you prove ownership by adding timestamps.</li>\n</ul>\n<h3>BUG REPORTS</h3>\n<p>Do you want to report a bug for Yoast SEO? Best to do so in the WordPress SEO <a href=\"https://github.com/Yoast/wordpress-seo\" rel=\"nofollow ugc\">repository on GitHub</a>. Please note that GitHub is not a support forum and issues will be closed if they don’t meet the bug requirements.</p>\n<h3>READ MORE</h3>\n<p>Want more information on search engine optimization and Yoast SEO? Have a look at:</p>\n<ul>\n<li>The <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Plugin</a> official homepage.</li>\n<li>The <a href=\"https://yoa.st/1va\" rel=\"nofollow ugc\">Yoast SEO Help center</a>.</li>\n<li><a href=\"https://yoa.st/1v6\" rel=\"nofollow ugc\">WordPress SEO &#8211; The definitive Guide by Yoast</a>.</li>\n<li>Other <a href=\"https://yoa.st/1v9\" rel=\"nofollow ugc\">WordPress Plugins</a> by Team Yoast.</li>\n<li>Also follow Yoast on <a href=\"https://facebook.com/yoast\" rel=\"nofollow ugc\">Facebook</a>, <a href=\"https://www.instagram.com/yoast/\" rel=\"nofollow ugc\">Instagram</a> &amp; <a href=\"https://twitter.com/yoast\" rel=\"nofollow ugc\">Twitter</a>.</li>\n</ul>\n\";s:12:\"installation\";s:1039:\"<p>Starting with Yoast SEO consists of just two steps: installing and setting up the plugin. Yoast SEO is designed to work with your site’s specific needs, so don’t forget to go through the Yoast SEO first-time configuration as explained in the ‘after activation’ step!</p>\n<h3>INSTALL YOAST SEO FROM WITHIN WORDPRESS</h3>\n<ol>\n<li>Visit the plugins page within your dashboard and select ‘Add New’;</li>\n<li>Search for ‘Yoast SEO’;</li>\n<li>Activate Yoast SEO from your Plugins page;</li>\n<li>Go to ‘after activation’ below.</li>\n</ol>\n<h3>INSTALL YOAST SEO MANUALLY</h3>\n<ol>\n<li>Upload the ‘wordpress-seo’ folder to the /wp-content/plugins/ directory;</li>\n<li>Activate the Yoast SEO plugin through the ‘Plugins’ menu in WordPress;</li>\n<li>Go to ‘after activation’ below.</li>\n</ol>\n<h3>AFTER ACTIVATION</h3>\n<ol>\n<li>You should see (a notice to start) the Yoast SEO first-time configuration;</li>\n<li>Go through this configuration and set up the plugin for your site;</li>\n<li>You’re done!</li>\n</ol>\n\";s:3:\"faq\";s:6109:\"\n<dt id=\'how%20do%20the%20xml%20sitemaps%20in%20the%20yoast%20seo%20plugin%20work%3F\'>\nHow do the XML Sitemaps in the Yoast SEO plugin work?\n</h4>\n<p>\n<p>Having an XML sitemap can be beneficial for SEO, as Google can retrieve essential pages of a website very fast, even if the internal linking of a site isn’t flawless.<br />\nThe sitemap index and individual sitemaps are updated automatically as you add or remove content and will include the post types you want search engines to index. Post Types marked as noindex will not appear in the sitemap. <a href=\"https://yoa.st/3qt\" rel=\"nofollow ugc\">Learn more about XML Sitemaps</a>.</p>\n</p>\n<dt id=\'how%20can%20i%20add%20my%20website%20to%20google%20search%20console%3F\'>\nHow can I add my website to Google Search Console?\n</h4>\n<p>\n<p>It is straightforward to add your website to Google Search Console.<br />\n1. Create a Google Search Console account and login into your account.<br />\n2. Click ‘Add a property’ under the search drop-down.<br />\n3. Enter your website URL in the box and click ‘Continue’.<br />\n4. Click the arrow next to ‘HTML tag’ to expand the option.<br />\n5. Copy the meta tag.<br />\n6. Log in to your WordPress website.<br />\n7. Click on ‘SEO’ in the dashboard.<br />\n8. Click on ‘General’.<br />\n9. Click on the ‘Webmaster Tools’ tab.<br />\n10. Paste the code in the Google field and click ‘Save Changes’.<br />\n11. Go back to Google Search Console and click ‘Verify’.</p>\n<p>If you want more details steps, please visit <a href=\"https://yoa.st/3qu\" rel=\"nofollow ugc\">our article on our help center</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20implement%20yoast%20seo%20breadcrumbs%3F\'>\nHow do I implement Yoast SEO breadcrumbs?\n</h4>\n<p>\n<p>The steps below are a temporary solution as manual edits made to theme files may be overwritten with future theme updates. Please contact the theme developer for a permanent solution. We’ve written an article about the <a href=\"https://yoa.st/3qv\" rel=\"nofollow ugc\">importance of breadcrumbs for SEO</a>.</p>\n<p>To implement the <a href=\"https://yoa.st/3qw\" rel=\"nofollow ugc\">breadcrumbs</a> function in Yoast SEO, you will have to edit your theme. We recommend that prior to any editing of the theme files, a backup is taken. Your host provider can help you take a backup.<br />\nCopy the following code into your theme where you want the breadcrumbs to be. If you are not sure, you will need to experiment with placement:</p>\n<pre><code>&lt;?php\nif ( function_exists( \'yoast_breadcrumb\' ) ) {\n    yoast_breadcrumb( \'&lt;p id=\"breadcrumbs\"&gt;\',\'&lt;/p&gt;\' );\n}\n?&gt;\n</code></pre>\n<p>Common places where you could place your breadcrumbs are inside your <code>single.php</code> and/or <code>page.php</code> file just above the page’s title. Another option that makes it really easy in some themes is by just pasting the code in <code>header.php</code> at the very end.</p>\n<p>In most non-WooTheme themes, this code snippet should not be added to your <code>functions.php</code> file.<br />\nAlternatively, you can manually add the breadcrumb shortcode to individual posts or pages: <code>[wpseo_breadcrumb]</code></p>\n<p>If you need more details or a step by step guide, read our <a href=\"https://yoa.st/3qx\" rel=\"nofollow ugc\">Implementation guide for Yoast SEO breadcrumbs</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20noindex%20urls%3F\'>\nHow do I noindex URLS?\n</h4>\n<p>\n<p>Yoast SEO provides multiple options for setting a URL or group of URLs to noindex. <a href=\"https://yoa.st/3qy/\" rel=\"nofollow ugc\">Read more about how to do this in this guide</a>.</p>\n</p>\n<dt id=\'google%20shows%20the%20wrong%20description%2C%20how%20do%20i%20fix%20this%3F\'>\nGoogle shows the wrong description, how do I fix this?\n</h4>\n<p>\n<p>If you’ve crafted nice meta descriptions for your blog posts, nothing is more annoying than Google showing another description for your site completely in the search result snippet.</p>\n<p>Possible causes could be:<br />\n1. wrong description in code<br />\n2. Google cache is outdated<br />\n3. Search term manipulation<br />\n4. Google ignored the meta description</p>\n<p>You can <a href=\"https://yoa.st/3qz\" rel=\"nofollow ugc\">read more here on how to solve the issue with the wrong description</a>.</p>\n</p>\n<dt id=\'how%20often%20is%20yoast%20seo%20updated%3F\'>\nHow often is Yoast SEO updated?\n</h4>\n<p>\n<p>Yoast SEO is updated every two weeks. If you want to know why, please read <a href=\"https://yoa.st/3q-\" rel=\"nofollow ugc\">this post on why we release every two weeks</a>!</p>\n</p>\n<dt id=\'how%20do%20i%20get%20support%3F\'>\nHow do I get support?\n</h4>\n<p>\n<p>As our free plugin is used by millions of people worldwide, we cannot offer you all one on one support. If you have trouble with the Yoast SEO for WordPress plugin, you can get help on the support forums here at <a href=\"https://wordpress.org/support/plugin/wordpress-seo/\">wordpress.org</a> or by checking out our help center at <a href=\"https://yoa.st/3r1\" rel=\"nofollow ugc\">yoast.com/help/</a>.</p>\n<p>The plugins you buy at Yoast are called ‘premium plugins’ (even if Premium isn’t in its name) and include a complete year of free updates and premium support. This means you can contact our support team if you have any questions about that plugin.</p>\n<p><a href=\"https://yoa.st/3r2\" rel=\"nofollow ugc\">Read more on how to get support</a></p>\n</p>\n<dt id=\'what%20happens%20to%20my%20data%20if%20i%20enable%20usage%20tracking%3F\'>\nWhat happens to my data if I enable usage tracking?\n</h4>\n<p>\n<p><a href=\"https://yoa.st/4w7\" rel=\"nofollow ugc\">This page on yoast.com explains what data we collect to improve Yoast SEO</a>. We only collect data when you explicitly opt in. Read more about how we handle your data in <a href=\"https://yoa.st/4w8\" rel=\"nofollow ugc\">our Privacy Policy</a>.</p>\n</p>\n<dt id=\'i%20have%20a%20different%20question%20than%20listed%20here\'>\nI have a different question than listed here\n</h4>\n<p>\n<p>Your question has most likely been answered on our help center: <a href=\"https://yoa.st/1va\" rel=\"nofollow ugc\">yoast.com/help/</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:4527:\"<h4>19.8</h4>\n<p>Release Date: October 11th, 2022</p>\n<p>Yoast SEO 19.8 is out now! In this release, we’ve mainly focused on enhancements, fixes, and other improvements. For instance, you’ll find improvements to our structured data implementation. Check it out! Read more about what&#8217;s new in Yoast SEO 19.8 in <a href=\"https://yoa.st/release-11-10-22\" rel=\"nofollow ugc\">our release post in English</a> or <a href=\"https://yoa.st/release-11-10-22-spanish\" rel=\"nofollow ugc\">our release post in Spanish</a>!</p>\n<p>Enhancements:</p>\n<ul>\n<li>Enhances the Schema breadcrumbs generation to make sure that empty list items are not included, preventing Schema validation errors.</li>\n<li>Adds a <code>X-Robots-Tag: noindex, follow</code> header to all comment feeds to prevent them from being indexed, reducing duplicate content.</li>\n<li>Removes two notifications from the Yoast SEO dashboard: the one suggesting enabling auto-updates, and the one suggesting activating an add-on that is installed but currently inactive.</li>\n<li>Forces the <code>twitter:card</code> meta tag to the preferred <code>summary_large_image</code> value.</li>\n</ul>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug where a fatal error would be thrown on WordPress.com using PHP 8.0 in relation with the Debug Bar.</li>\n<li>Fixes a bug where a fatal error would be thrown when the <code>php_uname()</code> function is disabled by the web hosting provider and usage tracking is enabled.</li>\n<li>Fixes a bug where changes in the replacement variables (e.g. the value of the <code>%%title%%</code> replacement variable when the post title changes) would not be reflected in the Meta description length, the SEO title width, and the Keyphrase in SEO title assessments.</li>\n<li>Fixes a bug where passing <code>__false</code> to the <code>wpseo_robots</code> filter would result in a <code>max-image-preview:large</code> robots meta directive instead of the desired <code>noindex, nofollow</code> directive.</li>\n<li>Fixes a bug where robots meta tags would be unintentionally synchronized between pages in different languages when using multilingual plugins like WPML or Polylang.</li>\n<li>Fixes a bug where the query parameters from an image URL would be omitted in the sitemap.xml.</li>\n<li>Fixes a bug where the sidebar issue counter would show a wrong number of issues, on the first page load after an issue was resolved.</li>\n<li>Fixes a bug where Yoast SEO would conflict with Elementor, when Yoast Premium or Yoast News or Yoast Video is active, throwing console errors.</li>\n</ul>\n<p>Other:</p>\n<ul>\n<li>Deprecates the <code>wpseo_twitter_card_type</code> filter.</li>\n</ul>\n<h4>19.7.2</h4>\n<p>Release Date: October 5th, 2022</p>\n<p>Other:</p>\n<ul>\n<li>Removes the cURL minimal version check from the Site Health page, as it was causing issues.</li>\n</ul>\n<h4>19.7.1</h4>\n<p>Release Date: September 20th, 2022</p>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug where a fatal error would be thrown in combination with certain plugins that change the standard login page URL.</li>\n</ul>\n<p>Other:</p>\n<ul>\n<li>Changes the copy in the <code>robots.txt</code> comment.</li>\n</ul>\n<h4>19.7</h4>\n<p>Release Date: September 20th, 2022</p>\n<p>Yoast SEO 19.7 is out today! We’ve rolled out some general enhancements, bug fixes, and security improvements in this release. Go check it out! Read more about what&#8217;s new in Yoast SEO 19.7 in <a href=\"https://yoa.st/release-20-9-22\" rel=\"nofollow ugc\">our release post in English</a> or <a href=\"https://yoa.st/release-20-9-22-spanish\" rel=\"nofollow ugc\">our release post in Spanish</a>!</p>\n<p>Enhancements:</p>\n<ul>\n<li>Improves the handling of fatal errors in the front-end by preventing Yoast SEO to run in the login page, allowing users to access their dashboard.</li>\n<li>Excludes empty custom post type sitemaps from <code>sitemap_index.xml</code>.</li>\n<li>Introduces a new filter <code>wpseo_sitemap_post_type_first_links</code> that can be used to add links at the start of the first sitemap page for post types. Props to @jamalbou.</li>\n</ul>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug in the default editor where image elements would lead to repeated requests for that image source while editing content.</li>\n</ul>\n<p>Other:</p>\n<ul>\n<li>Adds new disabled toggles to the Crawl settings tab in the General page.</li>\n</ul>\n<h4>Earlier versions</h4>\n<p>For the changelog of earlier versions, please refer to <a href=\"https://yoa.st/yoast-seo-changelog\" rel=\"nofollow ugc\">the changelog on yoast.com</a>.</p>\n\";s:11:\"screenshots\";s:1928:\"<ol><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2643727\" alt=\"The Yoast SEO plugin general meta box. You&#039;ll see this on edit post pages, for posts, pages and custom post types.\"></a><p>The Yoast SEO plugin general meta box. You\'ll see this on edit post pages, for posts, pages and custom post types.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2643727\" alt=\"Example of the SEO analysis functionality.\"></a><p>Example of the SEO analysis functionality.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2643727\" alt=\"Example of the readability analysis functionality.\"></a><p>Example of the readability analysis functionality.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2643727\" alt=\"Overview of site-wide SEO problems and possible improvements.\"></a><p>Overview of site-wide SEO problems and possible improvements.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2643727\" alt=\"Control over which features you want to use.\"></a><p>Control over which features you want to use.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2643727\" alt=\"Easily import SEO data from other SEO plugins like All In One SEO pack, HeadSpace2 SEO and wpSEO.de.\"></a><p>Easily import SEO data from other SEO plugins like All In One SEO pack, HeadSpace2 SEO and wpSEO.de.</p></li></ol>\";s:7:\"reviews\";s:17669:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Useless! Cannot install without Twitter</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/favedave/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ad7fae6aca8b8f207e4ff0feb063f635?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ad7fae6aca8b8f207e4ff0feb063f635?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/favedave/\" class=\"reviewer-name\">favedave</a> on <span class=\"review-date\">October 19, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I tried to set it up and it REFUSES TO RUN SETUP without a twitter account! Fucking useless. I don\'t have and never will have twitter because it doesn\'t work with my business. WASTE OF TIME</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Title &amp; Description Gets Removed</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/abhijitprime/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/79c502feb5f62f9e973bc70f5ca3708e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/79c502feb5f62f9e973bc70f5ca3708e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/abhijitprime/\" class=\"reviewer-name\">abhijitprime</a> on <span class=\"review-date\">October 19, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I have used your plugin. The title &amp; description is added &amp; they are working fine. If we edit the page for two three times after inputing the title &amp; description, then the title &amp; description gets removed &amp; a negative number arises. Can you confirm about this. Its a peculiar problem am facing. Hope you will help me. Am using free version of the plugin.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/cheraedu/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ce0060bb44391cf7ea3caa30b31b9ddf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ce0060bb44391cf7ea3caa30b31b9ddf?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/cheraedu/\" class=\"reviewer-name\">cheraedu</a> on <span class=\"review-date\">October 18, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Great Plugin</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Very Weak Support</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/arabwoman/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7b446335db7a3f7d8fbab61b799f364f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7b446335db7a3f7d8fbab61b799f364f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/arabwoman/\" class=\"reviewer-name\">arabwoman</a> on <span class=\"review-date\">October 16, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Posted a question to know how to get a category\'s meta description, and they marked it as resolved, without replying. evidence screenshot: prnt.sc/btF2Lv3UusIP</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Yoast previously stop working</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/peroted/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/cd8ac2456715209f76e374640d7b2dbd?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/cd8ac2456715209f76e374640d7b2dbd?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/peroted/\" class=\"reviewer-name\">peroted</a> on <span class=\"review-date\">October 11, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I\'m surprised that nobody is ready to blow the alarm.\nI installed yoast on my aws lightsail WordPress and the yoast options not working on post edit dashboard. I taught it was my hosting company that has conflict with yoast, so I checked on my other sites with other hosting company but still having the same problem. I even Uninstall all my WordPress because of yoast but still the problem continue.\nPlease yoast developer should check the problem because we could not add focus keywords anymore.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">The best one!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/tombombadil/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/90a745242d4a837404688afa0bdb7376?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/90a745242d4a837404688afa0bdb7376?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/tombombadil/\" class=\"reviewer-name\">tombombadil</a> on <span class=\"review-date\">October 5, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I love it</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Is Yoast SEO worth it?</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/amazing787grace/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ffeec9716caa4ec458ca46dfbdc7e8ad?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ffeec9716caa4ec458ca46dfbdc7e8ad?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/amazing787grace/\" class=\"reviewer-name\">Grace Ninsiima <small>(amazing787grace)</small></a> on <span class=\"review-date\">October 1, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Are you looking to enhance your SEO? Look no forther than Yoast Plugin. This review expalins how you get the most out of it\'s fuctions.\n\nWhat is Yoast Plugin? Yoast SEO Plugin is one of the most downloaded WordPress plugins of all time. It makes it simple for your site to meet the most noteworthy technical SEO standards. It gives you the instruments to carry your substance to the best expectations of SEO with comprehensibility. Its effectively the most comprehensive SEO related wordpress plugin and best of all, it\'s mostly free!\n\nThe best part of Yoast SEO plugin is it\'s focus keyword feature; this wordpress plugin lets you use upto 5 focus keywords. Using this, you can easily optimize your article for that particular keyword and easily get better ranking in Google search. Yoast SEO will allow you to add SEO title, open graph meta, twitter cards, sitemaps, ping search engines, meta description, and meta keywords to each post and page of your site\n\nYaost SEO and 404 disovery? How does Yaost SEO deal with numerous keywords and SEO highlights?\n\nYoast SEO doesn\'t offer any google keyword suggestion feature and has nofollow external link control making it hard to link blog to outbound links or affiliate from blog posts.However, the notable problem that hapenned with Yoast SEO Plugin was related to images. Due to some bug, websites image attachments atsrted getting indexed and thats why many websites saw a huge traffic drop. However, you have the option to re-direct images to root page, add missing ALT and TITLE attributes. \n\nAnother challenge i found with this plugin is that most of it\'s premium features such keeping track of all the 404 page not found errors, necessitates visiting the google search console and not on the monitor screen; abit time wasting really. Some features such as role managing for multi-author blogs are non-existent. This means the interface leaves room for improvement. As regards SERP results, Yoast SEO comes in handy to offer full schema support as per your content, with the option of using a separate schema plugin such as MyThemeShop WP Rich Snippets plugin which has recently been revamped.  \n\nYaost SEO however, offers great support with their team. I found it really amazing to have a team of very active members wo will answer your questions withihn 24 hours time. They believe that SEo should permeate all aspects of your online marketing so their plugin is extensive and offers you a multitude of customization options. The plugin makes timely updates with added features for their preminum box and the free goodies. It gives very good tips to your onpage optimization and is prety relaible in my experience. I use a free version of Yoast SEO on all my SEO campaigns and it easily follows the KISS (keep it stupid simple) to keep in the loop.They have additional video tutorials to make your experience worthwhile.\n\nAs an alternative, please consider Rank Math. It\'s a good alternative that offers some of these SEO premium features for free. Bluehost and WordFence Security are also worth checking out. If you are looking to get real time monitoring and SEO, check every part of your site for searchability based on keywords, Yoast SEO is what you are looking for. Download it from WordPress Directory for free or go premium for more options.\n</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Excellent SEO plugin with awesome support!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/onlinelogomakers/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9d4de1af173d082092e505bba9916f1a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9d4de1af173d082092e505bba9916f1a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/onlinelogomakers/\" class=\"reviewer-name\">onlinelogomakers</a> on <span class=\"review-date\">September 21, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I am using Yoast SEO Premium plugin with the WooCommerce extension for my logo store. I can say it\'s very easy to use, and doing a great job for 6 years now. \nWhen I needed support, the response was always fast and very professional.\n</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Recomendo</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/anonymized-13836360/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4abc46daebb8b3cde35da435097d3431?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4abc46daebb8b3cde35da435097d3431?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/anonymized-13836360/\" class=\"reviewer-name\">Anonymous User 13836360 <small>(anonymized_13836360)</small></a> on <span class=\"review-date\">September 12, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Recomendo</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Ajuda muito!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/juanafernandes/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/147546e860f4accaa2c6a66090782275?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/147546e860f4accaa2c6a66090782275?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/juanafernandes/\" class=\"reviewer-name\">Diego Fernandes <small>(juanafernandes)</small></a> on <span class=\"review-date\">September 10, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Recomendo!</div>\n</div>\n\";}s:13:\"download_link\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.8.zip\";s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2643727\";s:7:\"caption\";s:114:\"The Yoast SEO plugin general meta box. You\'ll see this on edit post pages, for posts, pages and custom post types.\";}i:2;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2643727\";s:7:\"caption\";s:42:\"Example of the SEO analysis functionality.\";}i:3;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2643727\";s:7:\"caption\";s:50:\"Example of the readability analysis functionality.\";}i:4;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2643727\";s:7:\"caption\";s:61:\"Overview of site-wide SEO problems and possible improvements.\";}i:5;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2643727\";s:7:\"caption\";s:44:\"Control over which features you want to use.\";}i:6;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2643727\";s:7:\"caption\";s:100:\"Easily import SEO data from other SEO plugins like All In One SEO pack, HeadSpace2 SEO and wpSEO.de.\";}}s:4:\"tags\";a:5:{s:16:\"content-analysis\";s:16:\"Content analysis\";s:11:\"readability\";s:11:\"Readability\";s:6:\"schema\";s:6:\"schema\";s:3:\"seo\";s:3:\"seo\";s:11:\"xml-sitemap\";s:11:\"xml sitemap\";}s:8:\"versions\";a:26:{s:4:\"18.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.0.zip\";s:4:\"18.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.1.zip\";s:4:\"18.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.2.zip\";s:4:\"18.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.3.zip\";s:4:\"18.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.4.zip\";s:6:\"18.4.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.4.1.zip\";s:4:\"18.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.5.zip\";s:6:\"18.5.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.5.1.zip\";s:4:\"18.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.6.zip\";s:4:\"18.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.7.zip\";s:4:\"18.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.8.zip\";s:4:\"18.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.9.zip\";s:4:\"19.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.0.zip\";s:4:\"19.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.1.zip\";s:4:\"19.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.2.zip\";s:4:\"19.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.3.zip\";s:4:\"19.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.4.zip\";s:4:\"19.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.5.zip\";s:6:\"19.5.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.5.1.zip\";s:4:\"19.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.6.zip\";s:6:\"19.6.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.6.1.zip\";s:4:\"19.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.7.zip\";s:6:\"19.7.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.7.1.zip\";s:6:\"19.7.2\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.7.2.zip\";s:4:\"19.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.8.zip\";s:5:\"trunk\";s:56:\"https://downloads.wordpress.org/plugin/wordpress-seo.zip\";}s:11:\"donate_link\";s:18:\"https://yoa.st/1up\";s:7:\"banners\";a:2:{s:3:\"low\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";s:4:\"high\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";}}s:6:\"leadin\";a:25:{s:4:\"name\";s:70:\"HubSpot &#8211; CRM, Email Marketing, Live Chat, Forms &amp; Analytics\";s:4:\"slug\";s:6:\"leadin\";s:7:\"version\";s:7:\"9.0.123\";s:6:\"author\";s:59:\"<a href=\"http://hubspot.com/products/wordpress\">HubSpot</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/hubspotdev/\";s:12:\"contributors\";a:2:{s:10:\"hubspotdev\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/hubspotdev/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b0fc5d064b5de562cd2c4da8f2949488?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"HubSpot\";}s:6:\"leadin\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/leadin/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e01bb710319d405b425ca83629d9df92?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Leadin\";}}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:88;s:7:\"ratings\";a:5:{i:5;i:145;i:4;i:13;i:3;i:5;i:2;i:6;i:1;i:17;}s:11:\"num_ratings\";i:186;s:15:\"support_threads\";i:13;s:24:\"support_threads_resolved\";i:10;s:15:\"active_installs\";i:200000;s:12:\"last_updated\";s:21:\"2022-09-15 8:26am GMT\";s:5:\"added\";s:10:\"2014-03-12\";s:8:\"homepage\";s:45:\"http://www.hubspot.com/integrations/wordpress\";s:8:\"sections\";a:6:{s:11:\"description\";s:11649:\"<p><em>HubSpot is a platform with all the tools and integrations you need for marketing, sales, and customer service. Each product in the platform is powerful alone, but the real magic happens when you use them together. See the magic for yourself in the free HubSpot WordPress plugin.</em></p>\n<p>Build a relationship with your audience and grow your business with <a href=\"https://www.hubspot.com/products/wordpress?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">HubSpot</a>. HubSpot&#8217;s all-in-one WordPress plugin allows you to manage contacts (CRM), engage visitors with live chat and chatbots, add beautiful forms to pages, create engaging email marketing campaigns, and more.</p>\n<p>Use HubSpot to:</p>\n<ul>\n<li>💬 Connect 1:1 with visitors on your site in real-time using live chat and chatbots.</li>\n<li>📋 Capture leads with ease — build custom forms or link existing forms from your website in minutes.</li>\n<li>📧 Nurture your leads by sending newsletters &amp; automating email marketing campaigns.</li>\n<li>📈 Track the health of your business with easy-to-understand analytics dashboards.</li>\n<li>🚀 See a unified timeline of a contact’s page views, past conversations, and more in a WordPress CRM.</li>\n</ul>\n<p>Ready to get started? Click download in the top right corner of the page.</p>\n<h3>CRM &amp; Contact Management Platform</h3>\n<p>Your CRM in the HubSpot WordPress plugin is your company&#8217;s command center. It&#8217;s the place where you can track every single customer interaction and get a 360-degree view of your customers. You can even use it to manage or automate marketing, sales, and service processes.</p>\n<span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\"youtube-player\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/rbg0NHvu_dk?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe></span>\n<p>With HubSpot, you don&#8217;t need to jump from tool to tool to keep track of everything. Instead, you can store all of your data in one place.</p>\n<p>HubSpot’s CRM gives you ultimate visibility into customer interactions across every team in your organization. That means that everyone will be on the same page—from marketing to sales to customer service—and able to help your customers more effectively.</p>\n<p>Best of all, if you’re planning on growing your business (or you already are), HubSpot has the tools to grow with you.</p>\n<p>Features you&#8217;ll love suited specifically for your business needs:</p>\n<p>✅ Lead generation &amp; lead management<br />\n✅ Pipeline management<br />\n✅ Email marketing<br />\n✅ Reporting dashboard<br />\n✅ Contact management<br />\n✅ Prospect tracking</p>\n<h3><a href=\"https://www.hubspot.com/products/wordpress/email-marketing\" rel=\"nofollow ugc\">Email Newsletter &amp; Marketing Automation Software</a></h3>\n<p>Would you like to enhance your email marketing campaigns? 🤔</p>\n<p>Maybe you&#8217;d like to explore different automation features, build professional emails in minutes, and send them to your entire contact database with ease.</p>\n<p>Customers love our email marketing software tool for features like:</p>\n<p>🤩 <strong>20+ pre-designed email templates to match your campaign goals. (Choose from templates such as newsletters, eBooks, welcome emails, and more!)</strong></p>\n<blockquote>\n<p>All you have to do is add your content and press send!</p>\n</blockquote>\n<p>⚒️ <strong>Drag and drop email builder.</strong></p>\n<blockquote>\n<p>If you want more options to choose from, HubSpot makes it easy for you. Adjust typography, designs, colors, and more to create campaigns your subscribers will love!</p>\n</blockquote>\n<p>🤖 <strong>Email automation, tracking, and A/B testing.</strong></p>\n<blockquote>\n<p>Send emails anytime someone fills out a form or engages with your live chat &amp; chatbots. You can send messages immediately or use email scheduling to send messages later.</p>\n</blockquote>\n<p>Email is one of the most effective ways to stay connected to your audience. With email tracking, all of your emails are logged in your database. You can measure each email’s engagement with reports for open rate and click rate — and use that information to improve campaigns.</p>\n<h3><a href=\"https://www.hubspot.com/products/wordpress/forms\" rel=\"nofollow ugc\">Forms &amp; Popups</a></h3>\n<p>Want to know the easiest way to learn more about your visitors?</p>\n<p><em>Ask them directly.</em></p>\n<p>The problem is that forms can come in so many different shapes and sizes that it&#8217;s hard to know where to start. That&#8217;s why HubSpot has options for you.</p>\n<p>​​HubSpot&#8217;s form builder and popup plugin give you the power to create or edit forms in just a few clicks.</p>\n<p>First, get familiar with our different form types:</p>\n<p>✅ Embedded<br />\n✅ Standalone page<br />\n✅ Pop-up box<br />\n✅ Dropdown banner<br />\n✅ Slide in left/right box</p>\n<p>Then, when you&#8217;re ready to go, pick a custom template:</p>\n<p>✅ Contact us<br />\n✅ Newsletter sign up form template<br />\n✅ Support template<br />\n✅ eBook download template<br />\n✅ Event registration template<br />\n✅ More coming soon</p>\n<p>Choose from a variety of settings, color schemes, and fonts — or start from scratch. HubSpot comes with an intuitive form and popup builder that simplifies the process, no matter what type of form you have in mind.</p>\n<p>Rather stick with your existing forms and popup plugin? That’s fine too! HubSpot integrates with most WordPress form builders, form creators, and popup builders out-of-the-box so you don’t have to worry about a thing.</p>\n<h3><a href=\"https://www.hubspot.com/products/wordpress/live-chat\" rel=\"nofollow ugc\">Live Chat &amp; Chatbots</a></h3>\n<p>Make your website a 24-hour marketing machine on autopilot.</p>\n<p>Live web chat inside the HubSpot WordPress plugin streamlines the customer experience, making it easier than ever for you to engage with leads, convert them into customers, and provide them with the support they need.</p>\n<p>HubSpot’s WordPress live chat software offers:</p>\n<p>😀 Custom styling to match your website<br />\n🤖 A variety of bot options including:</p>\n<ul>\n<li>✅ Concierge bot</li>\n<li>✅ Qualify leads bot</li>\n<li>✅ Meetings bot</li>\n<li>✅ Tickets bot</li>\n<li>✅ Knowledge base &amp; support bot</li>\n<li>✅ Offline bot</li>\n</ul>\n<p>📲 Real-time messaging on the go via HubSpot’s mobile app<br />\n👨‍💻 A Slack integration to receive and respond to chat notifications<br />\n🕐 24/7 live support on autopilot</p>\n<p>Our free live chat feature helps you turn website visitors into customers by providing insightful, real-time support.</p>\n<h3><a href=\"https://www.hubspot.com/products/wordpress/analytics\" rel=\"nofollow ugc\">Analytics</a></h3>\n<p>Customers are browsing your website, but what are they actually looking at?</p>\n<p>The HubSpot WordPress plugin gives you a straightforward, visual answer.</p>\n<p>With built-in marketing analytics (email analytics, traffic analytics, WordPress analytics), it&#8217;s easy to understand which marketing actions are driving the most results… and which ones you need to fix. Quickly see how your forms, popup forms, live chat &amp; chatbots, email marketing, and sales follow-ups are helping grow your business.</p>\n<p>👩‍💻 <strong>Get a complete picture of who&#8217;s on your site.</strong></p>\n<p>What pages are being looked at? Who is visiting the pages? How long do they stay on-site? What parts of the site do they spend the most time on? With our plugin, you&#8217;ll be able to see everything about your visitor behavior in one place—and learn how to convert them into customers!</p>\n<p>📈 <strong>Get detailed reports across marketing channels.</strong></p>\n<p>Create detailed reports on performance of various assets, from blog posts and landing pages to email campaigns and more. Arrange these views in dashboards in your plugin, so you can easily see the performance of your website and make data-driven decisions.</p>\n<h3>Seamless Integrations</h3>\n<p>Ready to get started? Now you can easily integrate HubSpot with over <a href=\"https://ecosystem.hubspot.com/marketplace/apps?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">1030 integrations</a> including:</p>\n<p>💻 <strong>Social Media Software, Analytics, &amp; Advertising Software Integrations</strong></p>\n<p>✅ Adroll<br />\n✅ Facebook Ads<br />\n✅ Facebook Messenger<br />\n✅ Google Ads<br />\n✅ Hotjar<br />\n✅ Instagram<br />\n✅ Linkedin Ads<br />\n✅ Twitter<br />\n✅ YouTube</p>\n<p>📲 <strong>Communications &amp; Design Integrations</strong></p>\n<p>✅ Canva<br />\n✅ HelloSign<br />\n✅ Slack<br />\n✅ Vidyard<br />\n✅ Integromat<br />\n✅ Zoom</p>\n<p>🖥️ <strong>CRM, Email Marketing, &amp; Marketing Automation Integrations</strong></p>\n<p>✅ Active Campaign<br />\n✅ Campaign Monitor<br />\n✅ Constant Contact<br />\n✅ Drip<br />\n✅ Gmail<br />\n✅ Hustle<br />\n✅ Mailchimp<br />\n✅ Ontraport<br />\n✅ Outlook<br />\n✅ Salesforce<br />\n✅ Sendinblue<br />\n✅ WP Fusion<br />\n✅ Zoho</p>\n<p>💵 <strong>E-commerce (Online Store), Recurring Payment, &amp; Payment Processing Integrations</strong></p>\n<p>✅ BigCommerce<br />\n✅ Shopify<br />\n✅ Stripe<br />\n✅ WooCommerce</p>\n<p>📆 <strong>Events &amp; Meeting Scheduling Software Integrations</strong></p>\n<p>✅ Calendly<br />\n✅ Eventbrite<br />\n✅ The Events Calendar</p>\n<p>📋 <strong>Forms, Landing Page Builders, &amp; CRO Integrations</strong></p>\n<p>✅ Elementor<br />\n✅ Formidable Forms<br />\n✅ Forminator<br />\n✅ Gravity Forms<br />\n✅ Instapage<br />\n✅ JotForm<br />\n✅ Kali Forms<br />\n✅ MailOptIn<br />\n✅ Ninja Forms<br />\n✅ OptInMonster<br />\n✅ Sumo<br />\n✅ Survey Monkey<br />\n✅ Typeform<br />\n✅ Unbounce<br />\n✅ WPForms</p>\n<p>💬 <strong>Live Chat &amp; Customer Support Software Integrations</strong></p>\n<p>✅ Drift<br />\n✅ Front<br />\n✅ Help Scout<br />\n✅ Intercom<br />\n✅ LiveChat<br />\n✅ Pure Chat<br />\n✅ Zendesk</p>\n<p>🔋 <strong>Productivity &amp; Project Management Software Integrations</strong></p>\n<p>✅ Asana<br />\n✅ Jira</p>\n<h3>What are people saying about the HubSpot plugin?</h3>\n<blockquote>\n<p>“HubSpot was a big factor in helping us scale WP Buffs to $1M in revenue. Their plugin and sales CRM made our sales process so much more professional and kept us fully organized as we grew from 1 salesperson to 4. Plus, the reporting dashboards allow me to know where our sales game is strong and where we can still improve with just a few clicks. Needless to say, I&#8217;m all in on HubSpot.” – <strong>Joe Howard, Founder &amp; CEO, WP Buffs</strong></p>\n<p>“HubSpot educates marketers beyond just the anonymous web analytics they get from Google Analytics. Instead, it digs down to individual users.” – <strong>Michael Shoup, Founder / CEO, 12South Marketing</strong></p>\n<p>“HubSpot dramatically cuts down the time I spend on marketing. We used to spend tons of time generating very few inbound leads, but those numbers have gone through the roof with minimal effort.” – <strong>Brian Ruhlmann, Director of Sales &amp; Marketing, AdmitHub</strong></p>\n</blockquote>\n\";s:12:\"installation\";s:1227:\"<h4>Search</h4>\n<p>The easiest way to install this plugin is to use the WordPress Admin interface.</p>\n<ul>\n<li>Go to your admin dashboard</li>\n<li>Find the &#8220;Plugins&#8221; menu</li>\n<li>Click on &#8220;Add New&#8221;</li>\n<li>Search for &#8220;HubSpot&#8221;</li>\n<li>Click &#8220;Install Now&#8221;</li>\n<li>Go to your &#8220;Plugins&#8221; menu</li>\n<li>Click &#8220;Activate&#8221; on the HubSpot &#8211; CRM, Email Marketing, Live Chat, Forms &amp; Analytics plugin</li>\n<li>Log in or sign up for a HubSpot account</li>\n</ul>\n<p>Your WordPress site and HubSpot account will be connected and you&#8217;re ready to get started with HubSpot &#8211; CRM, Email Marketing, Live Chat, Forms &amp; Analytics.</p>\n<h4>Upload</h4>\n<ol>\n<li>Upload the &#8216;leadin&#8217; folder to the &#8216;/wp-content/plugins/&#8217; directory</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress</li>\n</ol>\n<p>Having trouble? Check out our <a href=\"https://knowledge.hubspot.com/articles/kcs_article/integrations/how-can-i-install-the-hubspot-tracking-code-for-wordpress?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">help documentation</a></p>\n\";s:3:\"faq\";s:6412:\"\n<dt id=\'requirements\'>\nRequirements\n</h4>\n<p>\n<ul>\n<li>Your website or blog must be using WordPress.org version 3.7 or higher on your server. We recommend the latest version.</li>\n<li>The plugin cannot be installed on WordPress.com sites, as they do not allow you to add plugins or Javascript.</li>\n<li>The wp_footer function must be included in your WordPress theme’s footer file (footer.php).</li>\n<li>This function is required for our Javascript snippet to be installed on every page of your site.</li>\n<li>You must be a WordPress admin to be able to install plugins for your site. If you are not the admin, you can forward these instructions to the person who manages your WordPress install.</li>\n</ul>\n</p>\n<dt id=\'what%20does%20the%20plugin%20do%3F\'>\nWhat does the plugin do?\n</h4>\n<p>\n<p>HubSpot&#8217;s WordPress plugin allows you to use HubSpot email marketing, CRM, forms, popups, analytics, and live chat on your WordPress website. This plugin gives you all the tools you need to grow your business and delight your contacts and customers.</p>\n</p>\n<dt id=\'what%20is%20hubspot%3F\'>\nWhat is HubSpot?\n</h4>\n<p>\n<p><a href=\"https://hubspot.com/?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">HubSpot</a> is an all-in-one CRM platform that provides a marketing, sales, and customer service products to help you grow your business.</p>\n</p>\n<dt id=\'who%20should%20use%20hubspot%3F\'>\nWho should use HubSpot?\n</h4>\n<p>\n<p>HubSpot is perfect for agencies, business owners (including small businesses and e-commerce companies), bloggers, designers, or anyone with a WordPress website that wants to use a seamless CRM plugin with built-in marketing tools. 135,000+ companies in 100+ countries already use HubSpot to grow their businesses.</p>\n</p>\n<dt id=\'are%20coding%20skills%20needed%20to%20use%20the%20hubspot%20wordpress%20plugin%3F\'>\nAre coding skills needed to use the HubSpot WordPress plugin?\n</h4>\n<p>\n<p>Not at all! HubSpot’s WordPress plugin is easy to download and starts working seamlessly with your WordPress site right away. You can take advantage of our CRM, live chat, email marketing, forms, and much more without the need to code.</p>\n</p>\n<dt id=\'what%20is%20available%20for%20free%20with%20hubspot%3F\'>\nWhat is available for free with HubSpot?\n</h4>\n<p>\n<p>HubSpot’s WordPress plugin is free to use with forms, contact management, email marketing, and more.</p>\n<p>HubSpot also has paid tiers available for those who want more advanced functionality like blogging, landing pages, search engine optimization (SEO), team email, retargeting, lead scoring, bots, email scheduling, NPS surveys, calls-to-action (CTAs), knowledge base, and more. If you&#8217;d like a complete view of the features offered in HubSpot&#8217;s free and paid tiers, view our <a href=\"https://hubspot.com/pricing?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">pricing page</a>.</p>\n<p>Our CRM for WordPress is powered by HubSpot’s <a href=\"https://www.hubspot.com/products/crm\" rel=\"nofollow ugc\">free CRM</a>.</p>\n</p>\n<dt id=\'do%20i%20need%20to%20install%20a%20wordpress%20smtp%20plugin%20to%20use%20hubspot%27s%20email%20feature%3F\'>\nDo I need to install a WordPress SMTP plugin to use HubSpot&#8217;s email feature?\n</h4>\n<p>\n<p>No, there’s no need to install an additional mail SMTP plugin.</p>\n<p>Unlike other WordPress form plugins and email plugins that send messages using a PHP mail function, HubSpot is a stand-alone email marketing software. You can <a href=\"https://knowledge.hubspot.com/email-notifications/how-can-i-find-my-email-servers-imap-and-smtp-information\" rel=\"nofollow ugc\">define your IMAP and SMTP</a> from your existing mail service (Gmail, Outlook, Yahoo) and stop worrying about email deliverability from within WordPress.</p>\n</p>\n<dt id=\'what%20types%20of%20forms%20and%20popups%20can%20i%20build%20with%20hubspot%3F\'>\nWhat types of forms and popups can I build with HubSpot?\n</h4>\n<p>\n<p>Here are some examples of the types of forms and popups you can create with HubSpot:</p>\n<ul>\n<li>advanced forms</li>\n<li>announcement popup</li>\n<li>appointment form</li>\n<li>banner bar</li>\n<li>calculator form</li>\n<li>conditional form</li>\n<li>conditional logic form</li>\n<li>contact button form</li>\n<li>contact form popup</li>\n<li>contact forms</li>\n<li>coupon popup</li>\n<li>custom form</li>\n<li>custom forms</li>\n<li>custom popup</li>\n<li>donation form</li>\n<li>email form</li>\n<li>email forms</li>\n<li>email submit form</li>\n<li>event form</li>\n<li>exit intent popup forms</li>\n<li>exit popup</li>\n<li>feedback form</li>\n<li>file upload form</li>\n<li>floating bar popup</li>\n<li>inline signup form</li>\n<li>lightbox popup</li>\n<li>mobile popup</li>\n<li>multi page form</li>\n<li>newsletter form</li>\n<li>newsletter popup</li>\n<li>order form</li>\n<li>payment form</li>\n<li>pdf form</li>\n<li>popup form</li>\n<li>quiz form</li>\n<li>quote form</li>\n<li>quote request form</li>\n<li>registration popup</li>\n<li>scroll trigger popup</li>\n<li>signature form</li>\n<li>signup form</li>\n<li>slide-in popup</li>\n<li>slide-in scroll popup</li>\n<li>star rating form</li>\n<li>sticky bar</li>\n<li>sticky popup</li>\n<li>subscription form</li>\n<li>survey form</li>\n<li>survey popup</li>\n<li>targeted popup</li>\n<li>time on site popup</li>\n<li>upload form</li>\n<li>user registration form</li>\n<li>web contact form</li>\n<li>web form</li>\n<li>welcome mat popup</li>\n<li>woocommerce popup</li>\n</ul>\n<p>Rather use your existing form tool? HubSpot integrates with most WordPress form builders and popup builders.</p>\n</p>\n<dt id=\'does%20hubspot%20support%20e-commerce%20stores%3F\'>\nDoes HubSpot support e-commerce stores?\n</h4>\n<p>\n<p>The HubSpot WordPress plugin is great for many types of businesses including ecommerce. For WooCommerce shop owners, consider the <a href=\"https://wordpress.org/plugins/makewebbetter-hubspot-for-woocommerce/\">HubSpot for WooCommerce plugin</a> for even added functionality in your shop.</p>\n</p>\n<dt id=\'my%20question%20is%20not%20listed.\'>\nMy question is not listed.\n</h4>\n<p>\n<p>Please visit the <a href=\"https://community.hubspot.com/?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">HubSpot Community</a> for more detailed documentation and support. Thank you!</p>\n</p>\n\n\";s:9:\"changelog\";s:375:\"<p><a href=\"https://plugins.svn.wordpress.org/leadin/trunk/changelog.txt\" rel=\"nofollow ugc\">Full changelog here</a><br />\n&#8211; Current version: 9.0.123<br />\n&#8211; Version release date: 2022-09-15</p>\n<h4>9.0.108 (2022-09-14)</h4>\n<ul>\n<li>Enqueue Meetings script</li>\n</ul>\n<h4>9.0.91 (2022-09-13)</h4>\n<ul>\n<li>Changed the placeholder text for form blocks</li>\n</ul>\n\";s:11:\"screenshots\";s:2397:\"<ol><li><a href=\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2785153\" alt=\"Measure impact with reports.\"></a><p>Measure impact with reports.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-2.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-2.png?rev=2785153\" alt=\"Organize, track, and nurture your leads in your free HubSpot CRM.\"></a><p>Organize, track, and nurture your leads in your free HubSpot CRM.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-3.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-3.png?rev=2785153\" alt=\"Your website forms will automatically sync with your HubSpot CRM.\"></a><p>Your website forms will automatically sync with your HubSpot CRM.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-4.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-4.png?rev=2785153\" alt=\"Nurture and convert leads with lists and email.\"></a><p>Nurture and convert leads with lists and email.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-5.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-5.png?rev=2785153\" alt=\"Send contacts a beautiful, effective and personalized email.\"></a><p>Send contacts a beautiful, effective and personalized email.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-6.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-6.png?rev=2785153\" alt=\"Add live chat to your website and easily engage &amp; help your site visitors.\"></a><p>Add live chat to your website and easily engage &amp; help your site visitors.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-7.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-7.png?rev=2785153\" alt=\"Add 24/7 chatbots to your website to help automate lead capture and support.\"></a><p>Add 24/7 chatbots to your website to help automate lead capture and support.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-8.png?rev=2785153\"><img src=\"https://ps.w.org/leadin/assets/screenshot-8.png?rev=2785153\" alt=\"Create beautiful forms and popups on your website in minutes using the intuitive drag and drop builder.\"></a><p>Create beautiful forms and popups on your website in minutes using the intuitive drag and drop builder.</p></li></ol>\";s:7:\"reviews\";s:14251:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">I really wanted to give this a go, but...</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/tac001/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4ea654af7854110c5c45c20ed2c8b76c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4ea654af7854110c5c45c20ed2c8b76c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/tac001/\" class=\"reviewer-name\">tac001</a> on <span class=\"review-date\">October 13, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I really wanted to give this a go, and all the way through sign up and creating my first form I was very impressed with the free version.  It was intuitive, helpful and promising.  I then pasted the short code for my first form, an email subscription box, which looked very good, and there it was, bright as day, a link back to hubspot, including a full logo, right in the middle of my page...!  Other offerings don\'t force this on you...!  I\'ve been through loads of offerings and Hubspot seemed so promising.  I wouldn\'t mind paying for extra options, which I really was planning in the long term, while I gave my brand new business a footing, but I refuse to be forced to pay, almost by blackmail...  Nope.  If this is the state of play at the beginning, what sort of strong arming will to be to come...?  Bye bye...\n\nEdit: I take it back, other providers also add their own marketing blurb...!  Total rubbish...!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Useful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/anonymized-13836360/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4abc46daebb8b3cde35da435097d3431?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4abc46daebb8b3cde35da435097d3431?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/anonymized-13836360/\" class=\"reviewer-name\">Anonymous User 13836360 <small>(anonymized_13836360)</small></a> on <span class=\"review-date\">September 12, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Useful</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Super</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/cagliarilive/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/5576a23335b7de45d28ab2ecba0d4452?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/5576a23335b7de45d28ab2ecba0d4452?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/cagliarilive/\" class=\"reviewer-name\">cagliarilive</a> on <span class=\"review-date\">September 12, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">pienamente soddisfatto del plugin</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">SuperB!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/postin/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/2b9fb5071ac423054179c0723d8e5dd2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/2b9fb5071ac423054179c0723d8e5dd2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/postin/\" class=\"reviewer-name\">Marcin Kordowski <small>(postin)</small></a> on <span class=\"review-date\">September 4, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Very useful WordPress plugin.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Love it!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ninjaco/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e5c3a38391b1468745e18c24dfc5050c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e5c3a38391b1468745e18c24dfc5050c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ninjaco/\" class=\"reviewer-name\">Jaco Kleynhans <small>(ninjaco)</small></a> on <span class=\"review-date\">August 29, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Hubspot is our preferred CRM.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">NO Cigar</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/edward4139/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6766f3400b9a35e72ad5a7613dfcc4cb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6766f3400b9a35e72ad5a7613dfcc4cb?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/edward4139/\" class=\"reviewer-name\">edward4139</a> on <span class=\"review-date\">August 19, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">It shows great promise, but as we cannot stay logged in for more than a few seconds we have NO idea. Jeeze extremely frustrating add in, open for help if you are reading this. Thanks. So far a big fat F in terms of rating, must try harder!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Very useful and really power up Online Business</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/nguyenbahoangnam2510/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/82585a039b44785e08ba9327af81dc5f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/82585a039b44785e08ba9327af81dc5f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/nguyenbahoangnam2510/\" class=\"reviewer-name\">nguyenbahoangnam2510</a> on <span class=\"review-date\">August 18, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I really like this plugin, this is all in one for managing both CRM and make it Online </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">One of the best CRMs</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/chrisckr/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ae4352d67d9e090d019ab5233a441e5c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ae4352d67d9e090d019ab5233a441e5c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/chrisckr/\" class=\"reviewer-name\">Chris <small>(chrisckr)</small></a> on <span class=\"review-date\">August 16, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">The variety of features is amazing. Best one i\'ve used with Wordpress.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">error in any page updates</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/jasyjoy/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/934fd249a144d931250d53abdf840cc7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/934fd249a144d931250d53abdf840cc7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/jasyjoy/\" class=\"reviewer-name\">jasyjoy</a> on <span class=\"review-date\">August 3, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I can\'t handle the error appear in CPanel</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Grandioso</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/mangelo/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/381f0ed5e0f9073ca3605df658e77e41?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/381f0ed5e0f9073ca3605df658e77e41?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/mangelo/\" class=\"reviewer-name\">mangelo</a> on <span class=\"review-date\">July 30, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Mantenerse así</div>\n</div>\n\";}s:13:\"download_link\";s:49:\"https://downloads.wordpress.org/plugin/leadin.zip\";s:11:\"screenshots\";a:8:{i:1;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2785153\";s:7:\"caption\";s:28:\"Measure impact with reports.\";}i:2;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-2.png?rev=2785153\";s:7:\"caption\";s:65:\"Organize, track, and nurture your leads in your free HubSpot CRM.\";}i:3;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-3.png?rev=2785153\";s:7:\"caption\";s:65:\"Your website forms will automatically sync with your HubSpot CRM.\";}i:4;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-4.png?rev=2785153\";s:7:\"caption\";s:47:\"Nurture and convert leads with lists and email.\";}i:5;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-5.png?rev=2785153\";s:7:\"caption\";s:60:\"Send contacts a beautiful, effective and personalized email.\";}i:6;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-6.png?rev=2785153\";s:7:\"caption\";s:78:\"Add live chat to your website and easily engage &amp; help your site visitors.\";}i:7;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-7.png?rev=2785153\";s:7:\"caption\";s:76:\"Add 24/7 chatbots to your website to help automate lead capture and support.\";}i:8;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-8.png?rev=2785153\";s:7:\"caption\";s:103:\"Create beautiful forms and popups on your website in minutes using the intuitive drag and drop builder.\";}}s:4:\"tags\";a:5:{s:9:\"analytics\";s:9:\"analytics\";s:3:\"crm\";s:3:\"crm\";s:15:\"email-marketing\";s:15:\"Email Marketing\";s:9:\"live-chat\";s:9:\"live chat\";s:9:\"marketing\";s:9:\"marketing\";}s:8:\"versions\";a:0:{}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:61:\"https://ps.w.org/leadin/assets/banner-772x250.png?rev=2785153\";s:4:\"high\";s:62:\"https://ps.w.org/leadin/assets/banner-1544x500.png?rev=2785153\";}}s:7:\"bbpress\";a:25:{s:4:\"name\";s:7:\"bbPress\";s:4:\"slug\";s:7:\"bbpress\";s:7:\"version\";s:5:\"2.6.9\";s:6:\"author\";s:58:\"<a href=\"https://bbpress.org\">The bbPress Contributors</a>\";s:14:\"author_profile\";s:47:\"https://profiles.wordpress.org/johnjamesjacoby/\";s:12:\"contributors\";a:5:{s:4:\"matt\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/matt/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/767fc9c115a1b989744c755db47feb60?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Matt Mullenweg\";}s:15:\"johnjamesjacoby\";a:3:{s:7:\"profile\";s:47:\"https://profiles.wordpress.org/johnjamesjacoby/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7a2644fb53ae2f7bfd7143b504af396c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"John James Jacoby\";}s:6:\"jmdodd\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/jmdodd/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6a7c997edea340616bcc6d0fe03f65dd?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Jennifer M. Dodd\";}s:6:\"netweb\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/netweb/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Stephen Edgar\";}s:14:\"sergeybiryukov\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/sergeybiryukov/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/750b7b0fcd855389264c2b1294d61bd6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Sergey Biryukov\";}}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.5\";s:12:\"requires_php\";s:6:\"5.6.20\";s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:191;i:4;i:40;i:3;i:24;i:2;i:20;i:1;i:45;}s:11:\"num_ratings\";i:320;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:200000;s:12:\"last_updated\";s:21:\"2021-11-29 3:31pm GMT\";s:5:\"added\";s:10:\"2010-01-13\";s:8:\"homepage\";s:19:\"https://bbpress.org\";s:8:\"sections\";a:5:{s:11:\"description\";s:291:\"<p>Are you looking for a timeless, elegant, and streamlined discussion board? bbPress is easy to integrate, easy to use, and is built to scale with your growing community.</p>\n<p>bbPress is intentionally simple yet infinitely powerful forum software, built by contributors to WordPress.</p>\n\";s:12:\"installation\";s:1835:\"<h4>From your WordPress dashboard</h4>\n<ol>\n<li>Visit &#8216;Plugins &gt; Add New&#8217;</li>\n<li>Search for &#8216;bbPress&#8217;</li>\n<li>Activate bbPress from your Plugins page. (You will be greeted with a Welcome page.)</li>\n</ol>\n<h4>From WordPress.org</h4>\n<ol>\n<li>Download bbPress.</li>\n<li>Upload the &#8216;bbpress&#8217; directory to your &#8216;/wp-content/plugins/&#8217; directory, using your favorite method (ftp, sftp, scp, etc&#8230;)</li>\n<li>Activate bbPress from your Plugins page. (You will be greeted with a Welcome page.)</li>\n</ol>\n<h4>Once Activated</h4>\n<ol>\n<li>Visit &#8216;Forums &gt; Add New&#8217; and create some forums. (You can always delete these later.)</li>\n<li>If you have pretty permalinks enabled, visit example.com/forums/, or if you do not have pretty permalinks enabled, visit example.com?post_type=forum</li>\n<li>Visit &#8216;Settings &gt; Forums&#8217; and configure the settings to best match the needs of your community.</li>\n<li>Visit &#8216;Tools &gt; Forums &gt; Import Forums&#8217; if you have an existing forum to convert to bbPress.</li>\n</ol>\n<h4>Once Configured</h4>\n<ul>\n<li>bbPress comes with a robust theme-compatibility API that does its best to make bbPress look and feel right with just-about any WordPress theme. You may need to adjust some styling on your own to make everything look pristine.</li>\n<li>You may want to customize the register/activation/sign-in/lost-password flows, to better suit your site. bbPress comes with a bevy of shortcodes to make this possible, listed here: https://codex.bbpress.org/shortcodes/</li>\n<li>bbPress also comes with built-in support for Akismet and BuddyPress, two very popular and very powerful WordPress plugins. If you&#8217;re using either, visit your Forum Settings page and ensure that integration appears correct.</li>\n</ul>\n\";s:9:\"changelog\";s:104:\"<p>Check out the <a href=\"https://codex.bbpress.org/releases/\" rel=\"nofollow ugc\">releases page</a></p>\n\";s:11:\"screenshots\";s:1543:\"<ol><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\" alt=\"Forums - Admin Interface\"></a><p>Forums - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\" alt=\"Topics - Admin Interface\"></a><p>Topics - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\" alt=\"Replies - Admin Interface\"></a><p>Replies - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\" alt=\"Settings - Admin Interface\"></a><p>Settings - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\" alt=\"Settings 2 - Admin Interface\"></a><p>Settings 2 - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\" alt=\"Themes - Admin Interface\"></a><p>Themes - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\" alt=\"Single Forum - Default Theme\"></a><p>Single Forum - Default Theme</p></li></ol>\";s:7:\"reviews\";s:16072:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Worthless</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ebonweaver/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/c8cbc9cdbe05480d0bee8937d8b5b55c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/c8cbc9cdbe05480d0bee8937d8b5b55c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ebonweaver/\" class=\"reviewer-name\">ebonweaver</a> on <span class=\"review-date\">June 27, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I\'m shocked how unusable this is.  Configuration is not simple and not documented.  Appearance is primitive at best, not even basic.  But in the end it\'s totally worthless as all the basic access functionality is missing or does not work.  No registration page/ link on login page.  No documentation on setting this up.  blogs all point to manually making a registration page using shortcodes??  But the codes don\'t work, so the plugin is just useless.  From here I tried Asgaros and while simple, it actually works in full out of the box with easy configuration all in one place (not 3 like bbpress).  Sure if you want a nice registration form you need another plugin, but that was already the case for Wordpress anyway.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Forum plugin of Wordpress</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/deepblue5/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/26557041113062c2805aa7dcd65c850e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/26557041113062c2805aa7dcd65c850e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/deepblue5/\" class=\"reviewer-name\">DeepBlue <small>(deepblue5)</small></a> on <span class=\"review-date\">February 22, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Works great\nsimple and fast\nand easy to get a nice design with free pluggin bbp style pack</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Wrecks your roles; impossible to clean up after - AVOID THIS PLUGIN</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ourroots/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9d9375220fce4a42e0252e5aa6988dd8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9d9375220fce4a42e0252e5aa6988dd8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ourroots/\" class=\"reviewer-name\">ourroots</a> on <span class=\"review-date\">August 24, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">We wanted to try BBPress but we discovered quickly that it caused way too many problems with roles &amp; permissions for the site. So we removed it. But it turns out that for at least 8 years bbPress has known the roles can\'t be removed cleanly and they just shrug and say \"not important.\" So, I recommend you NOT INSTALL THIS PLUGIN. It will leave ugly traces behind itself like a nasty WordPress slug and you\'ll waste hours googling it and trying to fix it to no avail. It\'s old, it\'s ugly, and it\'s a mess.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It works, it&#039;s very basic, and clunky</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/llewen/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ee79e9411240a75f9349769770b52aa9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ee79e9411240a75f9349769770b52aa9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/llewen/\" class=\"reviewer-name\">Llewen <small>(llewen)</small></a> on <span class=\"review-date\">August 6, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">If you\'ve ever used other forums software, or especially if you\'ve deployed other forums software, it becomes very clear after you install bbpress that this plugin is basic, and clunky.  An awful lot of what would be considered standard functionality in forums software simply isn\'t present, or if it is, is awkward and clunky to use.\n\nHaving said that, it is the best forums plugin I am aware of for WordPress, perhaps the only one, and it is FOSS, so hurrah for that, and it mostly does the job.  There are also plugins available for it that extend it\'s functionality and add features which almost put it on a par with other forums software, but even with those, not quite.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Works well</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/lolafranklin0501/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3beeec41f11f35baea3dae398e16e559?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3beeec41f11f35baea3dae398e16e559?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/lolafranklin0501/\" class=\"reviewer-name\">lolafranklin0501</a> on <span class=\"review-date\">April 21, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Helpful plugin, good functionality.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">I love it!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/alinaalinuta/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/692d4a10a219a53baedb776dad69e629?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/692d4a10a219a53baedb776dad69e629?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/alinaalinuta/\" class=\"reviewer-name\">alinaalinuta</a> on <span class=\"review-date\">January 20, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">bbPress is powerfull and it integrates well with buddypress. I huge recommend it!\n </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Very raw and has issues</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/rjrjrjrj/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1e8155fdda0e0b75f488bea4fd130d8f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1e8155fdda0e0b75f488bea4fd130d8f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/rjrjrjrj/\" class=\"reviewer-name\">rjrjrjrj</a> on <span class=\"review-date\">December 31, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">OOB the forum looks very raw and absolutely DOES NOT follow the active theme. It also produced some artifacts that the dev refused to even look into.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Dois-je rester en version 2.5 à vie ?</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/supermagicien/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a5a24531c14fc84cf105731125d52bc0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a5a24531c14fc84cf105731125d52bc0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/supermagicien/\" class=\"reviewer-name\">supermagicien</a> on <span class=\"review-date\">December 14, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Bonjour,\n\nBBpress est un chouette programme, le souci est que je suis obligé de revenir à la version 2.5.14 car dès que je passe à l\'une des versions récentes le forum rencontre de nombreux soucis, pb horodatage, sujets qui disparaissent, édition d\'un post impossible sans perdre le sujet complet, bref, compliqué !\n\nJe précise que j\'ai changé d\'hébergeur et de thème ces derniers mois... c\'est bien BBPRESS le souci...\n\nJ\'attends la version 2.6.7 avec espoir...</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Broke admin access. Goodbye</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/eaec/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d3d62c8b8631a8a1e96ee7a571d23b28?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d3d62c8b8631a8a1e96ee7a571d23b28?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/eaec/\" class=\"reviewer-name\">eaec</a> on <span class=\"review-date\">October 28, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I had installed this to test it out and had deactivated it, and it broke admin access to my site, twice, overwriting permissions for my admin account.\n\nNEVER touching this plugin again, especially after reading that this has been an ongoing issue for years now. Cost me a lot of time and effort, not to mention IT fees in order to diagnose the issue so that I could access the admin tools to delete it.\n\nGoodbye! I will be sure to find your other plugins and avoid them as well.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">This is classic</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/gcarlsen/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3e41d6d7bf35ad17f0312cb210213900?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3e41d6d7bf35ad17f0312cb210213900?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/gcarlsen/\" class=\"reviewer-name\">gcarlsen</a> on <span class=\"review-date\">October 5, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">This is really helpful plugins with classic functionality. So helpful and powerful addon. Thank you!</div>\n</div>\n\";}s:13:\"download_link\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.9.zip\";s:11:\"screenshots\";a:7:{i:1;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\";s:7:\"caption\";s:24:\"Forums - Admin Interface\";}i:2;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\";s:7:\"caption\";s:24:\"Topics - Admin Interface\";}i:3;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\";s:7:\"caption\";s:25:\"Replies - Admin Interface\";}i:4;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\";s:7:\"caption\";s:26:\"Settings - Admin Interface\";}i:5;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\";s:7:\"caption\";s:28:\"Settings 2 - Admin Interface\";}i:6;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\";s:7:\"caption\";s:24:\"Themes - Admin Interface\";}i:7;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\";s:7:\"caption\";s:28:\"Single Forum - Default Theme\";}}s:4:\"tags\";a:4:{s:10:\"discussion\";s:10:\"discussion\";s:5:\"forum\";s:5:\"forum\";s:6:\"forums\";s:6:\"forums\";s:7:\"support\";s:7:\"support\";}s:8:\"versions\";a:65:{s:3:\"2.0\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.0.zip\";s:10:\"2.0-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-1.zip\";s:11:\"2.0-beta-2b\";s:62:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-2b.zip\";s:10:\"2.0-beta-3\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-3.zip\";s:11:\"2.0-beta-3b\";s:62:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-3b.zip\";s:8:\"2.0-rc-2\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-2.zip\";s:8:\"2.0-rc-3\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-3.zip\";s:8:\"2.0-rc-4\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-4.zip\";s:8:\"2.0-rc-5\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-5.zip\";s:5:\"2.0.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.1.zip\";s:5:\"2.0.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.2.zip\";s:5:\"2.0.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.3.zip\";s:3:\"2.1\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.1.zip\";s:10:\"2.1-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.1-beta-1.zip\";s:7:\"2.1-rc1\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc1.zip\";s:7:\"2.1-rc2\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc2.zip\";s:7:\"2.1-rc3\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc3.zip\";s:7:\"2.1-rc4\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc4.zip\";s:5:\"2.1.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.1.zip\";s:5:\"2.1.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.2.zip\";s:5:\"2.1.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.3.zip\";s:3:\"2.2\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.2.zip\";s:5:\"2.2.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.1.zip\";s:5:\"2.2.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.2.zip\";s:5:\"2.2.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.3.zip\";s:5:\"2.2.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.4.zip\";s:3:\"2.3\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.3.zip\";s:9:\"2.3-beta1\";s:60:\"https://downloads.wordpress.org/plugin/bbpress.2.3-beta1.zip\";s:5:\"2.3.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.3.1.zip\";s:5:\"2.3.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.3.2.zip\";s:3:\"2.4\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.4.zip\";s:5:\"2.4.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.4.1.zip\";s:3:\"2.5\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.5.zip\";s:5:\"2.5.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.1.zip\";s:6:\"2.5.10\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.10.zip\";s:6:\"2.5.11\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.11.zip\";s:6:\"2.5.12\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.12.zip\";s:6:\"2.5.13\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.13.zip\";s:6:\"2.5.14\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip\";s:5:\"2.5.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.2.zip\";s:5:\"2.5.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.3.zip\";s:5:\"2.5.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.4.zip\";s:5:\"2.5.5\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.5.zip\";s:5:\"2.5.6\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.6.zip\";s:5:\"2.5.7\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.7.zip\";s:5:\"2.5.8\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.8.zip\";s:5:\"2.5.9\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.9.zip\";s:10:\"2.6-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.6-beta-1.zip\";s:10:\"2.6-beta-2\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.6-beta-2.zip\";s:8:\"2.6-rc-1\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-1.zip\";s:8:\"2.6-rc-3\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-3.zip\";s:8:\"2.6-rc-5\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-5.zip\";s:8:\"2.6-rc-6\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-6.zip\";s:8:\"2.6-rc-7\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-7.zip\";s:5:\"2.6.0\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.0.zip\";s:5:\"2.6.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.1.zip\";s:5:\"2.6.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.2.zip\";s:5:\"2.6.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.3.zip\";s:5:\"2.6.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.4.zip\";s:5:\"2.6.5\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.5.zip\";s:5:\"2.6.6\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.6.zip\";s:5:\"2.6.7\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.7.zip\";s:5:\"2.6.8\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.8.zip\";s:5:\"2.6.9\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.9.zip\";s:5:\"trunk\";s:50:\"https://downloads.wordpress.org/plugin/bbpress.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:61:\"https://ps.w.org/bbpress/assets/banner-772x250.png?rev=478663\";s:4:\"high\";s:62:\"https://ps.w.org/bbpress/assets/banner-1544x500.png?rev=567403\";}}s:14:\"contact-form-7\";a:25:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:5:\"5.6.4\";s:6:\"author\";s:62:\"<a href=\"https://ideasilo.wordpress.com/\">Takayuki Miyoshi</a>\";s:14:\"author_profile\";s:44:\"https://profiles.wordpress.org/takayukister/\";s:12:\"contributors\";a:1:{s:12:\"takayukister\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/takayukister/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bb7bc21850c77e9eb16b44102f4a539d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Takayuki Miyoshi\";}}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:3:\"6.1\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:82;s:7:\"ratings\";a:5:{i:5;i:1368;i:4;i:136;i:3;i:64;i:2;i:55;i:1;i:354;}s:11:\"num_ratings\";i:1977;s:15:\"support_threads\";i:438;s:24:\"support_threads_resolved\";i:133;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2022-10-19 9:20am GMT\";s:5:\"added\";s:10:\"2007-08-02\";s:8:\"homepage\";s:25:\"https://contactform7.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:3035:\"<p>Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p>\n<h4>Docs and support</h4>\n<p>You can find <a href=\"https://contactform7.com/docs/\" rel=\"nofollow ugc\">docs</a>, <a href=\"https://contactform7.com/faq/\" rel=\"nofollow ugc\">FAQ</a> and more detailed information about Contact Form 7 on <a href=\"https://contactform7.com/\" rel=\"nofollow ugc\">contactform7.com</a>. When you cannot find the answer to your question on the FAQ or in any of the documentation, check the <a href=\"https://wordpress.org/support/plugin/contact-form-7/\">support forum</a> on WordPress.org. If you cannot locate any topics that pertain to your particular issue, post a new topic for it.</p>\n<h4>Contact Form 7 needs your support</h4>\n<p>It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider <a href=\"https://contactform7.com/donate/\" rel=\"nofollow ugc\">making a donation</a>. Your donation will help encourage and support the plugin&#8217;s continued development and better user support.</p>\n<h4>Privacy notices</h4>\n<p>With the default configuration, this plugin, in itself, does not:</p>\n<ul>\n<li>track users by stealth;</li>\n<li>write any user personal data to the database;</li>\n<li>send any data to external servers;</li>\n<li>use cookies.</li>\n</ul>\n<p>If you activate certain features in this plugin, the contact form submitter&#8217;s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider&#8217;s privacy policy is recommended. These features include:</p>\n<ul>\n<li>reCAPTCHA (<a href=\"https://policies.google.com/?hl=en\" rel=\"nofollow ugc\">Google</a>)</li>\n<li>Akismet (<a href=\"https://automattic.com/privacy/\" rel=\"nofollow ugc\">Automattic</a>)</li>\n<li>Constant Contact (<a href=\"https://www.endurance.com/privacy\" rel=\"nofollow ugc\">Endurance International Group</a>)</li>\n<li><a href=\"https://www.sendinblue.com/legal/privacypolicy/\" rel=\"nofollow ugc\">Sendinblue</a></li>\n<li><a href=\"https://stripe.com/privacy\" rel=\"nofollow ugc\">Stripe</a></li>\n</ul>\n<h4>Recommended plugins</h4>\n<p>The following plugins are recommended for Contact Form 7 users:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/flamingo/\">Flamingo</a> by Takayuki Miyoshi &#8211; With Flamingo, you can save submitted messages via contact forms in the database.</li>\n<li><a href=\"https://wordpress.org/plugins/bogo/\">Bogo</a> by Takayuki Miyoshi &#8211; Bogo is a straight-forward multilingual plugin that does not cause headaches.</li>\n</ul>\n<h4>Translations</h4>\n<p>You can <a href=\"https://contactform7.com/translating-contact-form-7/\" rel=\"nofollow ugc\">translate Contact Form 7</a> on <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow ugc\">translate.wordpress.org</a>.</p>\n\";s:12:\"installation\";s:458:\"<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the <strong>Plugins</strong> screen (<strong>Plugins &gt; Installed Plugins</strong>).</li>\n</ol>\n<p>You will find <strong>Contact</strong> menu in your WordPress admin screen.</p>\n<p>For basic usage, have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow ugc\">plugin&#8217;s website</a>.</p>\n\";s:3:\"faq\";s:439:\"<p>Do you have questions or issues with Contact Form 7? Use these support channels appropriately.</p>\n<ol>\n<li><a href=\"https://contactform7.com/docs/\" rel=\"nofollow ugc\">Docs</a></li>\n<li><a href=\"https://contactform7.com/faq/\" rel=\"nofollow ugc\">FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/plugin/contact-form-7/\">Support forum</a></li>\n</ol>\n<p><a href=\"https://contactform7.com/support/\" rel=\"nofollow ugc\">Support</a></p>\n\";s:9:\"changelog\";s:1925:\"<p>For more information, see <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow ugc\">Releases</a>.</p>\n<h4>5.6.4</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-564/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-564/</a></p>\n<h4>5.6.3</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-563/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-563/</a></p>\n<h4>5.6.2</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-562/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-562/</a></p>\n<h4>5.6.1</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-561/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-561/</a></p>\n<h4>5.6</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-56/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-56/</a></p>\n<h4>5.5.6</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-556/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-556/</a></p>\n<h4>5.5.5</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-555/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-555/</a></p>\n<h4>5.5.4</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-554/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-554/</a></p>\n<h4>5.5.3</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-553/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-553/</a></p>\n<h4>5.5.2</h4>\n<ul>\n<li>REST API: Removes argument schema reference that causes error when the form has &#8216;id&#8217; field.</li>\n<li>Changes method names that are reserved in PHP 5.6.</li>\n</ul>\n<h4>5.5.1</h4>\n<ul>\n<li>Fixed: Reserved keyword was used in PHP class constant name.</li>\n<li>Fixed: Uncaught TypeError on <code>in_array()</code> call.</li>\n</ul>\n<h4>5.5</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-55/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-55/</a></p>\n\";s:11:\"screenshots\";s:225:\"<ol><li><a href=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\"><img src=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\" alt=\"screenshot-1.png\"></a><p>screenshot-1.png</p></li></ol>\";s:7:\"reviews\";s:15334:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">The Best Free Contact Plugin for Wordpress</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/dareto87/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ad99fd69098db7dec673b739966ab4c0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ad99fd69098db7dec673b739966ab4c0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/dareto87/\" class=\"reviewer-name\">Darko <small>(dareto87)</small></a> on <span class=\"review-date\">October 17, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">It\'s probably the best free plugin for simple contact forms. I\'m using it on every website where contact forms with few fields need to be implemented.\nHowever, I don\'t recommend the plugin if you have more complex scenarios, because can be easily non-compatible with third-party plugins. For instance, in a work application with tens of fields, the CF7 and the signature plugin were could not work together, so I switched to a premium plugin.\nLuckily, I found Forminator plugin, and for a less than $100 yearly, I have a fully functional job application form that works perfectly with my current Wordpress version, and on every device.\nLike I said, CF7 is great for simple forms, but for more complex ones, I don\'t recommend it.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Stupid behiviour</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/amitb14/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/539f50de56ad6bc48aec145cf97c6b31?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/539f50de56ad6bc48aec145cf97c6b31?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/amitb14/\" class=\"reviewer-name\">amitb14</a> on <span class=\"review-date\">October 17, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I have used this plugin by its number of download, but after configuration it messup with error message for require fields,  and its difficult to manage it style, i will not use this plugin again for any of my websitess. there is no option to upload screen here..</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Works, but need to edit, hard to send feedback.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/mckenzm/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4c06a2d656a32b0b776cf22adad94762?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4c06a2d656a32b0b776cf22adad94762?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/mckenzm/\" class=\"reviewer-name\">mckenzm</a> on <span class=\"review-date\">September 23, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I find that for most recent releases I have to defer updates and edit css to get visible (black) text in the status field.\n\n/var/www/html/wp-content/plugins/contact-form-7/includes/css/styles.css\n\nMaybe this is a hacky fix, but it gets us by...\n\n<pre><code>.wpcf7 form .wpcf7-response-output {\nmargin: 2em 0.5em 1em;\npadding: 0.2em 1em;\nborder: 2px solid #00a0d2; /* Blue */\ncolor: black;              /* Add this line */\n}</code></pre>\n</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Form follow function</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/anonymized-13836360/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4abc46daebb8b3cde35da435097d3431?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4abc46daebb8b3cde35da435097d3431?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/anonymized-13836360/\" class=\"reviewer-name\">Anonymous User 13836360 <small>(anonymized_13836360)</small></a> on <span class=\"review-date\">September 13, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Form follow function</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Contact Form7 version 5.6.3 Bug!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/navzh/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a4202758e2c9a597933002bfd45b486c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a4202758e2c9a597933002bfd45b486c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/navzh/\" class=\"reviewer-name\">navzh</a> on <span class=\"review-date\">September 12, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">WP 6.0.2\nPHP 8.1.9\n\nUnfortunately, today I found that the module does not send messages unless, I am logged in as administrator. Visitors to the site therefore, cannot currently send me any messages via the form!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">einfach und gut</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/clvkmedia/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9b118c9f38b72f96d08b11d3f0cb7552?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9b118c9f38b72f96d08b11d3f0cb7552?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/clvkmedia/\" class=\"reviewer-name\">clvkmedia</a> on <span class=\"review-date\">September 4, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">sehr einfach zu bedienen und zuverlässig.\nVielen Dank!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">This Plugin is very prone to conflict with other plugins</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/jofftornea23/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a1107887ea3cfc8409af6b9d77a86df0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a1107887ea3cfc8409af6b9d77a86df0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/jofftornea23/\" class=\"reviewer-name\">jofftornea23</a> on <span class=\"review-date\">August 31, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Before, it was easy to set it up. Everything seems working then.\n\nNow, I noticed how this plugin always get conflicted with other plugins.\n\nWorst is the steps to resolve the conflict with a lot of configuration that needs to be done. This is very time consuming and other plugins will be greatly affected by these changes that they require you to do.\n\nI have had enough of this!!! I am now moving to other useful and relevant form plugin.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Plugin com erros e sem suporte</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/alfan9ve/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/968c681c5e5e455e2a1dac5f762ea33c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/968c681c5e5e455e2a1dac5f762ea33c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/alfan9ve/\" class=\"reviewer-name\">alfan9ve</a> on <span class=\"review-date\">August 16, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Plugin com erros, envia formulários em branco, mesmo com campos obrigatórios não preenchidos. Sem suporte para dar uma solução</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Very Convenient</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/senribb/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b5538b7d6a527d838f82e9c98bf9f773?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b5538b7d6a527d838f82e9c98bf9f773?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/senribb/\" class=\"reviewer-name\">Senri Miura <small>(senribb)</small></a> on <span class=\"review-date\">August 15, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I have used it for a long time.\nIt is very convenient because you can freely customize the contents of forms and emails.\nSafe and secure with support for CAPTCHA v3 and Akismet spam filtering.\n</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Simple and basic but perfect!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/gianfri/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/62a5bdc074f38b2b6ad9dbd251a65b5b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/62a5bdc074f38b2b6ad9dbd251a65b5b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/gianfri/\" class=\"reviewer-name\">gianfri</a> on <span class=\"review-date\">August 13, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Very happy with what it does.</div>\n</div>\n\";}s:13:\"download_link\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.4.zip\";s:11:\"screenshots\";a:1:{i:1;a:2:{s:3:\"src\";s:67:\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\";s:7:\"caption\";s:16:\"screenshot-1.png\";}}s:4:\"tags\";a:5:{s:7:\"contact\";s:7:\"contact\";s:12:\"contact-form\";s:12:\"contact form\";s:5:\"email\";s:5:\"email\";s:8:\"feedback\";s:8:\"feedback\";s:4:\"form\";s:4:\"form\";}s:8:\"versions\";a:164:{s:3:\"1.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.1.zip\";s:4:\"1.10\";s:62:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.zip\";s:8:\"1.10.0.1\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.0.1.zip\";s:6:\"1.10.1\";s:64:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.1.zip\";s:3:\"1.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.2.zip\";s:3:\"1.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.zip\";s:5:\"1.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.1.zip\";s:5:\"1.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.2.zip\";s:3:\"1.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.zip\";s:5:\"1.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.1.zip\";s:5:\"1.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.2.zip\";s:5:\"1.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.3.zip\";s:5:\"1.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.4.zip\";s:3:\"1.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.5.zip\";s:3:\"1.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.zip\";s:5:\"1.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.1.zip\";s:3:\"1.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.zip\";s:5:\"1.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.1.zip\";s:5:\"1.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.2.zip\";s:5:\"1.7.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.4.zip\";s:5:\"1.7.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.5.zip\";s:5:\"1.7.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.zip\";s:7:\"1.7.6.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.1.zip\";s:5:\"1.7.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.zip\";s:7:\"1.7.7.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.1.zip\";s:5:\"1.7.8\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.8.zip\";s:3:\"1.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.zip\";s:7:\"1.8.0.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.1.zip\";s:7:\"1.8.0.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.2.zip\";s:7:\"1.8.0.3\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.3.zip\";s:7:\"1.8.0.4\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.4.zip\";s:5:\"1.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.zip\";s:7:\"1.8.1.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.1.zip\";s:3:\"1.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.zip\";s:5:\"1.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.1.zip\";s:5:\"1.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.zip\";s:7:\"1.9.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.1.zip\";s:7:\"1.9.2.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.2.zip\";s:5:\"1.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.3.zip\";s:5:\"1.9.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.4.zip\";s:5:\"1.9.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.zip\";s:7:\"1.9.5.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.1.zip\";s:3:\"2.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.zip\";s:8:\"2.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0-beta.zip\";s:5:\"2.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.1.zip\";s:5:\"2.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.2.zip\";s:5:\"2.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.3.zip\";s:5:\"2.0.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.4.zip\";s:5:\"2.0.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.5.zip\";s:5:\"2.0.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.6.zip\";s:5:\"2.0.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.7.zip\";s:3:\"2.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.zip\";s:5:\"2.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.1.zip\";s:5:\"2.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.2.zip\";s:3:\"2.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.zip\";s:5:\"2.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.1.zip\";s:3:\"2.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.zip\";s:5:\"2.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.1.zip\";s:3:\"2.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.zip\";s:5:\"2.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.1.zip\";s:5:\"2.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.2.zip\";s:5:\"2.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.3.zip\";s:5:\"2.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.4.zip\";s:5:\"2.4.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.5.zip\";s:5:\"2.4.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.6.zip\";s:3:\"3.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.zip\";s:8:\"3.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0-beta.zip\";s:5:\"3.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.1.zip\";s:5:\"3.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.zip\";s:7:\"3.0.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.1.zip\";s:3:\"3.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.zip\";s:5:\"3.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.1.zip\";s:5:\"3.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.2.zip\";s:3:\"3.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.zip\";s:5:\"3.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.1.zip\";s:3:\"3.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.zip\";s:5:\"3.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.1.zip\";s:5:\"3.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.2.zip\";s:5:\"3.3.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.3.zip\";s:3:\"3.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.zip\";s:5:\"3.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.1.zip\";s:5:\"3.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.2.zip\";s:3:\"3.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.zip\";s:5:\"3.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.1.zip\";s:5:\"3.5.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.2.zip\";s:5:\"3.5.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.3.zip\";s:5:\"3.5.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.4.zip\";s:3:\"3.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.6.zip\";s:3:\"3.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.zip\";s:5:\"3.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.1.zip\";s:5:\"3.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.2.zip\";s:3:\"3.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.zip\";s:5:\"3.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.1.zip\";s:3:\"3.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.zip\";s:8:\"3.9-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9-beta.zip\";s:5:\"3.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.1.zip\";s:5:\"3.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.2.zip\";s:5:\"3.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.3.zip\";s:3:\"4.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.zip\";s:5:\"4.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.1.zip\";s:5:\"4.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.2.zip\";s:5:\"4.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.3.zip\";s:3:\"4.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.zip\";s:8:\"4.1-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1-beta.zip\";s:5:\"4.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.1.zip\";s:5:\"4.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.2.zip\";s:3:\"4.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.zip\";s:8:\"4.2-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2-beta.zip\";s:5:\"4.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.1.zip\";s:5:\"4.2.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip\";s:3:\"4.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip\";s:5:\"4.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.1.zip\";s:3:\"4.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.zip\";s:5:\"4.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.1.zip\";s:5:\"4.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.2.zip\";s:3:\"4.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.zip\";s:5:\"4.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.1.zip\";s:3:\"4.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.zip\";s:5:\"4.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.1.zip\";s:3:\"4.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip\";s:3:\"4.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.zip\";s:5:\"4.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.1.zip\";s:3:\"4.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.zip\";s:5:\"4.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.1.zip\";s:5:\"4.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.2.zip\";s:3:\"5.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.zip\";s:5:\"5.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip\";s:5:\"5.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.2.zip\";s:5:\"5.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.3.zip\";s:5:\"5.0.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.4.zip\";s:5:\"5.0.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.5.zip\";s:3:\"5.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.zip\";s:5:\"5.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.1.zip\";s:5:\"5.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.2.zip\";s:5:\"5.1.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.3.zip\";s:5:\"5.1.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.4.zip\";s:5:\"5.1.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.5.zip\";s:5:\"5.1.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.6.zip\";s:5:\"5.1.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.7.zip\";s:5:\"5.1.8\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.8.zip\";s:5:\"5.1.9\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.9.zip\";s:3:\"5.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.2.zip\";s:5:\"5.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.2.1.zip\";s:5:\"5.2.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.2.2.zip\";s:3:\"5.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.zip\";s:5:\"5.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.1.zip\";s:5:\"5.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.2.zip\";s:3:\"5.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.zip\";s:5:\"5.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip\";s:5:\"5.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.2.zip\";s:3:\"5.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.zip\";s:5:\"5.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.1.zip\";s:5:\"5.5.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.2.zip\";s:5:\"5.5.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.3.zip\";s:5:\"5.5.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.4.zip\";s:5:\"5.5.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.5.zip\";s:5:\"5.5.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip\";s:7:\"5.5.6.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.1.zip\";s:3:\"5.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.zip\";s:5:\"5.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.1.zip\";s:5:\"5.6.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.2.zip\";s:5:\"5.6.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.3.zip\";s:5:\"5.6.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.4.zip\";s:5:\"trunk\";s:57:\"https://downloads.wordpress.org/plugin/contact-form-7.zip\";}s:11:\"donate_link\";s:32:\"https://contactform7.com/donate/\";s:7:\"banners\";a:2:{s:3:\"low\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";s:4:\"high\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";}}}','no'),(2465,'evcal_options_evoics_1','a:13:{s:11:\"option_page\";s:18:\"evoics_field_group\";s:6:\"action\";s:6:\"update\";s:8:\"_wpnonce\";s:10:\"013ae1f82f\";s:16:\"_wp_http_referer\";s:31:\"/wp-admin/admin.php?page=evoics\";s:16:\"evoics_noncename\";s:10:\"141ba82054\";s:21:\"EVOICS_status_publish\";s:2:\"no\";s:22:\"evoics_timezone_method\";s:4:\"none\";s:22:\"EVOICS_auto_allday_dis\";s:2:\"no\";s:18:\"EVOICS_dupli_check\";s:2:\"no\";s:19:\"evoics_sync_fetched\";s:2:\"no\";s:18:\"evoics_import_past\";s:2:\"no\";s:18:\"evoics_import_type\";s:14:\"schedule_daily\";s:15:\"evoics_file_url\";s:113:\"https://calendar.google.com/calendar/ical/342duobd0to5sdj4v658jj4a0o%40group.calendar.google.com/public/basic.ics\";}','yes'),(11540,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1673366260','no');
INSERT INTO `wpwlvrot_options` VALUES (11541,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: State of the Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=75018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2023/01/state-of-the-word-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:365:\"<p>A few weeks ago, but what feels like a lifetime ago, I was in New York City with a few dozen extra special people from around the WordPress world. Alongside <a href=\"https://josepha.blog/\">Josepha</a> and the community we presented this review of how WordPress did in 2022, and vision for what&#8217;s coming:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jan 2023 23:25:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Post Status: Support Inclusion in Tech with Winstina Hughes — Post Status Draft 136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://poststatus.com/support-inclusion-in-tech-with-winstina-hughes-post-status-draft-136/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52730:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode, <a href=\"https://twitter.com/planningwrite?lang=en\">Winstina Hughes</a> joins Cory Miller to talk about the  <a href=\"https://supportinclusionintech.com/\">Support Inclusion in Tech</a> project created to champion diversity, equity, and inclusion in the WordPress community by providing assistance to WordCamp speakers for travel and hotels. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p><a href=\"https://twitter.com/planningwrite?lang=en\">Winstina Hughes</a>&nbsp; is a long-term community member and organizer within WordPress. She joins Cory Miller to discuss <a href=\"https://supportinclusionintech.com/\">Support Inclusion in Tech</a>, an effort to increase representation of minority and underrepresented speakers at WordCamp by providing needed financial support. This offers everyone in the WordPress community the chance to share their expertise and contribute resources so everyone has the opportunity to engage.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Creativity is our common bond. </strong>WordPress is the playground where we all came to tinker and build for fun or business. It is the software magic where we discover what new things we can do each day, how to make ideas become reality, and how we might leverage what we learn to create a better world.</li>\n\n\n\n<li><strong>Ripple effect of inclusion: </strong>When you provide the ability for a large group of people to participate, travel, and network, the impact extends beyond the WordPress community to create the bigger changes we want to see in the world. This is our community magic.</li>\n\n\n\n<li><strong>Fifth Freedom in WordPress</strong>: We are all familiar with The Four Freedoms of WordPress. This is the 5th &#8211; full participation. Removing the financial barrier will bring us closer to the reality of being a truly inclusive community.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-4 wp-block-columns sponsor has-theme-palette-8-background-color has-background\" id=\"Gravity-Forms\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Episode Partner: <a href=\"https://poststat.us/gravity\">Gravity Forms</a></h3>\n\n\n\n<p><strong><a href=\"https://poststat.us/gravity\">Gravity Forms</a></strong> is a powerful form builder for WordPress and the #1 choice for businesses and web professionals across the globe. Its vast array of features, intuitive drag-and-drop form editor, and extensive ecosystem of add-ons, ensure customers can design beautiful, intelligent, and accessible forms for any project requirement.</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\"><div class=\"wp-block-image cloudways-logo\">\n<a href=\"https://poststat.us/gravity\"><img width=\"392\" height=\"299\" src=\"https://cdn.poststatus.com/wp-content/uploads/2021/07/gravity-forms-logo-stacked.png\" alt=\"Gravity Forms\" class=\"wp-image-88956\" title=\"Cloudways Logo\" /></a><a href=\"https://poststat.us/gravity\">Gravity Forms</a></div></div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://supportinclusionintech.com/\">SUPPORT INCLUSION IN TECH</a></li>\n\n\n\n<li><a href=\"https://twitter.com/sbruner\">Steve Bruner</a> </li>\n\n\n\n<li><a href=\"https://twitter.com/kcristiano\">Kevin Cristiano</a> </li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/\">WordCamp </a></li>\n\n\n\n<li><a href=\"https://twitter.com/WPNYC\">WPNYC</a></li>\n\n\n\n<li><a href=\"https://www.wordprowiz.com/\">WordPro </a></li>\n\n\n\n<li><a href=\"https://www.sustainablejersey.com/\">Sustainable New Jersey</a> </li>\n\n\n\n<li><a href=\"https://buddypress.org/\">BuddyPress</a> </li>\n\n\n\n<li><a href=\"https://www.godaddy.com/\">GoDaddy </a></li>\n\n\n\n<li><a href=\"https://yoast.com/\">Yoast</a> </li>\n\n\n\n<li><a href=\"https://masterwp.com/\">Master WP</a> </li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/planningwrite?lang=en\">Winstina Hughes</a> </li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Welcome to back to Post Status draft. I\'m with a good friend of mine when Winstina hughes. I met with Winstina a couple years ago in the post status community. We\'ve got to meet in person, talk numerous times, and, um, I\'m excited about what we\'re gonna be talking about here. Um, she\'s got a new, a project called support inclusion in tech.com and we\'re gonna dive into that today.</p>\n\n\n\n<p>But, uh, hi, Winstina. Hi. And pumped to finally have you on,</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> I\'m excited to be with you.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Could you tell us what you do in WordPress?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Okay. Um, What do I do in WordPress? every time I speak with, you know, every time I have one of these, um, you know, opportunities to speak with someone in the community, I end up like re repeating the question.</p>\n\n\n\n<p>Um, cuz it really helps me. I am a community member, um, and I\'m also, you know, a, an organizer, um, a meetup organizer and a board camp organizer. I started, um, going to [00:01:00] meetups in New York City and I transitioned into, Speaking, um, at Word Camp, New York City, and then I was invited to become a meetup organizer.</p>\n\n\n\n<p>And so, um, my, you know, my participation in the community was, um, you know, like in the early, um, you know, 2010s. And then around 2015, 2016, um, I started, you know, speaking at, at New York City, and then I became an organizer. I meet up organizer. In 2018, I led my first word camp and my only word, camp , hundred twenties, um, a budget of 120,000, a team of 18.</p>\n\n\n\n<p>Uh, it was an amazing experience. They were wonderful people and it was. Really tiring .</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. You know, over the years, Winstina, I\'ve had so many dear friends that have been Word Camp organizers and really I go, oh my God, I love you so much because of what you\'re doing for the community. But I also go, I hope you [00:02:00] still like word this afterwards because it\'s a such a labor of love that I think, um, so often we don\'t really give the credit and thanks to the people, That do this voluntarily.</p>\n\n\n\n<p>Yeah, like you\'re talking about all the stuff you\'re done. So anyway, I wanna say thank you because I\'ve said it so many times to dear friends over the years going, thank you for what you\'re doing. I\'ve always shied away from it because it\'s so much work and I see all the passion and energy that you and other organizers have and I\'m really thankful cuz I think that is so critical to the entire community to have these, and now we\'re talking in 2022.</p>\n\n\n\n<p>But we hear WordCamps are back. You and I got to see each other in San Diego at Word Camp US. Yes, yes, yes. So</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> anyway, so Word, word camp Us. I was a co-organizer for Word Camp US this year. Um, and so yeah, you\'re right. Like we had a chance to teach other again there, and that was like, yay. That was awesome.</p>\n\n\n\n<p><strong>Cory Miller:</strong> It was, yeah.[00:03:00]</p>\n\n\n\n<p>Yeah. A absolutely. Well, okay, so what drew you to, okay, how did you start with WordPress? Were you using WordPress for, uh, your own website, somebody else\'s website? How\'d you get started with the actual software?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> So I started with WordPress in 2006, 2007. Um, I had a college course that was . Yeah, I, I had a college course.</p>\n\n\n\n<p>Um, and our professor required us to add, um, you know, the work that we\'d done, uh, into a wordpress.com blog. Um, it was a geographic information systems class. And, uh, we were looking at public health data at the census block level. Um, and so we were actually, you know, looking to see. You know, where, um, there were instances of like, um, I don\'t wanna say disease, but you know, like different illnesses.</p>\n\n\n\n<p>And so what what\'s really interesting is that you can, that schools get access to that data and you can actually like, You can [00:04:00] essentially imagine, and I don\'t wanna go too far deep into it, but imagine you have like, you know, Google Maps, right? And like when you have Google Maps open, you can do street view.</p>\n\n\n\n<p>So Google Maps lets you like go from that whole, um, like that map into like street view where you jump in as a person. So, uh, this data essentially took you away from just the geographic element, um, and the typography and like really. The census, you know, track level, like essentially, um, you know, looking at neighborhoods and, you know, the instances of disease in those neighborhoods.</p>\n\n\n\n<p>And so he, you know, he gave that to us as our final assignment. Um, you know, we did some like, uh, some heat mapping to show where there were greater concentrations of a particular type of illness, , right. Um, or, um, you know, disease or, you know, Uh, I\'m not exactly sure like what, what we [00:05:00] were calling it, but that\'s what our assignment was.</p>\n\n\n\n<p>And, uh, he asked us to, you know, take like a picture of the map and to post it in wordpress.com and that\'s how it all started with that , with that assignment. Um, so we were you.</p>\n\n\n\n<p><strong>Cory Miller:</strong> We were using WordPress at the same time. That\'s the same year I started with WordPress when you started. I did not know you went that, that far back with WordPress.</p>\n\n\n\n<p>So I love that. Uh, yeah, I do. Thank you. And then you said like in 2010 you started actually, uh, getting involved with community events. And this is relevant to us talking about support, inclusion and tech. So what drew you to start participating in volunteering and contributing to WordPress?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> So I went to New York City Meetups, um, and, uh, WordPress, New York City, uh, is the one that\'s in closest proximity to where I lived.</p>\n\n\n\n<p>I could just take the train in. Um, and it was, it was great. Like I, I really felt, um, that the community there was, was [00:06:00] open, like the organizers were open and, and they were welcoming. Um, Dana, rendy, uh, those were organizers at the time, Steve Bruner, who was an organizer. Was he is the organizer, , he started it and he\'s, he\'s kept it, you know, um, really like strong, like, since its inception.</p>\n\n\n\n<p>Um, and so like just going to these events and meeting these, these like wonderful generous people, these kind people, um, you know, meeting Kevin Cre, Christiana there as well. Um, and you know, just that environ. Was what led me to continue attending events. Um, and they really encouraged me to submit a talk to speak at New York City, um, ward Camp, New York City.</p>\n\n\n\n<p>And I submitted a talk to speak there and, you know, since that time I\'ve been more engaged in. Event organizing component, [00:07:00] um, or part of the community. So it moved beyond just, you know, um, Like learning, you know, to use Word Pro, you know, building sites and breaking them, uh, the best, right? Yeah. Like, that\'s the best way.</p>\n\n\n\n<p>That\'s the only way you can really learn. I mean, I, I started, you know, with different hosting plans, I\'ve had like four or five, like I have multiple domains. Like I think when you\'re in our space, you got a chance to really create. And, um, and that\'s what I was able to do and what I\'m able to continue doing, and.</p>\n\n\n\n<p>Now moved from just creating and building with WordPress to assisting with supporting, you know, our community through events like meetups and, uh, word camp organizing and supporting inclusion in tech is, is an extension of, um, of this work, this contribution that I\'ve been doing. It, it, it pieces together so many different elements that I\'ve come to, like I\'ve come to see and I\'ve come to understand [00:08:00] and. It\'s, it\'s a solution that I propose to, um, some current challenges that, um, I\'ve heard being expressed. Yeah,</p>\n\n\n\n<p><strong>Cory Miller:</strong> I, uh, I wanna scroll back for a second and say that when you\'re talking about create, I sometimes it, for as long as you and I have been in WordPress sometimes forget that magic of being able to create something on the web or in the, in the world.</p>\n\n\n\n<p>See this cool tool called WordPress, so I appreciate that. I think that\'s what we rally around in the WordPress community and particularly to post status is helping build tools and projects and things on top of this magical thing we call WordPress. So that was a, when you said create, I was like, it\'s just little tingle of magic came up of that\'s, that\'s why we, I think that\'s our common bond in</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> WordPress.</p>\n\n\n\n<p>I agree. I agree. And I think that, uh, when we create as community members, um, and not necessarily [00:09:00] just as. Business owners or, or, um, you know, those who are providing like services. That\'s a component of creating. But, you know, in the middle of doing all that, I think, you know, I mean, I like to sit down and just literally play and see, you know, what could I do with it today?</p>\n\n\n\n<p>and, um, I entered a com competition, um, held by Sustainable New Jersey, um, right around the time I completed graduate school. And there were municipalities that were seeking, um, solutions for challenges that they had. And there was the city of East Orange and they wanted like a marketplace, um, and a place for their planning department to, you know, add their documents and also something for their green team.</p>\n\n\n\n<p>And when I saw this, I was like, I could use WordPress and e-commerce. So I created like a WooCommerce marketplace for them to sell, you know, for residents that would sell their products and services. And I demoed it. Um, and then I also had a website and also a Buddy press site. Um, and the buddy press site would be for their green team members.</p>\n\n\n\n<p>And I think that [00:10:00] like, when, when we create with WordPress, like we\'re able to like see like, you know, These asks and really apply like our knowledge of what we know the c m s can do and then provide a solution. And the city was actually really happy with the solution. Um, and I made it to the finals of the competition.</p>\n\n\n\n<p>Um, but there was another, uh, but there were other teams that that won it. Um, but it was, it was really exciting to show what WordPress, you know, software and what WooCommerce can. Uh, that\'s the</p>\n\n\n\n<p><strong>Cory Miller:</strong> dream. Um, that, that\'s so awesome. Thank you for sharing that backstory. As much as we\'ve talked and stuff, I haven\'t got the chance to ask those questions and, um, it\'s a good reminder for me about, you know, I think if you go long enough in the community, you start to, well, I, I\'ll say I start to.</p>\n\n\n\n<p>Forget some of these nuances, [00:11:00] like being able to go, here\'s a project idea, this could be done in WordPress, you know? And that the tools are mostly freely available. Yes. And you can start and build something online.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Exactly. Yeah. You just, you know, download . Yeah. Yeah. Well, yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So that leads me to support inclusion and tech. And you mentioned you saw a problem or problems and challenges in our community that you wanted to help make some a solution to toward it that became support, inclusion and tech. But can you talk about that a little bit? Cause I know my, my understanding and you continue to help me expand my understanding of all this is it\'s not just one particular country with DEI, it\'s a global thing. But could you talk a little bit about the problems and challenges that you saw in the space.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Absolutely. Um, absolutely. So I, you know, really wanna, like, I wanna hold true to like, um, to how [00:12:00] I, um, shared it on my website. Um, but really the backstory is that. There was a conversation that erupted on Twitter, um, about the need for more diversity on Word Camp, um, organizing teams. And this started, uh, due to, um, you know, uh, some, some thoughts that were expressed about Word Camp Europe, uh, where WordCamp Europe\'s organizing team, um, not being.</p>\n\n\n\n<p>Very reflective, um, of, you know, more ethnicities or a wider range of them. Um, it was a really difficult conversation that was happening. And my take on it really is that it\'s not where camp you\'re specific, right? Like, I mean, let\'s, you know, let\'s really step back and think about the fact that, you know, there\'s so many ethnicities around the world that have a ch [00:13:00] like it\'s really.</p>\n\n\n\n<p>When you\'re in the minority as a group, Really up to the group that\'s in the majority to weave you into those experiences and those opportunities. Um, and when that doesn\'t happen, then you have groups that don\'t have an opportunity to be, to participate and to be involved and, you know, support inclusion and tech.</p>\n\n\n\n<p>I mean, considering this was a conversation about word camps and our participation in them. Support, inclusion and tech really seeks to assist us in solving the challenge of, um, not having as much, you know, ethnic or, um, or just diverse representation within the Word camp experience. It doesn\'t seek to, you know, um, it doesn\'t, it doesn\'t seek, you know, to like solve, um, Like these, you know, the world that we [00:14:00] live in.</p>\n\n\n\n<p>And it doesn\'t seek to solve like, um, you know, diversity and inclusion outside of the WordPress space. Um, but I believe that in, in providing these, um, these opportunities within our community, since we\'re so large, that the ripple effects can extend well beyond the WordPress community. I believe that when you, Absolut.</p>\n\n\n\n<p>When you provide such a large group of people, the ability to, um, to participate in work camps, um, the ability to travel to them, the ability to network to them with, when you attend, um, the ability to like, you know, seek, um, you know, out more relationships, friendships, professional relationships. Then there\'s this ripple that extends outside of our community and I think.</p>\n\n\n\n<p>That level of empowerment can extend outside of WordPress and those ripples can assist us in diversity inclusion beyond, [00:15:00] um, you know, our, our involvement in WordPress. But you know, this, this particular solution is intended to solve the challenge that I saw, you know, um, being expressed, you know, within our community.</p>\n\n\n\n<p>And so the thought is really, Since, you know, since there\'s a take on it. And there\'s, it\'s a, I mean, it\'s an, it\'s an honest one, right? We don\'t see enough people of color. We don\'t see, um, enough, you know, people of, um, other minority groups, um, you know, uh, from other parts of the world. Um, You know, we are seeing an equal, more equal balance of, um, men and women.</p>\n\n\n\n<p>Uh, you know, but when it extends beyond that into like, you know, more representation in terms of like, you know, a wide range of religions, which ties to ethnicity often. Um, and when you\'re looking at representation in terms of those of us who, um, have like neuro [00:16:00] diversion, you know, um, you know, like, uh, characteristics and those of us who, um, you know, who we choose to love, , you know, the what society, um, you know, asks of us , right?</p>\n\n\n\n<p>Like, and um, and when we choose to hold true to that or when we\'re dealing with the physical limitations, um, that, you know, that we were born with or when we\'re in minority. Groups, you know, that have a harder time, you know, uh, receiving opportunities, um, to participate and to increase, you know, their reach and even, um, you know, the professional opportunities that are available to them.</p>\n\n\n\n<p>You know, like this. What can we do to, um, to really like solve. To solve that. Mm-hmm. And I thought, what could I do within our community Yep. To, you know, to integrate, you know, like all of those of us who are, um, Either, you know, disadvantaged [00:17:00] or not as represented into WordPress programming and support, inclusion and tech, um, seeks to, you know, take away that financial barrier, which I believe is really what, you know, can limit our participation.</p>\n\n\n\n<p>We want to participate, we want to speak, but if we can\'t afford to speak , right? I mean, if we can\'t afford to travel to the conference and if we can\'t afford a place to stay at the conference, um, then. Like, why would we even think to apply to speak at the conference? Right? Like,</p>\n\n\n\n<p><strong>Cory Miller:</strong> yeah. That\'s, that\'s really beautiful, Winston, because, um, there\'s a couple of takeaways I, I got from this.</p>\n\n\n\n<p>Number one is, I, I\'ve always believed, um, at least in my world, that WordPress has been. The, an inclusive place, ever growing inclusive community. That\'s like a mirror to my world, the way I want my physical world here in Oklahoma to be. And I have [00:18:00] so much learned from our community leadership, uh, over the years, um, that there\'s a cons.</p>\n\n\n\n<p>Consistent push and drive from the entire community and the leadership to be truly diverse, truly inclusive in all those words. And I, I learn a lot from this. Um, so the mirror I, and I do think WordPress is, our community is so powerful cuz we\'re distributed all over the world. So if we make change in our community, in our WordPress, That should be, that should be reflected.</p>\n\n\n\n<p>And I think that\'s another, we talked about the software magic. This is the community magic. Exactly. Uh, the other thing is, I, I love and I respect because I try to take too much on that, you said, Hey, here\'s something I\'m passionate about, being an organizer, being at these community events, how special and valuable they are to you and other people instead.</p>\n\n\n\n<p>I\'m gonna make this dent first. Yeah. Like, I\'m gonna, I\'m gonna take on this aspect first. You. Beautifully and clearly [00:19:00] shared. This is the thing I\'m trying to take on in this bigger, bigger, um, change that you wanna see. We wanna see in the world. Thank you. Okay, so we\'ve got this now we\'ve got a website. Um, you\'ve got a website up to kind of share this.</p>\n\n\n\n<p>Now. Take me through, if you would, I am, pretend for a second you\'re talking to someone that is in an underrepresented, uh, in, in tech. Of, um, situation. Mm-hmm. , how\'s the process to, to get on the, Hey, I want to go to these WordCamps. I want to speak, but I do need some assistance. What does that process look like for, for support inclusion and tech?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> So support, inclusion and tech. Um, also weaves into other initiatives in order to, to assist our speakers. Um, and so when you\'re accepted, support inclusion tech, it become, moves into the position to, to assist you once you\'re accepted into [00:20:00] Word Camp. Um, as soon as you get that, you know, acceptance, you know, go to https://supportinclusionintech.com/.</p>\n\n\n\n<p>Um, and you\'re simply just, you know, gonna put in the word camp that you were accepted in. And then there are two components, um, in addition that they\'re suggested , right? Like you\'re encouraged to do this. Um, you know, uh, we\'re in the community of consent and so, um, you have, you know, um, You\'re gonna give, you know, the consent to be included in these other initiatives, um, you\'re not gonna be forced into it.</p>\n\n\n\n<p>Uh, there\'s underrepresented in tech and there\'s also the WordPress diversity, speaker channel. Um, both of those, uh, are ways of. Further supporting diversity and inclusion and representation within the WordPress space and creating, you know, um, you know, successful opportunities for us to, um, to, you know, to put together great speaker applications and then to also, um, you know, move beyond just submitting [00:21:00] them. Um, but to being accepted.</p>\n\n\n\n<p>The, the ask is that, you know, once you\'ve been accepted to camp and you\'re starting the process of, you know, receiving funding through supporting inclusion and tech, that you also participate in those other two initiatives as well. Um, because you know, in the process of doing that, it\'s further supporting the work that we\'re doing in the WordPress community. Exactly as you said, Corey, that, you know, the word WordPress leadership already has been putting in, um, you know, the work to, you know, to assist us in resolving the challenges that face society as a whole. And so there are initiatives that currently exist and those two in particular, I think.</p>\n\n\n\n<p>You know, are ways that we can continue to support underrepresented minority groups in the WordPress community. Um, and so in the process of, you know, uh, applying for the funding, uh, you\'re encouraged to, you know, to list yourself on underrepresented tech to join the, um, the, the diversity speaker channel [00:22:00] on make WordPress.</p>\n\n\n\n<p>Um, and then once you\'ve just put on, put that information in and you\'ve identified the type of support that you\'re seeking, um, you just like, and it starts from there. Like I start, um, you know, pairing you with, you know, with a partner that you know can, can step in and provide, you know, the funding for you.</p>\n\n\n\n<p>And so, you know, they\'re gonna cover your travel and they\'re gonna cover your hotel. Um, and that way in order for you to participate, you\'re not going to be paying anything really that you know, out of pocket. For that participation, um, in that WordCamp. And that\'s really the goal. Um, the goal is to remove the financial barrier to your participation.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, that\'s fantastic. By the way, I wanted to sidebar for a second and say underrepresented in tech, uh, by Allie and Michelle Frechette. If, if you\'re listening to this and, uh, you also as a be becoming a member of underrepresented in tech, get a free [00:23:00] uh, professional membership at post status?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Yes. Yes. I started, I and let\'s not also forget too, that like there are other opportunities as well as Post Status has been, um, you know, looking into as ways of increasing, you know, diversity and representation within the Post Status community. Um, so underrepresented tech and that membership, and I know that there\'s some other ways that you\'re working on it too, Corey.</p>\n\n\n\n<p>Um, you know, I think, I think when we can pull all our efforts together. We have a stronger community. Um, and you are, you know, you\'re, you\'re offering that and then supporting inclusion and tech, you know, encouraging, you know, speakers to, to register and to participate in those two other programs. Strengthen all our efforts. Yes. Um, and, and that\'s, you know, that\'s the process of it. And so once you\'ve submitted, you know, your. once you submitted that form, you know, just letting me know, like the speaker registration that you\'re seeking, the [00:24:00] support. Um, you\'re also gonna complete the blind directory listing and that blind directory really.</p>\n\n\n\n<p>That Blind directory listing has the word camp that you\'ll be speaking at. Um, and it has the type of support that you\'re seeking, whether it\'s just beach travel or hotel, or both, and that\'s it. Um, no one in the community, um, you know, needs to know who you are. They don\'t need to know what your need is. Um, they don\'t need to know where you come from.</p>\n\n\n\n<p>And they don\'t need to know what makes you underrepresented and what makes you a diverse speaker. Uh, it\'s simply a way for, um, for companies that are considering sponsoring to see that the need does exist. And it\'s also a way for our community to see that the need does exist, um, and that we do have members that are seeking the support.</p>\n\n\n\n<p>Um, that, that blind directory listing is, is just a way, you know, for our community to see that, um, that our need is there. Um, yeah, and it\'s also a way of, um, uh, [00:25:00] keeping everyone up to date on the work that\'s happening.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So I know we\'ll have two asks. The first ask is if, um, you need assistance, want assistance to go to a WordCamp to be sure to go to supportinclusionintech.com?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Yes. Once you\'ve been accepted, go to supportinclusionintech.com. Complete the form for speaker registration, and you\'ll, um, you\'ll be paired currently, um, with four companies, uh, that, um, that have partnered to work on this.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That comes to our second ask. Yeah, that\'s right. Okay. So tell me how, um, now this is very relevant for post status because we\'re a bunch of professional and business members in our community.</p>\n\n\n\n<p>So the second ask is, we need someone, one, participants, people that need and want assistance go and speak at Word Camps. And the second part of this is the sponsors and partners. Can you tell me a little bit more, more about that and [00:26:00] how that.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Okay, so starting off, partners are sponsors, , um, partners are the first, um, you know, companies that expressed an interest in supporting this project.</p>\n\n\n\n<p>Um, you know, this initiative. Uh, and so like that is my way of thanking you, um, by, you know, by acknowledging. that you came into this, um, wholehearted and opened armed. And so thank you to the four companies, um, that have done this, uh, that have stepped forward to say that they will support. Um, you know, it was really exciting once the call went out, um, from Word Camp US that they were seeking, uh, support for underrepresented.</p>\n\n\n\n<p>Speakers. It was really exciting because Master wp, um, stepped in at that time, you know, to say that they thought that this was a great project. And, you know, they\'re the fourth company they joined, um, GoDaddy, Post Status, and Yoast, um, you know, the original three that said that, you know, that they would love to support this initiative.</p>\n\n\n\n<p>And so, um, now we have, [00:27:00] we have four of them and there are also several companies as well that are providing in-kind donations. Um, and, you know, they\'re doing so, makes it possible for support, inclusion and tech, um, you know, to, to function, right? Because like, you have the website and then there are all these different like plugins that make it functional and make it possible, you know, for, um, for, for it to run and function the way that we need to.</p>\n\n\n\n<p>Um, so if your company that wants to. Sponsor speakers, you know, you just have to go to the site. Um, there is a section there for you to register your support, um, your register, your desire to support. It\'ll ask you, um, you know, to provide, you know, like a contact. Um, it\'ll ask you the type of, uh, How you want to provide this support.</p>\n\n\n\n<p>Um, would you prefer to reimburse speakers for their expenses or are you, um, ready and, you know, willing and able to pay for their, um, their travel and their hotel in advance of their trip? [00:28:00] Um, so, you know, once you\'ve identified your contact, you know, your contact is the type of support that you want to provide, you know, then, you know, we\'ll have an opportunity, I\'ll have an opportunity, you know, to really. Sit down with you and for us to have a conversation about like, you know what would be your process, you know, what would make it easy or for you to be a part of this initiative? Um, this isn\'t a cookie cutter means of support for, for companies, because you\'re all different.</p>\n\n\n\n<p>Um, how GoDaddy, you know, is providing support is different from how Post Status is providing support is different from how Yoss is providing support. And it\'s different from, you know, how, um, Master WP is and, uh, When I started this, and I, you know, I, and I wrote on my blog, like, really this proposal on https://winstinahughes.com/.</p>\n\n\n\n<p>I went into it, um, you know, with the understanding, personal understanding is that it\'s gonna [00:29:00] take a couple years to understand the needs of our community and the ways, you know, companies and our ecosystem can support these needs. And in the last six months, Exactly what I, you know, anticipated, um, is what I\'ve been able to, you know, to, to see.</p>\n\n\n\n<p>And, you know, currently, um, there have been three, you know, requests, um, for, you know, to participate, you know, um, for funding, for support, for camps and, um, two unique, you know, individuals have, have made those requests. Um, and you know, so right now it\'s a question of. You know, like assisting them, you know, with the process of how, you know, our four partners, you know, can support them in that way.</p>\n\n\n\n<p>Um, and I think that answers part of your question. Um, the second part of the question is like, so how is this financial component gonna work? Right? [00:30:00] Like, are companies giving me money? No, you\'re not , like, I\'m not receiving, you know, um, any of the money. Is the financial support that you\'re providing. Um, instead it\'s looking at your company\'s processes, um, you know, your, your financial processes, your accounting processes for you to, you know, step back and think like, how could we as a company provide this level of support?</p>\n\n\n\n<p>Um, you know, it could be that you already have an existing program. Yoast already has a diversity fund. Um, and so Yoast partnering with me is a way of, um, you know, kind of bringing the need that exists to them as well. Um, and so therefore they\'re able to like further serve the community, um, you know, through those who are expressing an interest through support inclusion and tech.</p>\n\n\n\n<p>Um, the way Post Status, you know, is seeking the support speakers too, is different from Yoast. Um, and, you know, uh, [00:31:00] Yoast has a budget, um, and.</p>\n\n\n\n<p>Has their own system and their own ways of support. Um, and so they also have a budget and then Master wp, they also have a budget. And so once that budget has been met, then you know the partners essentially gray out for that year. Um, and they become active the next year. Um, and so. , that is a way of making this sustainable.</p>\n\n\n\n<p>You know, you, you pledge how much you can support, um, speakers financially, and once that has been met, then your, I mean, your capacity for the year is, is, is met. And then next year, once you\'ve reallocated your budget, or not re reallocated, but once you\'ve defined, you know, your budget, um, for the year, then you would go, you know, back into the process of supporting [00:32:00] speaker.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And I wanted to say from personal experience here, that there\'s many way, there\'s, there\'s creative ways to support these speakers, uh, to go, you know, uh, you, you talked about hotel and flights. Yeah. And, um, I, I wanna, I wanted to say that one standard to say this is not an unapproachable. Opportunity to support d uh, diversity inclusion in tech.</p>\n\n\n\n<p>Um, this is very manageable for most members at Post Status, by the way. So, you know, flight costs, uh, depending on where it is in the world. Um, I think the first question you asked me was, what\'s your budget? Yeah. And that\'s a great way. So as you come in and click sponsor, just be thinking of these things with when st for how you can.</p>\n\n\n\n<p>Help support this amazing project. Um, and that there\'s creative ways to do that. And I, I think Winstina, most members, business members at Post Status can make a meaningful contribution in this way [00:33:00] through this, your project here. And I love the fact also, I know we talked about this too, you wanted to be real careful.</p>\n\n\n\n<p>You wanna say you want the support to go to the person as best as possible. A lot of nonprofits have overhead. You have graciously generated your time and your talent to this project, and I, I, I love the way you\'ve done it too, even though I go, gosh, Winston, I love that you have this passion. Um, but thank you so much for this.</p>\n\n\n\n<p>But I know you give of your own time. For this particular project, but as you talk to Ena, if you\'re listening to this now, there\'s creative options and ENA is so good at helping you, helping understand where you\'re at, and then pair it with people that need assistance.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Thank you. Yes, and that is, that is the goal.</p>\n\n\n\n<p>In terms of my contribution to the WordPress community, burnout is so real and because of the fact that I work full-time outside of the WordPress space, the WordPress ecosystem, um, I\'m really [00:34:00] cognizant of the fact that I need to perform well. And at a high level , right? Uhhuh , um, at work, you know, and in my personal life.</p>\n\n\n\n<p>And WordPress fits into, um, you know, into that. And so I\'ve been able to contribute in different capacities since I was in college and. Graduate school, first attending in college, um, or post-college in graduate school, moving into speaking and organizing, um, and now working, you know, professionally maintaining, you know, organizing as a meetup organizer and a WordCamp organizer, and understanding that this can really lead to burnout.</p>\n\n\n\n<p>You know, um, my ultimate decision is, you know, that for the next two years, I\'m not gonna be a WordCamp speaker, and I\'m also not gonna be a. Organizer, you know, this, these are the ways that I can, you know, I can continue to contribute. I can contribute through support, inclusion and tech. Um, you know, but really pair, pair down all the other ways that I could burn out.</p>\n\n\n\n<p>[00:35:00] And so by maintaining, Being a New York City meetup organizer and hosting at least a minimum of six meet meetups a year, and, um, really pivoting and concentrating my energy towards support, inclusion and tech. I can sustainably contribute to the community. And so this is a perfect opportunity to really share with you, um, that, you know, I want to meet with every speaker.</p>\n\n\n\n<p>You know, that expresses the interest for support. So as you submit your, you know, your speaker registration and you join the directory listing, I will, um, you know, I\'ll ask to meet with you, for us to have a conversation, for me to understand your needs and to share. what it is I understand and I\'ve learned over time, and also how our partners seek to support.</p>\n\n\n\n<p>So we\'ll have that conversation. It\'s gonna be on the weekend. I hope you graciously incorporate that into your schedule. Um, because, you know, I, I work during the week, [00:36:00] um, and so, you know, we\'ll meet once. Uh, hopefully within a week or two of your registering as soon as possible. Especially it\'s, it\'s, it\'s ideal, uh, not ideal.</p>\n\n\n\n<p>It\'s encouraged to register as soon as possible, um, because the closer you get to your ward camp, you\'re gonna. Most likely, um, be reimbursed if you apply much sooner, like a, like two or three months in advance. You know, there are companies that will be able to, you know, cover your, your, your costs, um, of participation in advance of your trip.</p>\n\n\n\n<p>If you are reaching out like three to two. You know, to the time of, of your support that the time that you need, then you\'re looking at being reimbursed for your expenses. And so like, you know, that\'s, that\'s something to, to keep in mind when it comes to registering, you know, for this is that companies will be able to assist you with removing this.</p>\n\n\n\n<p>It just might be [00:37:00] later. When your need is expressed closer to the time that you\'re speaking that it\'s more, it\'ll be a reimbursement instead. Um, and so that\'s something to keep in mind, the timing in which you submit your interest, and also the fact that, um, you know, that we\'ll be meeting on a weekend. Um, there\'s this speaker that just registered and he wanted to meet with me.</p>\n\n\n\n<p>Um, On Christmas, he\'s in another part of the world. I mean, you know, like, so yeah. Um, and so I just, you know, I just like, I think when, and I had a con, you know, I just like responded and let him know that it\'s, it\'s Christmas for me. I\'m, you know, I\'m a Christian and I\'m so celebrating my holiday today. Um, you know, and, you know, like, uh, let\'s, let\'s meet next week.</p>\n\n\n\n<p>Um, so, you know, uh, we\'ll have like, you know, we\'ll have these conversations and we\'ll, we\'ll see. And you know how. Um, you know, how you and I can, can have that conversation and [00:38:00] meet and how your need can be met. And I\'ll also meet with, you know, companies that wanna sponsor as well. And I wanna tell you, I want you to tell me what\'s realistic for you.</p>\n\n\n\n<p>Um, I want just, just to, just to give you a sense of how some of the companies are. In fact, um, you have, uh, of the four partner. You have one partner who seeks to provide support, um, you know, within the us. Um, as of our last conversation, you know, the desire is to support minority speakers, um, specifically people of color, um, specifically, you know, black Americans, um, to improve or those of black descent to improve, um, their numbers.</p>\n\n\n\n<p>WordCamps in the US. Um, our last conversation was, you know, this is the direction that they wanna go. This is the greatest impact that they think that they can achieve. Um, and [00:39:00] I\'m, I\'m so glad that I get to listen to what everyone. Hopes to do, you know? Um, because it gives me a sense too that our community is really thinking through, like, this is how we\'re gonna solve it, right?</p>\n\n\n\n<p>Like, this is how we\'re gonna make the dent that we wanna see. So this company already knows this is how we\'re gonna make the dent that we wanna see. And there, there. Process too, is that they\'re just gonna give you a blanket amount of money and they\'re not gonna micromanage how it is you spend it. Um, they just simply ask, you know, that you, not simply, the requirement is that you put it towards your WordCamp experience and that\'s where they are with it.</p>\n\n\n\n<p>Um, there\'s, you know, another company host of course, has an established diversity fund and they have processes already in place for the support. And so you\'re simply gonna go through the existing process that, um, Yoast has established and they have a generous fund. Um, and their support, um, is something [00:40:00] that they\'ve been offering the support for a long time, and they\'re very, um, they\'re really respected , you know, for that effort.</p>\n\n\n\n<p>And, um, I\'ve had an opportunity to like, you know, to speak with someone who has been a part of their support in the past or received it and they speak so highly of, of Yoast um, and that\'s, you know, Yoast has already thought it through and they\'ve already walked through. You know, Corey and I, you and I have spoken about, you know, the budget, you know, that you\'re, that post status is set aside and, and you\'ve already shared.</p>\n\n\n\n<p>You know, what is the need? Like, we\'re not micromanaging, right? Like, let us know what type of support that you need, and we\'re just gonna provide that to you. Um, and so like you\'re, you are already thinking about like, how can we make this happen? Like, you know, if you need to, you know, it\'s a flight, you know, wherever it is.</p>\n\n\n\n<p>It doesn\'t have to be domestic, right? Like, it doesn\'t have to be in the us it could be anywhere in the world. Um, and, and that\'s, you know, that\'s like, [00:41:00] Post Status is thinking, and then GoDaddy is currently working through their process. Um, and I do believe that because of the fact that they have teams around the world that GoDaddy\'s reach will also be of, um, I think GoDaddy\'s reach will also extend beyond like the domestic, you know, like within the US and they\'ll be able to provide support as well toward camps.</p>\n\n\n\n<p>you know, around the world. I\'m anticipating it\'s possible that, um, GoDaddy\'s like impact could, you know, be especially strong with, um, Uh, WordCamps, like Word Camp Asia or Word Camp US or Word Camp Europe. Um, you know, because they\'ll have team members there and when they have team members there that can help facilitate and smooth the process over for, for those that they\'re going to be supporting, but they\'re working through their processes to make this established as well.</p>\n\n\n\n<p>And so I think [00:42:00] that, you know, just by me sharing that, you can tell that, you know, each of, you know, my partners are, are working within. Um, you know, like their business processes and their financial processes and also their vision for impact. Um, and I think that\'s really important.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So to recap, here\'s what I\'ve heard.</p>\n\n\n\n<p>So support inclusion and tech.com is the bridge between those that want have the desire to share their exper experience and expertise at word camps, but need some financial assistance to get their flights and hotel. That\'s what f support inclusion and tech.com does. Second, as a participant, as someone.</p>\n\n\n\n<p>Um, if you first need to apply and get, uh, approved to speak at work camp, then come to support inclusion and tech.com and, um, sign up, have a conversation.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Mm-hmm. , once you\'ve been approved.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Have a conversation with we, Tina. [00:43:00] And then third, the third recap is our ask for, um, well buzzer asked in our community.</p>\n\n\n\n<p>Uh, if you\'re looking to speak to Word Camp, go to support inclu or go apply, get approved, come to support inclusion in tech. And then second for those businesses out there. You know, you have a heart, you wanna support this. That\'s our community. That\'s who WordPress is. Uh, go to support inclusion and tech.</p>\n\n\n\n<p>Click on the sponsor link and have a conversation with ena. Think about your budget. Think about what you wanna do, uh, when Cena is so creative in helping just make these connections happen so you can really make a difference in our community. Did I get it all right?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> You did. You did get it right And, okay.</p>\n\n\n\n<p>And I think that support inclusion tech also. It goes through vetting process as well to confirm that those who are seeking assistance, you know, to participate actually have been accepted. And that\'s why, that\'s why the steps are what they are. Um, partners aren\'t gonna [00:44:00] question, oh, is this need real? You know, that vetting is gonna happen in advance.</p>\n\n\n\n<p>So when you receive a speaker interest, You know that this is someone who has been accepted a Word camp, and they understand the process and they\'re working within, you know, your, your policies and your procedures, um, in order for them to participate. So it removes all those questions. Um, you know, so that and that, yeah, that\'s a part of it.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, Winston, my friend, thank you so much for this important work, uh, holding the banner up. I know this takes a lot of time. I know you\'ve got a full-time gig. I know you\'ve got a life</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> more,</p>\n\n\n\n<p><strong>Cory Miller:</strong> um, But I so much appreciate you post. I just appreciate you, our members do for doing this vitally important work and making a difference in our world that can, like we said, can be a reflection in all these thousands of communities we go out to, to say, how can I be more inclusive?</p>\n\n\n\n<p>[00:45:00] How can I make sure everybody is represented as at least an opportunity to be represented? So I really appreciate you, <strong>Winstina</strong>, and your work and also just ringing the bell with me and teaching me and sharing, um, how we can make, make that difference. So I appreciate. Thanks for being. I\'m thanks for being on.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Sorry. No, no. I mean, I absolutely, like, this gives me life and it makes me wanna show up in the world, you know, different and energy. I wanna exercise more like , you know, like this is, this is, this is really in a lot of ways just like giving me energy to contribute. And so, um, to like, just to be able to like, work with you, you\'re, you\'re, you know, I\'m, I think you\'re awesome</p>\n\n\n\n<p>You know that, ditto. You\'re, you have a beautiful family. You know, like your energy is like, you have such great energy and so just a chance to work with you and like the amazing people that I\'ve had a chance to, it, it just, it gives me life and it makes me want to live more, you know? So like, let\'s, let\'s [00:46:00] see what we can do to continue to support our community so that the four freedoms, you know, I think that it\'s, , it\'s creating a fifth freedom, which is, you know, for all of us to be able to participate in a truly inclusive, um, community.</p>\n\n\n\n<p>And, you know, that speaks a lot to what the co-founders of WordPress. I think, um, you know, what, what they created and, and where they want, um, what their vision is and, you know, from their vision where we\'re, um, going and or how we\'re evolving as a community. I mean, to have 40% plus of a reach on the.</p>\n\n\n\n<p>There\'s so many people around the world that are impacted by this project, you know? So, um, yeah, I love</p>\n\n\n\n<p><strong>Cory Miller:</strong> that. Let\'s, let\'s add the fifth Freedom. I love that win. Coined by Win, and I love that leadership vision for our community. We need it. Thank you. Thank you, ma\'am. You have a good rest of your year and we\'ll see you in the next year.</p>\n\n\n\n<p>For everybody listening, thanks for listening. Tune in, go to support inclusion in [00:47:00] tech.com, and also Winstina Hughes is in our post Slack community. So you can go at Wednesday and you can ping her and, um, get the conversation started there. So thank you, Eena.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Thank you. Thank you, Brent.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jan 2023 19:17:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Do The Woo Community: Do the Woo is Headed to WordCamp Asia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://dothewoo.io/do-the-woo-is-headed-to-wordcamp-asia/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"<p>We are looking forward to attending WordCamp Asia and also are proud to be a media partner this year.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/do-the-woo-is-headed-to-wordcamp-asia/\">Do the Woo is Headed to WordCamp Asia</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jan 2023 10:19:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Gutenberg Times: Gutenberg Changelog #78 -State of the Word, WordPress 6.2, Gutenberg 14.8 and 14.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=23141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-78-state-of-the-word-wordpress-6-2-gutenberg-14-8-and-14-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3970:\"<p>Birgit Pauli-Haack and Hector Prieto talked State of the Word, Gutenberg releases 14.8 and 14.9, WordPress 6.2 and beyond.&nbsp;</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2>State of the Word</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/30/matt-mullenweg-state-of-the-word-2022/\">Matt Mullenweg’s State of the Word</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\">Episode 45:<strong> </strong>State of the Word Reflections</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/design-system-bridge-to-wordpress-fonts-management-playground-and-more-weekend-edition-239/#1-state-of-the-word\">GT 239: State of the Word</a></li>\n\n\n\n<li><a href=\"https://www.pewresearch.org/\">Pew Research Center</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/live-q-a-block-first-approach-at-pew-research-center/\">Live Q &amp; A: Block-First Approach at Pew Research Center</a></li>\n</ul>\n\n\n\n<h2>Gutenberg Times Live Q &amp; A </h2>\n\n\n\n<p><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: January 11th at 5 pm ET / 22:00 UTC Layout, Layout, Layout.</a></p>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/session/layout-layout-layout/\">Isabel Brison’s talk at WordCamp Asia</a></p>\n\n\n\n<h2>WordPress and Gutenberg Releases</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/27/wordpress-6-2-planning-schedule-proposal/\">WordPress 6.2 Planning Schedule Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">What’s new in Gutenberg 14.8? (21 December)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\">Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">What’s new in Gutenberg 14.9? (4 January)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-9s-new-magic-push-block-changes-to-global-styles\">Gutenberg 14.9’s New Magic: Push Block Changes to Global Styles</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p>The transcript is in the works. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Jan 2023 19:14:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Gutenberg Times: 209 Block Themes, Query Block Variations, Forms with Blocks, Block Art and more – Weekend Edition #240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=23042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://gutenbergtimes.com/209-block-themes-query-block-variations-forms-with-blocks-block-art-and-more-weekend-edition-240/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:27730:\"<p>Howdy, </p>\n\n\n\n<p>Tomorrow is the 5-year anniversary of Gutenberg Times. It feels like I just started yesterday to be fascinated by the possibilities of the block editor. For many people, it actually was just yesterday that they dipped their toes into the world of the new thing. Not you of course. You have been a wonderful subscriber and reader for a while now, and I am infinitely grateful for your support. Thank you! </p>\n\n\n\n<p><strong>Welcome to all new subscribers this year. So glad you are here. </strong></p>\n\n\n\n<p>Let&#8217;s dive into the sixth year together, and learn what will be next for the block editor and what other people make with it and for it. The ecosystem seems to keep expanding quite a bit with the block editor. </p>\n\n\n\n<p>Wishing you and yours a fabulous 2023. May you be prosperous, happy, and healthy! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: Reminder: Hope to see you next week at the Gutenberg Times Live Q &amp; A. <a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Get your seats now for January 11, 2023, at 5pm / ET 22:00 UTC</a></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-ne\">From the WordPress Developer Blog</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-plugin-releases\">Gutenberg plugin releases</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-making-block-art\">Making Block Art </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-form-plugins-working-with-blocks\">Form Plugins working with Blocks</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Hector Prieto</strong> published the <a href=\"https://make.wordpress.org/core/2022/12/27/wordpress-6-2-planning-schedule-proposal/\"><strong>WordPress 6.2 Planning Schedule Proposal</strong></a>, and it&#8217;s also a call for volunteers for the release squad. The 6.2 release squad will then decide on the final release schedule. For now, Feature Freeze and Beta 1 would be on February 7th, 2023. Tthere are four Beta releases planned before release candidate 1 will be available on March 7th, and a final release on March 28th, 2023. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Reminder: January 10, 2023, at 9:30 ET / 14:30 UTC:  <a href=\"https://make.wordpress.org/core/2022/12/16/hallway-hangout-performance-considerations-for-block-themes/\"><strong>Hallway Hangout: Performance Considerations for Block Themes</strong></a> <strong>Anne McCarthy</strong> wrote: &#8220;At a high level, we’ll go through general intros (what each person does/focuses on), current work underway to address performance, what work is being done specifically for block themes, and general open Q&amp;A. Hallway hangouts are meant to be casual and collaborative so come prepared with a kind, curious mind along with any questions or items you want to demo/discuss.&#8221; </p>\n\n\n\n<h3 id=\"1-ne\">From the WordPress Developer Blog</h3>\n\n\n\n<p><strong>Justin Tadlock</strong> published a tutorial for <a href=\"https://developer.wordpress.org/news/2022/12/20/building-a-book-review-grid-with-a-query-loop-block-variation/\"><strong>building a book review grid with a Query Loop block variation</strong></a>.  WordPress 6.1 introduced an extension to the Query Loop block, which allows plugin developers to filter existing functionality in core WordPress rather than building custom blocks to query posts. This tutorial shows how to build a WordPress plugin that display a list of book review posts including <code>post_meta` </code>data, using a block variation for the Query Loop and set up rendering it on the front end. </p>\n\n\n\n<p><strong>Nick Diego</strong> <a href=\"https://twitter.com/nickmdiego/status/1611377046785081345\">tweeted</a>:  I always knew the Query Loop block was incredibly powerful, but I had never explored integrating post metadata into custom block variations! Learn how in this fantastic article by <a href=\"https://twitter.com/justintadlock\">@justintadlock</a> on the new WordPress Developer Blog.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Micheal Burridge</strong> composed a Roundup post to review <a href=\"https://developer.wordpress.org/news/2022/12/28/2022-the-block-developers-year-in-review/\"><strong>2022 from a block developer&#8217;s perspective</strong></a> in is post. You&#8217;ll find a select list of resources, to get started or to catch up on the development from the last 12 months, via the Make Blog, WordPress TV and the Learn WordPress site. </p>\n\n\n\n<h3 id=\"2-gutenberg-plugin-releases\">Gutenberg plugin releases</h3>\n\n\n\n<p><strong>Gutenberg 14.8 </strong>was released on December 22, 2022, and release lead <strong>Ryan Welcher</strong> highlighted in his post <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\"><strong>What’s new in Gutenberg 14.8? (21 December)</strong></a></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/#new-reorganized-site-editor-interface\">A new, reorganized Site Editor interface</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/#introduce-the-stylebook\">Introducing the Style Book</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/#Add-custom-CSS-rules-for-your-site\">Add custom CSS rules for your site</a></li>\n</ul>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the release as well via the WPTavern: <a href=\"https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\"><strong>Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Gutenberg 14.9 i</strong>s the first release of 2023, and release lead Justin Tadlock pointed out a few new features in his post <strong><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">What’s new in Gutenberg 14.9? (4 January)</a></strong>: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#push-block-changes-to-global-styles\">Push block changes to Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#typography-support-for-page-list-block\">Typography support for Page List block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#import-sidebar-widgets-to-template-parts\">Import sidebar widgets to template parts</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#shadow-presets-minimum-fluid-font-size\">theme.json support: Shadow presets and minimum fluid font size</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#other-notable-highlights\">Other notable highlights</a></li>\n</ul>\n\n\n\n<p>On the WPTavern, <strong>Sarah Gooding</strong> took the version for spin and reported on the new magic: <a href=\"https://wptavern.com/gutenberg-14-9s-new-magic-push-block-changes-to-global-styles\"><strong>Gutenberg 14.9’s New Magic: Push Block Changes to Global Styles</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the upcoming <strong>Gutenberg Changelog episode 78</strong>, <strong>Hector Prieto</strong> was my guest. He is a full-time core contributor and coordinator of multi-release WordPress and Gutenberg releases. We discussed Gutenberg 14.8 and 14.9 as well as 6.2 release schedule proposal and other topics.  The episode will hit your favorite podcast app over the weekend. </p>\n\n\n\n<img />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\">Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January</a> with special guest, Daisy Olsen and host Birgit Pauli-Haack. </p>\n</div></div>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> wrote about <a href=\"https://wptavern.com/block-protocol-announces-new-wordpress-plugin-coming-in-2023\"><strong>Block Protocol Announces New WordPress Plugin Coming in 2023</strong></a> It will allow users to embed interactive blocks that are compatible with Gutenberg, and will include blocks for drawing, GitHub pull request overview, timer, calculation, and more. The plugin will also include new blocks powered by OpenAI DALL-E and GPT . </p>\n\n\n\n<p>The <a href=\"https://blockprotocol.org/\"><em>Block Protocol</em></a> project is open source and designed to be an open protocol, and WordPress hopes to integrate more with it in the future. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the latest WPTavern Jukebox podcast episode, <strong>Damon Cook</strong>, developer advocate at WPEngine, discussed with Nathan Wrigley the <a href=\"https://wptavern.com/podcast/57-damon-cook-on-the-future-of-website-styling-in-wordpress\">f<strong>uture of website styling in WordPress</strong></a>. Wrigley wrote in the introduction: &#8221; Block-based themes are revolutionizing website styling. You’re going to be able to change any aspect of your website from the UI that you’re familiar with. The hope is that it’ll make styling more accessible to a wider audience.</p>\n\n\n\n<p>Damon talks about the fact that we’re in a period of flux right now. The documentation and tooling needed to work with website styles is maturing, but is by no means complete.&#8221; </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Torsten Landsiedel</strong> scratched his personal itch and built the plugin Ignore block name in search, after finding that the WordPress built-in search included in the findings posts where the search keywords are in the HTML comments of blocks, and with that skews, the search result less relevant.  It&#8217;s particular helpful when your blog is about working with the block editor or about content creation with WordPress. Landsiedel feels that the block editor makes the shortcomings of the built-in search feature worse because blocks contain full words, and not just HTML tags. It&#8217;s been a <a href=\"https://github.com/WordPress/gutenberg/issues/3739\">long-standing issue</a>, that this plugin now solves. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://wordpress.org/themes/tags/full-site-editing/\"><strong>209 Block Themes </strong></a>are now available in the WordPress repository with new submissions by <a href=\"https://wordpress.org/themes/author/themeisle/\">Themeisle</a>, <a href=\"https://wordpress.org/themes/author/sparklewpthemes/\">sparklewpthemes</a>, <a href=\"https://wordpress.org/themes/author/olivethemes/\">olivethemes</a>, <a href=\"https://wordpress.org/themes/author/deothemes/\">deothemes</a>, <a href=\"https://wordpress.org/themes/author/sonalsinha21/\">sonalsinha21</a>, <a href=\"https://wordpress.org/themes/author/blockify/\">Blockify</a>, <a href=\"https://wordpress.org/themes/author/hamidxazad/\">hamidxazad</a>, <a href=\"https://wordpress.org/themes/author/wpzoom/\">WPZOOM</a>. </p>\n\n\n\n<a href=\"https://wordpress.org/themes/tags/full-site-editing/\"><img /></a>\n\n\n\n<p><strong>Ana Segota</strong> of <em>Anariel Design</em> also <a href=\"https://twitter.com/Ana_Segota/status/1608903485956947968\">announced</a> <a href=\"https://anarieldesign.com/themes/yuna/\"><strong>Yuna, a block theme for Nonprofits</strong></a> that comes with 100+ Design Patterns, you can add to your page with a simple drag and drop. Use built-in options to arrange and style them any way you want. It also includes built-in styles for the popular GiveWP donations plugin and is also ready to house your ecommerce store. </p>\n\n\n\n<h3 id=\"4-making-block-art\">Making Block Art </h3>\n\n\n\n<p>Curious about some art behind Matt Mullenweg during State of the Word? Below are those pieces designed for the&nbsp;<a href=\"https://block-museum.com/\">Museum of Block Art</a>&nbsp;which represent the creativity that Gutenberg blocks inspire. Be sure to stop by and experience the museum’s&nbsp;<a href=\"https://block-museum.com/interact/\">digital interactive exhibit</a>.</p>\n\n\n\n<p>You can see </p>\n\n\n\n<ul>\n<li><a href=\"https://block-museum.com/2022/06/03/circular-rainbow/\"><strong>Circular rainbow</strong></a> by Chuck Grimmett&nbsp;</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/03/01/splitting/\"><strong>Splitting</strong></a> by Anne McCarthy</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/02/02/its-me/\"><strong>It’s me</strong></a> by Nick Hamze</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/01/19/futuro-1/\"><strong>Futuro 1</strong></a> by Javier Arce</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/01/11/019/\"><strong>019</strong></a> by Tammy Lister</li>\n</ul>\n\n\n\n<img />\n\n\n\n<p><strong>Anne McCarthy</strong>, instigator and curator of the Museum of Block Art, wrote an insightful blog post about how she approached making art with the Block Editor.  Take a look <a href=\"https://nomad.blog/2022/12/26/behind-the-scenes-of-creating-art-with-wordpress/\"><strong>Behind the scenes of creating art with WordPress</strong></a>. </p>\n\n\n\n<p><strong>Chuck Grimmett</strong> has more examples of <a href=\"https://cagrimmett.com/wp-block-art/\"><strong>WP Block Art</strong></a> on his blog. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rich Tabor</strong>&nbsp;and&nbsp;<strong>Courtney Portnoy</strong>&nbsp;discussed&nbsp;<a href=\"https://wordpress.tv/2022/11/18/the-creative-side-of-blocks-vol-3/\"><strong>The creative side of blocks</strong></a>&nbsp;on WordPressTV. Rich Tabor walks the viewers through one of his block art creations. It’s quite inspiring to watch Tabor’s exploratory creative process using the block editor. I learned quite a few things about the power of the various color features: gradient, nested group blocks, and how to replace the theme’s primary and secondary colors for the whole site. You’ll also get an introduction to the&nbsp;<a href=\"https://block-museum.com/\">Museum of Block Art</a>, where Rich and other block artists showcase their creations. <em>(also mentioned in GT 239)</em></p>\n\n\n\n<h3 id=\"5-form-plugins-working-with-blocks\">Form Plugins working with Blocks</h3>\n\n\n\n<p>Two plugins emerged that take advantage of the block editor and its components and scripts so site owners and builders can use them to create forms. </p>\n\n\n\n<p><strong>Munir Kamal</strong>, created a block integration for the popular CF7 Forms. It&#8217;s aptly names <a href=\"https://wordpress.org/plugins/cf7-blocks/\"><strong>CF Blocks</strong></a> and available in the WordPress repository. He wrote in the description: &#8220;With CF7 Blocks, you can easily create and customize contact forms within the familiar block editor interface. No more fiddling with short codes or HTML – just drag and drop blocks to build your forms exactly how you want them.&#8221; Sounds spectacular, doesn&#8217;t it? </p>\n\n\n\n<p>In here article <a href=\"https://wptavern.com/new-cf7-blocks-plugin-brings-blocks-to-contact-form-7\"><strong>New CF7 Blocks Plugin Brings Blocks to Contact Form 7</strong></a>, Sarah Gooding, took a more in-depth look and shares her findings. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On <a href=\"https://twitter.com/jrtashjian/status/1610761741025087521\">Twitter</a>, <a href=\"https://twitter.com/jrtashjian\"><strong>JR Tashjian</strong></a> developer at GoDaddy, <strong>introduced </strong><a href=\"https://omniform.io/\"><strong>OmniForm</strong>,</a> the next-generation Form Builder for your website. Sign up for early access now and be among the first to try it. The plan is to make the plugin available in the WordPress plugin directory at the end of January, with early access provided to users the week prior. Tashjian continues: &#8220;OmniForm embraces the block editor to the fullest extent and unlike any solution right now. The block editor is the future of editing in WordPress and building any kind of form will be no different from creating a post or page.&#8221; Tall order. Looking forward to doing some testing, too. </p>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> has a new video up on YouTube:  <a href=\"https://www.youtube.com/watch?v=e2bFOZ7O-Po\"><strong>Building a site with WordPress 5.9 vs. WordPress 6.2 (in progress features)</strong></a> &#8211; To better show what&#8217;s changed with the Site Editor from when it was first introduced in WordPress 5.9, this video goes through both a demo of the original state and a brief look at what&#8217;s in place today and what&#8217;s to come, especially as 6.2 looks to wrap up much of the work around site editing/phase 2 of Gutenberg. Keep in mind that WordPress 6.2 is not out yet and much of what&#8217;s being shown is very much a work in progress with big opportunities to provide feedback along the way. Either way, I hope you enjoy taking a peak back and a look forward. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p>In this video tutorial, <strong>Jonathan Bossenger</strong> gives you an <strong><a href=\"https://wordpress.tv/2023/01/06/introduction-to-theme-json/\" target=\"_blank\" rel=\"noreferrer noopener\">Introduction to theme.json</a>.</strong> You will learn how the theme.js file works, and how you can control these settings and styles.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Daisy Olsen</strong> started a new Live Stream schedule and will show off Block Themes in WordPress every Friday at 10:30 am ET / 15:30 UTC on Twitch. </p>\n\n\n\n<p>The inaugural show took place  Friday, January 6th, 2023 with the topic: <a href=\"https://www.twitch.tv/videos/1699386540\"><strong>Building a Block Theme</strong></a>. It&#8217;s a great opportunity to follow along with Daisy and ask questions along the way. </p>\n\n\n\n<a href=\"https://www.twitch.tv/daisyonwp\"><img /></a>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Munir Kamal </strong>takes you on a journey of <a href=\"https://gutenberghub.com/from-wordpress-to-the-world-intro-to-the-standalone-gutenberg-block-editor/\"><strong>From WordPress to the World: Intro to the Standalone Gutenberg Block Editor</strong></a>. In his new plugin, Kamal made the journey and found a few challenges along the way, overcame them and new put it all together for others to follow.  Using the app <a href=\"https://github.com/Automattic/isolated-block-editor\"><strong>&#8216;Isolated block editor</strong></a>, from the public repo, maintained by Automattic. Matt Mullenweg in the State of the Word emphasized that the block editor is also used outside of WordPress, with Tumblr, Day One app and with bbPress instance.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The team working on <strong>GiveWP</strong> went on a similar route on the revamp of the highly popular donation plugin. Post Status recently posted an article about that: <a href=\"https://poststatus.com/the-future-of-givewp-and-the-block-editor/\"><strong>The Future of GiveWP and the Block Editor</strong></a></p>\n\n\n\n<p>GiveWP will hold a Town hall event about the new version on January 25th, 2023 at 10am PT / 18:00 UTC – in case someone is interested.&nbsp;<a href=\"https://href.li/?https://givewp.com/town-hall-givewp-design-mode-and-whats-next-for-3-0/?\"><strong>Learn more Town Hall: GiveWP Design Mode and What’s Next for 3.0</strong></a></p>\n\n\n\n<p><br /><strong>Kyle Johnson</strong>, JavaScript developer at GiveWP will present his talk: <a href=\"https://birmingham.wordcamp.org/2023/session/using-gutenberg-as-a-development-foundation-not-just-a-block-builder/\"><strong>Using Gutenberg as a Development Foundation, Not Just a Block Builder</strong></a> at WordCamp Birmingham on February 4th, 2023. As far as we know, the talks will be recorded, but not livestreamed. So, they will show up on WordPress TV in the weeks after the WordCamp. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Mohammed Noufal of Hubspot wrote about <a href=\"https://blog.hubspot.com/website/custom-blocks-wordpress\"><strong>How to Create Custom Blocks in WordPress</strong></a>, providing answers to the questions:  why use a custom block, how to make Custom Block Templates and how to use custom blocks on your site. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong>&#8216;s last section of his series: <em>Let’s code: developing blocks without React!&nbsp;</em> is now also available on WordPress TV. <a href=\"https://wordpress.tv/2023/01/04/lets-code-developing-blocks-without-react-review/\"><strong>Let’s code: developing blocks without React! –&nbsp;Review</strong></a>. If you followed along over the past few weeks, you would have learned to build a small WordPress block using plain (vanilla) JavaScript. In this session, we will review everything we’ve learned so far, by rebuilding the entire block from scratch.</p>\n\n\n\n<p>The other editions for the series are in order of broadcast/</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/02/lets-code-developing-blocks-without-react-controls/\">Controls</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/25/lets-code-developing-blocks-without-react-part-2-take-2/\">Attributes and&nbsp;RichText</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/18/lets-code-developing-blocks-without-react-all-about-attributes/\">All about Attributes</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/11/lets-code-developing-blocks-without-react-part-1/\">Block&nbsp;Basics</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/12/lets-code-developing-blocks-without-react-block-supports/\" target=\"_blank\" rel=\"noreferrer noopener\">Block Supports</a>&nbsp;</li>\n</ul>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p><strong>January 10, 2023 &#8211; 9:30 ET / 14:30 UTC </strong><br /><a href=\"https://make.wordpress.org/core/2022/12/16/hallway-hangout-performance-considerations-for-block-themes/\"><strong>Hallway Hangout: Performance Considerations for Block Themes</strong></a> with Anne McCarthy</p>\n\n\n\n<p><strong>January 11, 2023 – 5 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: Layout, layout, layout</a></strong><br />Panel discussion with Isabel Brison, Andrew Serong, Justin Tadlock and Birgit Pauli-Haack</p>\n\n\n\n<p>February 4 + 5, 2023 <br /><a href=\"https://birmingham.wordcamp.org/\"><strong>WordCamp Birmingham, AL</strong></a><br /></p>\n\n\n\n<p><strong>February 17 – 19, 2023</strong><br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>January 17, 2023 &#8211; 3pm / 20:00 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290412094/\"><strong>Patterns, reusable blocks and block locking</strong></a></p>\n\n\n\n<p>January 19, 2023 – 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290363952/\"><strong>Let’s make custom templates in the Site Editor!</strong></a></p>\n\n\n\n<p>January 31, 2023 &#8211; 3pm ET / 20:00 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290414181/\"><strong>Creating a photography website with the block editor</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image:</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Jan 2023 14:25:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: WordCamp Europe 2023 Speaker Applications Open, Organizers Call for More Interactive Sessions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140881\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/wordcamp-europe-2023-speaker-applications-open-organizers-call-for-more-interactive-sessions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2184:\"<img />\n\n\n\n<p>WordCamp Europe 2023 is being hosted in Athens this year with two conference days scheduled for June 9 and 10. The first day&#8217;s theme is &#8220;WordPress Now&#8221; (Everything that can be currently achieved with WordPress) and the second day is &#8220;WordPress Tomorrow.&#8221;</p>\n\n\n\n<p>Organizers have opened the <a href=\"https://europe.wordcamp.org/2023/call-for-speakers/\">call for speakers</a> and are especially interested in scheduling talks that &#8220;empower people to feel more comfortable using WordPress.&#8221; They are soliciting new voices this year with fresh perspectives.</p>\n\n\n\n<p>After reviewing attendee feedback from the previous year, organizers have identified more than three dozen requested topics across the development, business, community, and design categories. These include many more development topics, such as security, CI/CD, headless CMS, ReactJS for PHP Developers / Building Blocks, and more. Attendees are also eager to hear about content monetization, recurring revenue, GDPR compliance, brand identity, and designing for accessibility, to list a few examples.</p>\n\n\n\n<p>Presentation formats will include traditional talks, hands-on workshops, expert panels, and lightning talks. Organizers are encouraging speakers to add activities to sessions that will get the audience involved and avoid the afternoon slump. They cited a few examples, including a WordCamp in the Czech Republic where a security researcher installed a Wi-Fi honeypot in the venue and demonstrated how dangerous public wi-fi is when logging into a WordPress site that doesn&#8217;t have SSL. </p>\n\n\n\n<p>WCEU has launched a <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2023/?page_id=2755\" target=\"_blank\">Speaker’s support program</a> to help fund selected speakers with financial barriers to attending. Organizers arrange for speakers and the sponsoring companies to connect but are not involved in selecting who receives the funds.</p>\n\n\n\n<p>The call for speakers will close the first week of February and applicants will receive a response by the second week of March. Speakers will be announced in the second week of April.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Jan 2023 03:18:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"WPTavern: BuddyPress 11.0.0 Adds Filter for Improved JS and CSS Asset Loading, WebP Support, and New Ways to Fetch Activities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://wptavern.com/buddypress-11-0-0-adds-filter-for-improved-js-and-css-asset-loading-webp-support-and-new-ways-to-fetch-activities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3436:\"<p><a href=\"https://buddypress.org/2023/01/buddypress-11-0-0-la-scala/\">BuddyPress 11.0.0</a> is now available thanks to the efforts of 34 contributors. The release is named “La Scala” in honor of a pizza restaurant located in Issy-Les-Moulineaux, a Paris suburb.</p>\n\n\n\n<p>Version 11.0.0 introduces a few important changes. BuddyPress has <a href=\"https://wptavern.com/buddypress-11-0-0-to-limit-javascript-and-css-asset-loading-to-community-pages-using-a-filter\">improved the way it loads its JavaScript and CSS assets</a> with the addition of <a href=\"https://bpdevel.wordpress.com/2022/11/21/buddypress-will-soon-only-load-its-javascript-and-style-assets-into-the-community-area-of-your-site/\">a new filter</a> so that they are now only loaded on community pages. Previously, the plugin would load them indiscriminately on every page, a leftover from how they were loaded in the first Template Pack (BP Legacy). This change is being rolled out progressively, so users who want to take advantage of this improvement will need to add the filter to their <a href=\"https://codex.buddypress.org/themes/bp-custom-php/\">bp-custom.php</a> file.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>add_filter( ‘bp_enqueue_assets_in_bp_pages_only’, ‘__return_true’ );</p>\n</blockquote>\n\n\n\n<p>BP 11.0.0 also enables the use of use <a href=\"https://bpdevel.wordpress.com/2022/11/24/webp-support-is-arriving-in-buddypress-11-0-0/\">.webp</a> images for profile and cover images, after a user requested it in a negative review. This feature requires WordPress 5.8 or newer. </p>\n\n\n\n<p>This release introduces the ability to <a href=\"https://bpdevel.wordpress.com/2022/12/01/bp-11-fetch-activities-for-or-excluding-a-group-of-users/\">fetch activities for or excluding a group of users</a>. For example, developers can now write code to fetch activities for a select few users based on user ID or block updates from some annoying users by excluding their user IDs. </p>\n\n\n\n<p>&#8220;This change is simple but powerful!&#8221; BuddyPress core developer Dan Cavins said. &#8220;For instance, you could create custom interest activity streams, or build a mute feature to let your members take a break from other, too-chatty users!&#8221;</p>\n\n\n\n<p>Version 11.0.0 also gives developers the ability to build custom xProfile loops <a href=\"https://bpdevel.wordpress.com/2022/12/06/bp-11-bp_has_profile-now-accepts-an-array-of-profile-group-ids/\">including a specific set of profile field groups</a>.</p>\n\n\n\n<p>BuddyPress 10.0.0 introduced an add-ons section in the plugin administration screen for users to easily test plugins or blocks maintained by the BuddyPress development team and hosted on WordPress.org. BP lead developer Mathieu Viet said the team will soon be publishing a Community Media Attachments add-on and a block-based Activity Post Form that will &#8220;standardize the way to extend activity updates with richer and more engaging content.&#8221; These feature plugins are part of what Viet anticipates will be &#8220;a transitional year for BuddyPress&#8221; and may be published to the add-ons section independent of a major release. </p>\n\n\n\n<p>BuddyPress users should watch for updates to the add-ons section and check out the full list of changes in <a href=\"https://codex.buddypress.org/releases/version-11-0-0/\">11.0.0 in the BuddyPress codex</a>. Updating to the latest version will require WordPress 5.7 or later.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2023 22:33:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Do The Woo Community: A New YouTube Channel and WooBits Format\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74228\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://dothewoo.io/new-youtube-channel-woobits-format/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:414:\"<p>WooBits now featuring guest hosts for a one-off chance to share their insights and perspectives on various topics. Plus a new YouTube channel.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/new-youtube-channel-woobits-format/\">A New YouTube Channel and WooBits Format</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2023 10:54:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: Awesome Motive Acquires Duplicator Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140830\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/awesome-motive-acquires-duplicator-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2164:\"<p>Awesome Motive&#8217;s <a href=\"https://www.wpbeginner.com/wordpress-plugins/\">product suite</a> of nearly 20 commercial plugins has expanded to include a backup plugin. The company <a href=\"https://www.wpbeginner.com/news/welcome-duplicator-to-the-wpbeginner-family-of-products/\">announced</a> its acquisition of <a href=\"https://wordpress.org/plugins/duplicator/\">Duplicator</a> today, a 12-year-old freemium product with more than 1.5 million users. </p>\n\n\n\n<p>In addition to the backup utility, the plugin enables users to migrate, copy, move, or clone a site from one location to another. Commercial licenses range from $49/year to $299.50/year.</p>\n\n\n\n<p>Snapcreek co-founders Bob Riley and Cory Lamle, creators of Duplicator, will be moving on to pursue other endeavors but the rest of the team will continue to work on the product at Awesome Motive led by <a href=\"https://johndturner.com/\">John Turner</a>. </p>\n\n\n\n<p>This is the first WordPress business acquisition of 2023, and it&#8217;s a major one as 1.5 million users are changing hands to rely on a new company. Users can expect <a href=\"https://twitter.com/syedbalkhi/status/1611100494839316480\">no pricing changes</a> but some have already <a href=\"https://twitter.com/wpeditorial/status/1611027326795681794\">expressed</a> <a href=\"https://twitter.com/karks88/status/1610991832749539328\">concern</a> about having to put up with Awesome Motive&#8217;s trademark aggressive marketing that litters the WordPress admin with ads and upsells. </p>\n\n\n\n<p>In the co-founders&#8217; <a href=\"https://snapcreek.com/blog/news/duplicator-is-joining-the-awesome-motive-family/\">farewell post</a>, they assured users that Awesome Motive will continue working on their prior roadmap.</p>\n\n\n\n<p>&#8220;We have shared our extensive feature wishlist, and we know that with Awesome Motive’s resources and experience that wishlist will become a reality much faster,&#8221; Riley said.</p>\n\n\n\n<p>&#8220;As we pass the baton, Cory and I want to say thank you to everyone who has supported us on this journey. We are extremely grateful to be able to play a small part in the amazing WordPress ecosystem.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2023 02:48:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: Gutenberg 14.9’s New Magic: Push Block Changes to Global Styles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/gutenberg-14-9s-new-magic-push-block-changes-to-global-styles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3405:\"<p><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">Gutenberg 14.9</a> was released this week with a powerful new feature for site editing that allows users to push individual block changes to Global Styles. </p>\n\n\n\n<p>When WordPress makes it this easy for users to design their own sites, there&#8217;s always the lingering concern &#8211; will the tools inadvertently be used to make sites that are wild and wacky à la GeoCities? For example, if a user makes a change to a Heading block on the Page template, that doesn&#8217;t get automatically enabled for headings on other templates, which could potentially create an inconsistent design across the website. </p>\n\n\n\n<p>The new &#8220;Push changes to Global Styles&#8221; button allows users to apply that same change to all blocks of that type. In the example below, the H1 heading has been updated to have a lime green background with red text. Under the Advanced panel in block settings, a new button appears for pushing changes to Global Styles.  </p>\n\n\n\n<img />\n\n\n\n<p>It&#8217;s important to note that the feature only works inside the Site Editor. Users writing posts and pages will not have the ability to push changes to Global Styles. The new button gives users a quick way to update blocks across the site without having to manually edit every template or figure out the right CSS to apply. </p>\n\n\n\n<p>Other important changes in 14.9 include <a href=\"https://github.com/WordPress/gutenberg/pull/43316\">typography support for the Page List block</a>, a new option to <a href=\"https://github.com/WordPress/gutenberg/pull/45509\">import sidebar widgets into a template part</a> when switching from a classic theme, and  word count/time to read meta info has been <a href=\"https://github.com/WordPress/gutenberg/pull/46648\">moved to the top of the outline</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">New Features for Theme Authors</h2>\n\n\n\n<p>Gutenberg 14.9 introduces support for shadow presets in theme.json, with two bundled default presets (Natural and Sharp). Theme authors can <a href=\"https://github.com/WordPress/gutenberg/pull/46813\">see how it&#8217;s done</a> and create&nbsp;custom box-shadow presets, or wait for an <a href=\"https://github.com/WordPress/developer-blog-content/issues/51\">upcoming tutorial</a> on the topic. The 14.9 release post includes a screenshot of how this feature might be implemented:</p>\n\n\n\n<img />\n\n\n\n<p>Theme authors now have the ability to <a href=\"https://github.com/WordPress/gutenberg/pull/42489\">set the minimum font size for fluid typography in theme.json</a>. It is currently hard coded to 14px by default, which may not work for all designs.</p>\n\n\n\n<p>Another new tool for theme developers is the ability to register patterns for specific templates, which would restrict where they appear. This was added via <a href=\"https://github.com/WordPress/gutenberg/pull/45814\">a new templateType property</a> in the patterns registration API. Theme developers can restrict patterns to only show up for the templates where they make sense, such as 404, single-post, single-product, and category templates, for example.</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">14.9 release post</a> to see all the bug fixes and enhancements to the editor, accessibility, performance, tooling, and more. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Jan 2023 22:20:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Do The Woo Community: A 2023 Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74218\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://dothewoo.io/2023-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:357:\"<p>In 2022, the show released 115 episodes featuring 112 guests, discussing a wide range of topics related to WooCommerce and e-commerce. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/2023-update/\">A 2023 Update</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Jan 2023 10:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: New CF7 Blocks Plugin Brings Blocks to Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140765\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/new-cf7-blocks-plugin-brings-blocks-to-contact-form-7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3006:\"<p>WordPress developer Munir Kamal has released a new plugin called <a href=\"https://wordpress.org/plugins/cf7-blocks/\">CF7 Blocks</a> that does exactly what it says in the name. It brings blocks to one of WordPress&#8217; most beloved plugins, which has kept the same familiar interface and has not yet adopted the block editor.</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a> plugin was created by WordPress developer <a href=\"https://profiles.wordpress.org/takayukister/\">Takayuki Miyoshi</a>, who has devotedly kept it updated for the past 15 years. His stalwart commitment to <a href=\"https://ideasilo.wordpress.com/2012/04/28/free-plugin-declaration/\">keeping it free forever</a> is one of the reasons it has grown to more than 5 million active installs. The developer community has built hundreds of <a href=\"https://wordpress.org/plugins/search/cf7/\">integrations and extensions for CF7</a> because users found it easy to build forms with its simple interface. </p>\n\n\n\n<img />Contact Form 7 interface\n\n\n\n<p>CF7 users currently edit forms in the plugin&#8217;s dedicated interface. The plugin also includes a block, so users can return to the block editor and select a form to embed.</p>\n\n\n\n<p>The new CF7 Blocks plugin makes it possible to edit CF7 forms using WordPress&#8217; default editor, instead of having to mess with shortcodes and HTML. It still has its own dedicated Contact form editing page, except with the ability to customize fields as blocks. New forms will use the block interface and old ones can still be edited using CF7&#8217;s default HTML editor.</p>\n\n\n\n<p>CF7 Blocks offers a more intuitive experience with pre-made form templates that will automatically insert the necessary blocks so users don&#8217;t have to start from scratch.</p>\n\n\n\n<img />\n\n\n\n<p>In the block settings, users can easily customize the text of the labels, enter a value for placeholders, toggle the label on or off, mark fields as required, customize dimensions, and more. Fields can easily be dragged and dropped for re-ordering, a feature that is especially useful with lengthier, more complex forms.</p>\n\n\n\n<p>One handy feature is that form fields can easily be transformed into other fields with the click of a button, making it easy to customize a form when the pre-set templates aren&#8217;t exactly what is needed.</p>\n\n\n\n<img />\n\n\n\n<p>In the same tradition of Contact Form 7, <a href=\"https://wordpress.org/plugins/cf7-blocks/\">CF7 Blocks</a> is available for free in the WordPress plugin directory. The plugin also has its own <a href=\"https://cf7blocks.com/\">website</a> where users can <a href=\"https://cf7blocks.substack.com/\">subscribe</a> to get updates and find out what&#8217;s coming soon. Kamal said users can expect more fields to be added to the plugin in future releases beyond the standard fields that come with Contact Form 7. Design options for visually styling and customizing forms are another feature on the roadmap for CF7 Blocks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Jan 2023 02:54:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: Linux Backdoor Malware Targets WordPress Sites with Outdated, Vulnerable Themes and Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140716\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/linux-backdoor-malware-targets-wordpress-sites-with-outdated-vulnerable-themes-and-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3075:\"<p>Security researchers at Doctor Web, a security company focused on threat detection and prevention, have <a href=\"https://news.drweb.com/show/?i=14646&lng=en&c=23\">discovered a malicious Linux program that targets WordPress sites</a> running outdated and vulnerable plugins and themes. </p>\n\n\n\n<p>The malware targets 32-bit versions of Linux, but it is also capable of running on 64-bit versions. It exploits 30 theme and plugin vulnerabilities to inject malicious JavaScript into websites, redirecting visitors to the attacker&#8217;s selected website.</p>\n\n\n\n<p>The report states that Doctor Webs&#8217; analysis of the application revealed that <strong>&#8220;it could be the malicious tool that cybercriminals have been using for more than three years to carry out such attacks and monetize the resale of traffic, or arbitrage.&#8221;</strong> During this time, the tool has been updated to target more exploitable vulnerabilities.</p>\n\n\n\n<p>There are two versions of the malware &#8211; <a href=\"https://vms.drweb.com/search/?q=Linux.BackDoor.WordPressExploit.1&lng=en\">Linux.BackDoor.WordPressExploit.1</a> and <a href=\"https://vms.drweb.com/search/?q=Linux.BackDoor.WordPressExploit.2&lng=en\">Linux.BackDoor.WordPressExploit.2</a>. Version 1 seeks to exploit vulnerabilities in popular plugins like WP GDPR Compliance,  Easysmtp, WP Live Chat, and a dozen other free and commercial extensions. A few of these have been known to have frequent vulnerabilities and one was <a href=\"https://wordpress.org/plugins/yuzo-related-post/\">closed due to guideline violations</a> but may still be active on some sites.</p>\n\n\n\n<p>An updated Version 2 has a different server address for distributing the malicious JavaScript and an additional list of exploited vulnerabilities for a few more widely used plugins, including FV Flowplayer Video Player, Brizy Page Builder, WooCommerce, and more.</p>\n\n\n\n<p>Doctor Web&#8217;s report also speculates that attackers may have engineered a long game plan that will give them administrative access even after users update to newer (patched) versions of the compromised plugins: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Both trojan variants have been found to contain unimplemented functionality for hacking the administrator accounts of targeted websites through a brute-force attack—by applying known logins and passwords, using special vocabularies. It is possible that this functionality was present in earlier modifications, or, conversely, that attackers plan to use it for future versions of this malware. If such an option is implemented in newer versions of the backdoor, cybercriminals will even be able to successfully attack some of those websites that use current plugin versions with patched vulnerabilities.</p>\n</blockquote>\n\n\n\n<p>Doctor Web published a document with <a href=\"https://github.com/DoctorWebLtd/malware-iocs/tree/master/Linux.Backdoor.WordPressExploit.1\">indicators of compromise</a>, detailing hashes, IPs, and domains that the Linux backdoor malware has been using to infect WordPress websites. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Jan 2023 22:14:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Post Status: On The Fediverse, WordPress, And Activity Pub With Matthias Pfefferle — Post Status Draft 135\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146145\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://poststatus.com/on-the-fediverse-wordpress-and-activity-pub-with-matthias-pfefferle-post-status-draft-135/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7125:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://notiz.blog/\">Matthias Pfefferle</a> is head of WordPress development at a hosting company in Europe and the creator of <a href=\"https://activitypub.rocks/\">Activity Pub</a>, a WordPress plugin. He joins Cory Miller to discuss the rising need for decentralization in social networking, the current movement, and the future potential available within WordPress. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, Cory Miller talks with <a href=\"https://twitter.com/pfefferle?lang=en\">Matthias Pfefferle</a>, creator of <a href=\"https://activitypub.rocks/\">Activity Pub</a>, about the growing potential for decentralization through innovation within WordPress. Current social networks have stripped creators of agency and power. The threat has been more acutely felt with the recent transitions within Twitter. Recognizing what is at stake and moving towards innovation could not only create needed solutions but could also propel the future of WordPress.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Decentralization:</strong> So much of the power of WordPress is rooted in decentralization. The silos created by social media platforms leave users without agency. The potential and appetite for decentralization is increasing along with the tools to make it a reality via the Fediverse, Activity Pub, and more.</li>\n\n\n\n<li><strong>Portable Social Networks:</strong> If you are blocked or banned from a major social network, you lose your content and contacts. The need to create portable social networks so you can move your audience and retain your content if you opt to or are forced to switch platforms or hosts is crucial.</li>\n\n\n\n<li><strong>Alternative Walled Gardens:</strong> The need for alternative social platforms where users have agency and ownership continues to increase. The Twitter debacle has been a huge catalyst for users to transition to other platforms like Mastodon, but the potential for WordPress to solve identifier issues and more could create the largest platform overnight. How can we create tools and empower people to be a part of social networks and retain ownership of all they create? How can WordPress build on the current momentum to create future relevance?</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-18 wp-block-columns has-theme-palette-8-background-color has-background\" id=\"WP-Engine\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/a2-hosting\">A2 Hosting</a></h3>\n\n\n\n<p><strong>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable.</strong> WordPress can be easily deployed on <em>ANY</em> web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at <a href=\"http://a2hosting.com\" target=\"_blank\" rel=\"noreferrer noopener\">a2hosting.com</a> today!</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\"><div class=\"wp-block-image\">\n<a href=\"https://poststatus.com/planet/feed/a2hosting.com\"><img width=\"304\" height=\"304\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/07/88b63da0-f90b-11e6-bc40-730c4553c727.png\" alt=\"A2 Hosting\" class=\"wp-image-101225\" title=\"WP Engine\" /></a></div></div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://notiz.blog/\">Matthias Pfefferle</a> </li>\n\n\n\n<li><a href=\"https://activitypub.rocks/\">Activity Pub</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/activitypub/\">Activity Pub Plugin</a></li>\n\n\n\n<li><a href=\"https://fediverse.info/\">Fediverse</a></li>\n\n\n\n<li><a href=\"https://mastodon.social/explore\">Mastodon</a></li>\n\n\n\n<li><a href=\"https://pixelfed.org/\">Pixelfed</a></li>\n\n\n\n<li><a href=\"https://b2evolution.net/\">B2</a></li>\n\n\n\n<li><a href=\"https://www.w3.org/\">W3C</a></li>\n\n\n\n<li><a href=\"https://webfoundation.org/\">World Wide Web Foundation</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/krissierae\">Matthias Pfefferle</a> (Creator, <a href=\"https://activitypub.rocks/\">Activity Pub</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p></p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Jan 2023 18:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Post Status: WordPress 6.2 Schedule • 2022 in Core • Block Developer Year in Review • New Incident Response Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://poststatus.com/wordpress-6-2-schedule-2022-in-core-block-developer-year-in-review-new-incident-response-team/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15837:\"<h2 id=\"h-this-week-at-wordpress-org-january-2-2023\">This Week at WordPress.org (January 2, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.2 is set to reach feature freeze on February 7 and final release on March 28. Take a look back at Core contribution stats from 2022. Read the recap of everything that happened last year that developers need to know. Meet the members of the Incident Response Team. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_adc852-65\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fas_calendar-alt\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WordPress 6.2 release schedule, Block Developer Year in Review, New Incident Response Team</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f5d3.png\" alt=\"🗓\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2022/12/27/wordpress-6-2-planning-schedule-proposal/\">WordPress 6.2 Planning Schedule Proposal</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f440.png\" alt=\"👀\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/01/03/a-year-in-core-2022/\">A Year in Core – 2022</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/23ea.png\" alt=\"⏪\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/news/2022/12/28/2022-the-block-developers-year-in-review/\">2022: the block developer’s year in review</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f440.png\" alt=\"👀\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2022/12/21/announcement-new-wordpress-incident-response-team/\">Announcement: New WordPress Incident Response Team</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/23e9.png\" alt=\"⏩\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/01/06/core-editor-improvement-advancing-the-site-editor-experience/\">Core Editor Improvement: Advancing the Site Editor experience</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/12/episode-46-the-wp-bloopers-podcast/\">WP Briefing: Episode 46: The WP Bloopers Podcast</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\">WP Briefing: Episode 45: State of the Word Reflections</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-11 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/12/22/meetup-organizer-newsletter-december-2022/\">Meetup Organizer Newsletter: December 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/21/updates-across-the-make-community-team-site-and-our-handbooks/\">Updates Across the Make/Community Team Site and our Handbooks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/20/community-team-reps-for-2023/\">Community Team Reps for 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/20/community-team-2022-goals-recap/\">Community Team 2022 Goals Recap</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/help-us-test-the-sqlite-implementation/\">Help us test the SQLite implementation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/06/core-editor-improvement-advancing-the-site-editor-experience/\">Core Editor Improvement: Advancing the Site Editor experience</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/03/a-year-in-core-2022/\">A Year in Core – 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/02/a-week-in-core-january-2-2022/\">A Week in Core – January 2, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/27/wordpress-6-2-planning-schedule-proposal/\">WordPress 6.2 Planning Schedule Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/26/a-week-in-core-december-26-2022/\">A Week in Core – December 26, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">What’s new in Gutenberg 14.8? (21 December)</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/03/editor-chat-agenda-4th-january-2023/\">Editor Chat Agenda: 4th January 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/dev-chat-summary-wednesday-december-21-2022/\">Dev Chat summary: Wednesday, December 21, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-dev-blog\"><a href=\"https://developer.wordpress.org/news/\">Dev Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2022/12/28/2022-the-block-developers-year-in-review/\">2022: the block developer’s year in review</a></li>\n</ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/01/02/design-share-dec-19-dec-30/\">Design Share: Dec 19–Dec 30</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2022/12/22/summary-for-docs-team-meeting-december-13-2022/\">Summary for Docs Team meeting, December 13, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-support-articles\">Support Articles</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/support/article/comments-block/\">Comments Block</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/support/article/post-navigation-link-block/\">Post Navigation Link Block</a></li>\n</ul>\n\n\n\n<h3 id=\"h-developer-articles\">Developer Articles</h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/apis/security/common-vulnerabilities/\">Common Vulnerabilities</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/apis/security/user-roles-and-capabilities/\">User Roles and Capabilities</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/apis/security/example/\">Security Example</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/apis/security/nonces/\">Nonces</a></li>\n</ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2022/12/28/2022-recap/\">WordPress Hosting Team 2022 recap</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/26/notes-global-marketing-team-meeting-december-21-2022/\">Notes: Global Marketing Team meeting, December 21, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2022/12/22/two-factor-auth-progress-for-wordpress-org/\">Two-Factor Auth progress for WordPress.org</a></li>\n</ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Call for Testing: WordPress for Android 21.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">Call for Testing: WordPress for iOS 21.4</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/01/03/community-meeting-recap-3-january-2023/\">Community Meeting Recap (3 January 2023)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/03/performance-team-meeting-summary-3-january-2023/\">Performance Chat Summary: 3 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/01/03/agenda-weekly-polyglots-chat-january-4-2023-700-utc/\">Agenda: Weekly Polyglots Chat – January 4, 2023 (7:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/21/plugin-guideline-update-community-code-of-conduct/\">Plugin Guideline Update: Community Code of Conduct</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">Plugins/themes categorization</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/01/plugin-review-team-2-january-2023/\">Plugin Review Team: 2 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2022/12/21/announcement-new-wordpress-incident-response-team/\">Announcement: New WordPress Incident Response Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2022/12/22/journal-entry-wordcamp-asia-2020-cancellation-debrief/\">Journal Entry: WordCamp Asia 2020 Cancellation Debrief</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">FSE Program Testing Call #19: Running Through Refinements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/02/test-team-update-2-january-2023/\">Test Team Update: 2 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2022/12/14/themes-team-meeting-notes-december-13-2022/\">Themes Team Meeting Notes –&nbsp;December 13, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/04/themes-team-update-january-04-2023/\">Themes team update January 04, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-wordpress-plugin-security\">Let’s code: WordPress Plugin Security</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=block-themes-and-wordpress-live-stream\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep6-introduction-to-plugins-file-structure-troubleshooting-bangla\">EP6: Introduction to Plugins (File Structure, Troubleshooting) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep5-introduction-to-themes-file-structure-troubleshooting-bangla\">EP5: Introduction to Themes (File Structure, Troubleshooting) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep4-introduction-to-wordpress-dashboard-frontend-bangla\">EP4: Introduction to WordPress (Dashboard, Frontend) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-wide-world-of-wordpress-events-2\">The Wide World of WordPress Events</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/creating-a-call-to-action/\">Creating a Call To Action</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/displaying-the-post-comments-block-in-block-themes/\">Displaying the Comments block in Block Themes</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-theme-template-tour/\">WordPress Theme Template Tour</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://getcomposer.org/changelog/2.5.0\">Composer 2.5 released</a></li>\n\n\n\n<li><a href=\"https://tek.phparch.com/\">Registration open for PHP Tek</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Jan 2023 15:40:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: #57 – Damon Cook on the Future of Website Styling in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=140664\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/podcast/57-damon-cook-on-the-future-of-website-styling-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43881:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern, and a Happy New Year to you as well. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the future of styling your WordPress website.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m very keen to hear from you, and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Damon Cook. He&#8217;s a long time user of WordPress, trying it first in around 2008. He&#8217;s worked for some of the largest WordPress agencies over the years, but his current role is that of Developer Advocate with WP Engine, where he engages with the WordPress community, trying to figure out where WordPress is headed.</p>\n\n\n\n<p>Damon is on the podcast today to talk about styling WordPress, and how it&#8217;s changing.</p>\n\n\n\n<p>Up until recently, if you wanted to modify your website&#8217;s appearance, you needed to work with the theme. Sometimes this could be done in the theme&#8217;s UI or in the WordPress customizer. But if you really needed fine control, then it&#8217;s likely you edited the themes files or created a theme of your own. It can be quite a complex process.</p>\n\n\n\n<p>Block-based themes or revolutionizing websites styling. You&#8217;re going to be able to modify any aspect of your website from the UI that you&#8217;re familiar with. The hope is that it&#8217;ll make styling more accessible to a wider audience.</p>\n\n\n\n<p>Damon talks about the fact that we&#8217;re in a period of flux right now. The documentation and tooling needed to work with website styles is maturing, but is by no means complete.</p>\n\n\n\n<p>We talk through some of the new concepts which are underpinning all of this. Style variations, style engine, global styles, block themes, block patterns, theme.json. These are perhaps terms that you&#8217;ve heard being used, but might not be familiar with. Damon explains what they are and where they fit into the website styling jigsaw.</p>\n\n\n\n<p>Towards the end, we briefly get into the work that Damon has been doing with ACF to make his own blocks, and how it provides a bridge for those people who are not yet familiar with React.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to. WPTavern.com forward slash podcast. And you&#8217;ll find all of the other episodes there as well.</p>\n\n\n\n<p>And so without further delay, I bring you Damon Cook.</p>\n\n\n\n<p>I am joined on the podcast today by Damon Cook. Hello Damon.</p>\n\n\n\n<p>[00:03:42] <strong>Damon Cook:</strong> Hi Nathan. How you doing?</p>\n\n\n\n<p>[00:03:44] <strong>Nathan Wrigley:</strong> Yeah. Very nice. Thank you for joining us on the podcast today. Damon is going to have a chat with us today all about, well, a whole myriad of things, to be honest. But largely it&#8217;s about the things which are either currently in WordPress, potentially recently put into WordPress, or maybe even some things which are coming down the path.</p>\n\n\n\n<p>He works for WP Engine. His role there is a really interesting one actually. It&#8217;s called Developer Advocate. I&#8217;m going to dig into what that role entails in a minute, in more depth. But Damon, will you just give us a little bit of a background of your journey with WordPress Just to orientate the listeners, what have you been up to in the WordPress space? When did you come across WordPress? Go as far back as you like to make it work.</p>\n\n\n\n<p>[00:04:26] <strong>Damon Cook:</strong> Sure. I was thinking about that this morning. I&#8217;m trying to remember what my origin date would be. If I had to guess, because I&#8217;m not clear on it, but I probably started working with WordPress back in around 2008. I remember multi-site was just getting an introduction. Well, it was MU, multi-user, at the time. So, that was where I was introduced. I actually created an internal blogging platform for a state university I was working at at the time.</p>\n\n\n\n<p>So it was neat to start working with open source tools. And I left there and went into agency land for about a decade where I worked with solely WordPress focused agencies like TenUp, WebDevStudios, and a few others. And, that is where I really focused my work as a front end developer. That&#8217;s where I&#8217;ve come to WP Engine with, I&#8217;ve been here about four or five months and, I&#8217;ve always found it a passion of mine to give back in to the community and really advocate and try to raise awareness around some of the newer features coming out of WordPress, which is, these days seems to be going at a pretty breakneck speed with Gutenberg. So, there&#8217;s a lot going on.</p>\n\n\n\n<p>[00:05:49] <strong>Nathan Wrigley:</strong> Yeah, there really is a lot going on and we we&#8217;ll dig more into that and your interest in it in a moment. But I want to just dwell on your job title if you don&#8217;t mind, a developer advocate at WP Engine. I have heard this muttered a few times by various different people from WP Engine, amongst other companies, and never really that sure what that role entails. So would you mind just spelling it out? I know that you&#8217;re new to the role, so maybe still finding your feet, I don&#8217;t know, but just tell us what the purpose of that job title is.</p>\n\n\n\n<p>[00:06:20] <strong>Damon Cook:</strong> Yeah, I am new to it and it is interesting and, I see it as trying to gauge and engage with the community around WordPress. And that is as broad as it can be as in community, because coming from a agency world I tend to definitely focus and have a bias towards developer solutions. But at the end of the day, I&#8217;ve always been passionate about creating experiences for the end user, for builders of any stages of learning whether it&#8217;s a marketer building a site, or you know, somebody who has a background as a developer or an enterprise developer, or a designer.</p>\n\n\n\n<p>So trying to engage with that community and see where there are any gaps or barriers to onboarding them, really to any of the latest things coming out of the project, or elevate their experience in creating and building sites with WordPress, I guess. And with that also, giving back to WordPress core make teams. I&#8217;ve been trying to contribute a little bit to the Docs team and the Learn team. And that&#8217;s all sponsored by WP Engine too, as a developer advocate role. So that&#8217;s kind of the lay of the land as I see it.</p>\n\n\n\n<p>[00:07:44] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s absolutely fascinating. Can I ask, can I drill deeper into this, because find it really interesting. Where do you go looking for the WordPress community? Because it&#8217;s pretty clear that, well, it&#8217;s as broad as it is deep. You could find WordPress people in almost every walk of life. Every age group, every part of the world.</p>\n\n\n\n<p>And also, you can&#8217;t spread yourself throughout the world, so you probably have to do a lot of this online. And, well, there&#8217;s Slack, there&#8217;s Make, there&#8217;s, well there&#8217;s podcasts like this, there&#8217;s news outlets, There&#8217;s all sorts of different places where these people find themselves. And I guess you&#8217;ve got to try and touch as many of those as possible to gauge all of the different opinions. Where do you find yourself, well spending most of your time? Where do you seem to put your endeavors?</p>\n\n\n\n<p>[00:08:29] <strong>Damon Cook:</strong> Twitter.</p>\n\n\n\n<p>[00:08:32] <strong>Nathan Wrigley:</strong> That&#8217;s the answer.</p>\n\n\n\n<p>[00:08:33] <strong>Damon Cook:</strong> Yeah. That seems to be, it seems to be the most engaging and successful platform for that type of community. Which, with the current state of affairs there is concerning because I feel like there has been such a great buildup and yeah, it&#8217;s a great platform to engage with the community and reach a large audience.</p>\n\n\n\n<p>So, I&#8217;ll be curious to see. I know lots of people are migrating to other platforms and there&#8217;s conversations of different experiments and explorations, which I think are great because, really I&#8217;m all for owning your content and however we can expedite that process for anybody is a cool thing.</p>\n\n\n\n<p>But yeah, Twitter is the heart of a lot of it. But Slack, WordPress communities, Make communities even. Again, probably my bias is being in Gutenberg pull requests and issues, and trying to give feedback and even sharing some of the higher level issues to see if the community is interested in pursuing or giving feedback on those features, or if they&#8217;re just something that&#8217;s not even warranted to pursue.</p>\n\n\n\n<p>I think there tends to be definitely bias of what, you know, a lot of these areas that we&#8217;re focusing on for new features can at times. Yeah. I think the more input we can and the more eyes then the better validation and verification of what we&#8217;re doing in Gutenberg and these new features. It helps at the end of the day.</p>\n\n\n\n<p>[00:10:15] <strong>Nathan Wrigley:</strong> Yeah, we&#8217;ll have to see what happens over on the Twitter side of things. We&#8217;re recording this episode at the ending of 2022 and a lot of flux, shall we say, over there at the moment. Let&#8217;s just see what happens. So it&#8217;s really curious though. Thank you.</p>\n\n\n\n<p>So when we decided to have this podcast, we settled on the topic of, I&#8217;m just going to list them frankly. And then we can sort of dip into them one at a time or see where the conversation goes.</p>\n\n\n\n<p>But you decided that you wanted to speak to your passions I guess. So things like the new, I&#8217;m going to use that word, I don&#8217;t know for how much longer I&#8217;m going to be using it. But the new block themes. The style engine, which I&#8217;m, I frankly need explaining to me. Global styles, the ability to style everything in the future of WordPress. So styling blocks, themes, patterns, and so on. WordPress 6.1 and all of the fun things that that brought around. And maybe we&#8217;ll get into the new theme of 2023. Which offers some really interesting capabilities.</p>\n\n\n\n<p>But let&#8217;s just rewind the clock a little bit. Go back there to block themes and what have you. This is obviously something that you are excited about. They are new. I think for a lot of people, they still have a, beware, there be monsters kind of flag attached to them. You know, they&#8217;re happy with their customizer. They like the ability to change things in the way that they&#8217;ve always changed them.</p>\n\n\n\n<p>That menu area where you could fiddle, under appearances menus. That was fine. Can we just keep that please? And of course, WordPress is moving in a different direction where all of this is being handled by blocks. And so I want to know what you think about it all.</p>\n\n\n\n<p>[00:12:03] <strong>Damon Cook:</strong> Sure. Again, my bias is as a front end developer. So, the themes have been the heart of where I spend most of my day for the past decade as a developer. That tends to be where my passions lie. So block themes are definitely the evolution of so many things I&#8217;ve seen in the WordPress project. Like you mentioned, the customizer. I think that it had great potential, but at the end of the day, there was far too much compatibility issues from switching from themes, and how theme developers were implementing custom fields into the customizer, and custom entry points.</p>\n\n\n\n<p>So when users were switching, there was an inconsistency. So I see the evolution that is putting the hands back into the users where, that&#8217;s where a lot of the potential lies, or lied, with the customizer because theme developers could add these bells and whistles that end users could customize.</p>\n\n\n\n<p>So, the site editor is the evolution and, and in a lot of ways, I think there&#8217;s a revisiting of a lot of the APIs that were in the customizer but rethought in so many different ways, on so many different levels that they&#8217;re being abstracted and pulled apart. And so when they come back together, have so much more potential for developers and end users to extend, and build off of.</p>\n\n\n\n<p>And so it is a struggle because a lot of the underlying code base is being produced as we speak. And it&#8217;s going fast, and it&#8217;s hard to understand at times. Even, like you mentioned, and I put on the show notes style engine. That is totally new to me, and something that came on to my radar in the 6.1 release like a month ago. Because I had not even heard of this package that is in Gutenberg called the Style Engine.</p>\n\n\n\n<p>And I still don&#8217;t have a clear definition and understanding. But if I were to throw enough definition at it, I think it&#8217;s just a component of global styles, and really site editing to incorporate some of the classes that are used underneath in the code base.</p>\n\n\n\n<p>So I know that a lot of feedback has been given about classes changing on certain elements and breaking things. And even the potential for builders to be able to assign custom classes to certain elements and have that spread throughout the whole site editing experience.</p>\n\n\n\n<p>So, I think there is that drive in core to have those features, and the feedback is being heard. But it&#8217;s slow with great cause because there&#8217;s a lot of thought going into making sure it&#8217;s done right. So yeah, I think the style engine is a neat concept and I still am getting my head around a lot of it, but I think it&#8217;s got great potential.</p>\n\n\n\n<p>[00:15:11] <strong>Nathan Wrigley:</strong> Yeah. You mentioned a couple of things there, which I want to drill down on a little bit. The first one was the fact that the customizer offered an experience, which, for its day, I think was really ingenious. The ability to modify things and get a real time update. But of course, you are separating the area in which you can edit content from the area in which you interact with the way that the site looks, the styles and so on.</p>\n\n\n\n<p>How the fonts will look, and what the background color of your body is, and so on and so forth. But you said that it was being implemented by theme authors in a whole host of different ways. So if I download and use one theme, I may have a very different experience once I dig into the menus. Theme authors were really doing things in ingenious ways, let&#8217;s not deny it. It was also potentially, if you swapped a theme for a different one, you could be, I guess, disorientated because one theme author has done something absolutely differently.</p>\n\n\n\n<p>So let&#8217;s speak about that for a minute. Is the intention then you feel to make the whole experience, and I know we&#8217;re not there yet, the experience of the site editor, now called site editor, is still very confusing. But is the intention for it in the end, do you believe, to be one experience? The same experience, no matter what theme you end up using. You&#8217;re going to have a familiarity with the UI.</p>\n\n\n\n<p>[00:16:40] <strong>Damon Cook:</strong> The simple answer, yes I do. But I think that there will definitely be some rough areas. I see potential and abstraction enough in some of these packages that, there&#8217;s definitely enough thought that if a user were to switch themes in the site editor, you know that there will be a lot less breaking, a lot less confusion.</p>\n\n\n\n<p>Like you said, we&#8217;re certainly not there yet, but I think there&#8217;s a great, there&#8217;s enough thought and carefulness that&#8217;s going in consideration into the different packages and areas and features that make up site editing. So that the potential will be there that users can switch. But also users can switch and still maintain their customizations, right, within global styles. That&#8217;s a really complex thing to solve. But I think there&#8217;s definitely great consideration being applied there and making sure that that will happen. And so, yeah, I&#8217;m excited to see the future, that&#8217;s where it is for me.</p>\n\n\n\n<p>[00:17:46] <strong>Nathan Wrigley:</strong> I have no idea how to square this circle. I really don&#8217;t know how to do it. But the whole problem of putting the site editor into WordPress, and for everybody to go, yay, this is exactly what we wanted. Because we do seem to have an era, right at the minute where, people are adopting it, other people are finding it difficult to adopt.</p>\n\n\n\n<p>They&#8217;re holding off because they can see that it&#8217;s not where it needs to be. And I just don&#8217;t know what the solution could have been to make that transition as easy as possible. So we are in a situation right now where if you download a vanilla version of WordPress and put it on a site, you&#8217;re going to have the 2022 theme. But the editing experience for that will still be labeled as beta.</p>\n\n\n\n<p>So in a way, it&#8217;s sort of saying, whoa, don&#8217;t go in here. This is likely to break. So the default editing experience is warning us off and be mindful of the fact that things may be damaged if you use this. But the traditional way worked. People that were happy with it are still happy with it.</p>\n\n\n\n<p>There&#8217;s no period at which, hopefully, at least anyway, one is going to, the old way of doing things, if you like the classic themes, they&#8217;re not going to be put out to pasture at any point in the near future. So we&#8217;ve got try and swing people over gently. And I don&#8217;t know how that journey could have been achieved successfully, but it does feel as if maybe it&#8217;s put some people&#8217;s noses out of joint.</p>\n\n\n\n<p>Of course there&#8217;s this whole other crowd of people that we are not used to talking to because they don&#8217;t yet exist. And what I mean by that is people who&#8217;ve never used WordPress and for them, they&#8217;re going to step into WordPress tomorrow, the day after.</p>\n\n\n\n<p>And this will be the way that they&#8217;ve done it. What the heck? The customizer. What? I have no interest in that. That looks very strange. I&#8217;m used to this experience and I guess part of your job and part of everybody&#8217;s job in WordPress is to sort of bridge that gap and see how smooth we can make it.</p>\n\n\n\n<p>[00:19:48] <strong>Damon Cook:</strong> Yeah, and I think that what excites me the most is the experimentation and exploration for even existing users. I mean, I think that some people are transitioning and exploring even new ways that even if they have the Gutenberg plugin installed and activated and are testing out things that aren&#8217;t ready for a production site necessarily, but really pushing the boundaries of what can be done.</p>\n\n\n\n<p>And then, I think that can come back to influence the project and direction. So those edge cases and experimentations are definitely where things that get me excited. One thing I just saw that, it&#8217;s kind of a tangent I guess, but I saw that there&#8217;s a color randomizer that was introduced in Gutenberg, and I think that&#8217;s being, featured on, is it Anne McCarthy&#8217;s new call for full site editing outreach experiment.</p>\n\n\n\n<p>[00:20:44] <strong>Nathan Wrigley:</strong> Yeah, she does our outreach program. That&#8217;s right, yeah.</p>\n\n\n\n<p>[00:20:46] <strong>Damon Cook:</strong> So that is a really neat exploration to have in the global styles. A little button you can randomize the colors and see that being applied. You&#8217;ll see the different colors applied to the theme, and so I think that type of exploration shows some of the excitement and some of the neat things that there is potential for.</p>\n\n\n\n<p>There&#8217;s also the people, I mean, and I am totally like, how many people are going to use that? I don&#8217;t know, maybe two. But I think that that type of exploration can give great value if done carefully and considered what the outcomes are, and what the potential is. Whether that feature gets pulled into a final solution and product of WordPress core, I don&#8217;t know, that may not. But I&#8217;m sure that the outcomes will be documented, whether it&#8217;s in Gutenberg and whether that comes back up in two or three years as another exploration, you know. That&#8217;s something to learn from and build off of. So that stuff is, I think, super valuable.</p>\n\n\n\n<p>[00:21:48] <strong>Nathan Wrigley:</strong> That&#8217;s a really interesting position you&#8217;ve taken there. I really hadn&#8217;t framed it in my head in that way too often, because when something like that comes along, it would seem that those people who aren&#8217;t going to make any use of it, the common clarion call is, well, who&#8217;s going to make use of it? What&#8217;s the point of this? Why have we got this, I don&#8217;t know, style randomizer that you&#8217;ve just mentioned? And, maybe the same could be true of things like the duotone option that was available. I haven&#8217;t really seen too much of the duotone out there in the wild.</p>\n\n\n\n<p>So what I&#8217;m taking from that is that it was an interesting experiment. Nobody, well, not nobody, very few people made use of it. But the way that you just framed it was fascinating. It was more about, well let&#8217;s just try things. Throw spaghetti at the wall, and see what sticks. And maybe some of it is going to be the exact thing first time, but maybe not.</p>\n\n\n\n<p>Maybe it&#8217;ll be a case of, what we&#8217;ve shown you here is what is possible, not how it will end up. Look, there is an option here. By clicking a button, you can dramatically change the style of your site, you can randomize it. But what if we didn&#8217;t want to randomize it completely? What if we could apply constraints to that randomization, so that it was broadly the same as it was before, but just a tiny bit different.</p>\n\n\n\n<p>In other words, we varied your website, not completely randomized it. And so it can be iterated on. The goal isn&#8217;t to arrive at the end point, first time. It&#8217;s just, here&#8217;s an idea. Anybody going to make use of it? No, okay. We&#8217;ll move on. Or, yes, but not how it is. We&#8217;re going to iterate on it, so, yeah interesting.</p>\n\n\n\n<p>[00:23:25] <strong>Damon Cook:</strong> Yeah, they&#8217;re experiments. I mean, it&#8217;s like good old science class. You do an experiment, document the outcomes. And I think that&#8217;s a really great way to look at it. Not everything is going to be a success. Experiments fail all the time. But, just as long as you can kinda learn and get the key takeaways and maybe revisit and iterate on a different type of that experiment. So yeah, I think it&#8217;s a great thing,</p>\n\n\n\n<p>[00:23:51] <strong>Nathan Wrigley:</strong> Showing the boundaries of what might be possible, not necessarily what will be. Here&#8217;s the sort of thing that you can do. Here&#8217;s the direction that you could go in and what have you.</p>\n\n\n\n<p>I feel like styles, you were mentioning there the ability to randomize them. I feel like styles is a real area of success in WordPress at the minute. Because we&#8217;ve got things like global styles in the latest iteration of the default theme, 2023. We&#8217;ve got this fabulous new thing, which certainly I think is fabulous, I think you do too, called style variations. Other things perhaps less successful. You know, the navigation block, I think still is broadly speaking too unfamiliar for many people to use it as a default. But yeah, styles. Styling everything, blocks, themes, patterns, and what have you, and style variations. Do you just want to tell us, because you wrote that in the show notes, you must have some, insight and excitement around it?</p>\n\n\n\n<p>[00:24:49] <strong>Damon Cook:</strong> Yeah, style variations, I think that came out in 5.9 or maybe 6.0. With 6.1 that just came out, the core theme 2023 had a series of style variations within it. That was showing the potential of that new API. And again it&#8217;s a great exploration and I don&#8217;t think that every theme that&#8217;s going to be developed, or need to be developed, is going to need a style variation. But, the fact that those APIs are there and you can have that UI, that a user can just browse through and pick different styles and appearances, and get different looks to their site. I think is always something that&#8217;s going to land with developers and end users. Because yeah, the web is a big visual experience for a lot of us. So just seeing those changes in real life is always a great thing. And, there was about 10 style variations.</p>\n\n\n\n<p>And so yeah, if you open up the 2023 theme and go into the global styles area, you can just browse different appearances and even save, if you like one, and start using it today.</p>\n\n\n\n<p>[00:26:03] <strong>Nathan Wrigley:</strong> It really is remarkably clever and very, very interesting to look at. So, as you&#8217;ve just said, you download, start using the 2023 theme, and you&#8217;ve got these 10 contributed style variations. And really, in a sense, it&#8217;s almost like a theme within a theme. It&#8217;s almost like the 2023 theme is 10 themes. I&#8217;m over exaggerating it.</p>\n\n\n\n<p>It really is just changing the styling. So the text is the same. The images, they remain the same. But it plays very nicely, like I said, these 10 contributed styles that were selected as the ones to go into the theme, they&#8217;re really, really different to each other. So in some of them the images, they have different border radiuss, you know, really startlingly, different border radiuss.</p>\n\n\n\n<p>The typography&#8217;s changed, the background has changed. And for an end user, you are basically looking at a different website. And the ability to change that, I can&#8217;t see any people, well any clients, not at least thinking, well that&#8217;s a nice option to have. Nobody&#8217;s going to say, well, no, no. I don&#8217;t wish to ever be able to change the style of my website with the click of a button. That&#8217;s just such a great idea.</p>\n\n\n\n<p>[00:27:15] <strong>Damon Cook:</strong> Yeah. And I think it, that even reinforces a lot of, I know that the introduction of the theme.json, right, using json file to right. A lot of people say, and it is if you&#8217;re essentially writing kind of a CSS abstraction, right, of styling your site in theme.json files. But I think that&#8217;s where, again I see the potential is. Yeah, you&#8217;re saving these styles as json objects, but you know, at the end of the day there&#8217;s so much more potential that, you know, you can take different json objects.</p>\n\n\n\n<p>Maybe it&#8217;s styling the same exact thing. Maybe the theme is saying style buttons this way with this border, and then there&#8217;s a UI for the user to modify that border, and then take those json objects and synthesize them together. That is the potential of, again, going back to the customizer, if a user just switched themes and some of those stylings weren&#8217;t there, then they had a bad experience.</p>\n\n\n\n<p>So I think the value of the theme.json file is hard for a lot of people to grasp, because especially if you&#8217;re familiar with writing CSS, you&#8217;re like, oh, I&#8217;m just writing CSS in a json file. But, yes you are. But, the way that data is being exchanged and can be exchanged in the future will have great potential and, really enable a lot of clever things, I think.</p>\n\n\n\n<p>[00:28:44] <strong>Nathan Wrigley:</strong> Just to give some more context to that. Does the theme json file, for those people who are listening who don&#8217;t know what that is and don&#8217;t really want to get into that. Fear not, it&#8217;s not tremendously difficult, but also I think there&#8217;s a lot of tooling coming out, which is online platforms if you like, which will help you get through that.</p>\n\n\n\n<p>There&#8217;s a lot of tutorials around now to help with that, much more so than there was a little while ago. But there are tools which are coming out which will enable you to create these files in a much more straightforward way than typing it into your IDE. But do you see that as a really nice bridge between swapping out themes, because it will provide consistency over time.</p>\n\n\n\n<p>Things in the theme.json file will be immutable, if you like. And if you swap your theme for a completely different theme, hopefully, you won&#8217;t just be looking at a complete horror show where everything is completely different. We&#8217;re looking for a more consistent experience with these new adoptions.</p>\n\n\n\n<p>[00:29:39] <strong>Damon Cook:</strong> Yeah, I think my mind definitely goes to the edge cases, well not the edge cases, but like AI. I mean you kind of have to make some inferences of if you&#8217;re going to take what the theme, it might be telling you, and trying to allow the user to override some of the things the theme might be setting.</p>\n\n\n\n<p>First of all, you want, you want to make that optional, right? You want to be able to allow theme developers to even surface the UI. So, do they want the potential for somebody to change a button border? That should be an option. And if it&#8217;s enabled, how do we infer what the user has customized versus what the theme originally was doing?</p>\n\n\n\n<p>I think you can kind of make some inferences there, but at the end of the day, there&#8217;ll probably be some rough edges that will break in changing themes. But I think that it has a greater potential in the current iteration of it, like the APIs with theme.json ,to make things easier to work with, and how they&#8217;re saved and exchanged. So, I&#8217;m not sure if that answered your question, but.</p>\n\n\n\n<p>[00:30:52] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s not the silver bullet, but it hopefully will provide a little bit of stability over time. And be less of a, of an experience that you described earlier with the customizer where swap themes and you really are left with a black hole that is hard to get out of.</p>\n\n\n\n<p>Okay, so we&#8217;re recording this end of November, 2022. WordPress 6.1. Actually 6.1.1 as of a few hours ago. But, broadly speaking, WordPress 6.1 is the latest and greatest. You put in the show notes, the future of WordPress including 6.1 and beyond. What has got you excited in 6.1? What are some of the, the fun bells and whistles that you&#8217;ve enjoyed seeing?</p>\n\n\n\n<p>[00:31:34] <strong>Damon Cook:</strong> I think some of the global styles work, like saving and importing and exporting for themes to allow end users and builders to create their own variations on a theme. That is currently being worked on, and I think has great potential and excites me. So that, again, it goes back to enabling a good theme switching experience for the end user and for builders and for developers.</p>\n\n\n\n<p>Then I think there&#8217;s also more, I mean, in 6.1 there was a good deal of work in allowing the bridge between classic themes and block themes with allowing classic template parts to pull in patterns. And, even now I think there&#8217;s work for replacing a template part from patterns. Those types of things speak to the backwards compatibility of the project.</p>\n\n\n\n<p>That stuff excites me the most is bridging that gap, because I think a lot of people are, it&#8217;s either a classic theme world or a block theme world. And so, if we can slowly onboard users and developers from classic theme to block theme development, then I think that&#8217;s always going to be a success for everyone.</p>\n\n\n\n<p>[00:32:52] <strong>Nathan Wrigley:</strong> You, uh, you mentioned also in the show notes. One of the things that people listening to this may or may not know, is, they may have come across a plugin before called ACF. ACF stands for Advanced Custom Fields. I forget when, it was certainly before your time at WP Engine, but WP Engine acquired ACF. And, I can&#8217;t remember the route that it went. I think it went through Delicious Brains first, and then it ended up with WP Engine. It&#8217;s now under WP Engine&#8217;s stewardship. It&#8217;s a very popular plugin.</p>\n\n\n\n<p>One of the fun things that you can do with ACF is to create blocks in, let&#8217;s just call it a simpler way. There&#8217;s less of a curve. You can stick with some of the things that you&#8217;ve known for years. You mentioned in the show notes you thought this was quite an interesting thing that you&#8217;ve been playing with lately. Tell us a little bit about ACF blocks and what you&#8217;ve been doing.</p>\n\n\n\n<p>[00:33:40] <strong>Damon Cook:</strong> Yeah, I recently was able to revisit because I&#8217;ve used, I&#8217;ve been an ACF Pro user throughout my years as a developer and I&#8217;ve used it on projects and, it had been a while and the 6.0 release just came out. And so I was able to dig in and experiment with the current iteration of ACF blocks, which has great potential, I think, and is really useful.</p>\n\n\n\n<p>And again, I think it bridges a gap for a lot of builders in creating custom blocks. I think it&#8217;s become a less of a need, because I think WordPress core has enough great blocks out of the box to use. But there&#8217;s always going to be potential for different accordions, tabs, those good old sliders, stuff like that.</p>\n\n\n\n<p>And ACF definitely makes a great argument for using PHP and not even having to dabble in kind of the Gutenberg React, JavaScript world. So I think that makes sense for a lot of developers. Why start learning all this React stuff when I can just stick with PHP, and that makes sense to me. And I think that whatever gets you an end project done quicker than that, whatever works, that works.</p>\n\n\n\n<p>[00:35:08] <strong>Nathan Wrigley:</strong> So is the idea of ACF blocks then that with an understanding of PHP, CSS and what have you? You can combine custom field groups, say, or a selection of custom fields. And you can have those be output in a block? So you&#8217;re in the Gutenberg editor, you drag in the ACF block that you&#8217;ve created, and whatever you&#8217;ve given it a name for. And then you can style it in Gutenberg based upon what you&#8217;ve set up. You can obviously, depending on what you&#8217;ve done, you can add in text or multiline text or date pickers or whatever it may be. Is that the promise of it?</p>\n\n\n\n<p>[00:35:43] <strong>Damon Cook:</strong> Yeah, and I think for any ACF users that are already working with the field&#8217;s UI, registering and creating those fields in ACF and then assigning them to a custom block that you can just drag and drop into the editor, is quick and easy with ACF. And it makes sense in a lot of ways, because yeah, those fields are available in your block and you get the output that you expect.</p>\n\n\n\n<p>I think there&#8217;s a little bit of a deviation in kind of the editor experience, because the way the fields, but that&#8217;s really on the developer and implementation really. I mean, you can go all out and try to make it a native feeling experience. And I think that there&#8217;s a lot of work even in ACF to give it that native experience. But yeah, I think having those fields available right on your block in the editor makes things easy to work with and makes sense at the end of the day.</p>\n\n\n\n<p>[00:36:40] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s a nice bridge isn&#8217;t it, for people who don&#8217;t wish to commit the time or the energy to learning those fairly difficult skills. You can stick with the skills that you&#8217;ve already got and use perhaps a tool that you&#8217;ve had lying around for a while in a new and interesting way.</p>\n\n\n\n<p>And I also feel that the idea of being able to drop in custom blocks for your clients, whatever industry they&#8217;re in. I don&#8217;t know, you build a site for a real estate agent and managed to throw together a real estate block, which, you know, if you fill out the fields, there&#8217;s a house, that you can have on your website and all you had to do was drag in a block and complete the necessary fields.</p>\n\n\n\n<p>It&#8217;s really great. Really interesting. Do you actually dabble in the, the React side of things? Do you build your own custom blocks? Is that something you have experimented with? And if the answer&#8217;s yes, how have you found that challenge?</p>\n\n\n\n<p>[00:37:31] <strong>Damon Cook:</strong> Yes I do. And it is a challenge. I think that I tend to bounce between trying to learn React fundamentals, but mostly I think that I spend most of my time learning Gutenberg&#8217;s flavour of React, which makes more sense to me.</p>\n\n\n\n<p>And makes more sense in that, it&#8217;s in WordPress and that&#8217;s the APIs that they&#8217;re spinning off is going to always, it&#8217;s going to mature and change a little bit, but that&#8217;s where I&#8217;d rather spend my time learning. But I think there are some key concepts in React fundamentals that it&#8217;s always good to go back and revisit. But, I do that sporadically. That&#8217;s even, uh, as a front end developer of 10 years, I still, you know, I&#8217;m still looking up HTML elements in MDN Mozilla.</p>\n\n\n\n<p>But yeah, developing custom blocks I think has become a lot easier because I&#8217;ve developed them throughout the years in agency land and just the tooling has become a lot better and consistent. Still a ways to go in the documentation. And I think there&#8217;s a, a lot of great feedback on how to extend some of the tools to help enable custom block development.</p>\n\n\n\n<p>Yeah, I think it&#8217;s come a long way and, there is the barrier to creating your first block is pretty low these days. And if anything, the biggest barriers are probably spinning up and setting up Node and NPM, which is understandably a pretty significant technical barrier. But, I think there&#8217;s a lot of great tutorials out there on that stuff as well.</p>\n\n\n\n<p>[00:39:19] <strong>Nathan Wrigley:</strong> Given that your developer advocate role is your job, and you&#8217;re trying to bridge the gap, I guess, you&#8217;re trying to find ways to promote the community and help the community and so on. Are there any resources that you have found particularly useful? You mentioned that there&#8217;s more now than there ever has been, which is great, but are there any resources that you have personally found to be very useful about anything that we&#8217;ve talked about today? Whether that&#8217;s blocks, style variations, block themes, block patterns, whatever, just stuff that you&#8217;ve found to be useful, resources that we can mention.</p>\n\n\n\n<p>[00:39:54] <strong>Damon Cook:</strong> Yeah, I think the Learn Team and learn.wordpress.org has been putting out some great material. Courses, video tutorials. So I think that has been a really great resource lately. Also, Carolina&#8217;s fullsiteediting.com. I think a lot of people find that very useful. She does a great job of keeping that up to date and so much, so much great resources there.</p>\n\n\n\n<p>The only other, and I know this isn&#8217;t probably what everybody does with their free time, but, I actually find it interesting to open up GitHub and go into the Gutenberg project and just pick a package and start looking at code. But not everybody is a coder and not everybody&#8217;s a developer.</p>\n\n\n\n<p>And, along those lines, I think if you are even on an early journey and have any interest in being a developer, I would focus more on just learning HTML and CSS. Then if you do someday want to open up Gutenberg and start looking at the code, I think that to have that background is, is far more important to get you into the larger stuff that goes on there.</p>\n\n\n\n<p>[00:41:09] <strong>Nathan Wrigley:</strong> Damon, I am wondering if people have listened to this episode and they&#8217;ve thought, I would like to talk to Damon about this. Where could we find you? What social platforms do you use, or email address do you want to disclose? Entirely up to you. As much or as little as you like?</p>\n\n\n\n<p>[00:41:24] <strong>Damon Cook:</strong> Hopefully Twitter is still very active. But that&#8217;s where I do spend a lot of my time still. So I am dcook on Twitter. So definitely reach out to me there. And I think I&#8217;m always in the WordPress Slack. Definitely lots of great content coming out of wpengine.com builders site in the future. We&#8217;re actually just starting to do some workshops as well. So look for announcements on Twitter through wpenginebuilders. That&#8217;s where mostly where I can be reached.</p>\n\n\n\n<p>[00:41:59] <strong>Nathan Wrigley:</strong> Damon Cook, appreciate you chatting to us on the podcast today. Thank you very much.</p>\n\n\n\n<p>[00:42:03] <strong>Damon Cook:</strong> Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://twitter.com/dcook\">Damon Cook</a>.</p>\n\n\n\n<p>He’s a longtime user of WordPress, trying it first in around 2008. He’s worked for some of the largest WordPress agencies over the years, but his current role is that of Developer Advocate with WP Engine, where he engages with the WordPress community, trying to figure out where WordPress is headed.</p>\n\n\n\n<p>Damon is on the podcast to talk about styling WordPress, and how it’s changing.</p>\n\n\n\n<p>Until recently, if you wanted to modify your website’s appearance, you needed to work with the theme. Sometimes this could be done in the theme’s UI or in the WordPress Customizer, but if you really needed fine control, then it’s likely you edited the theme’s files or created a theme of your own. It can be quite a complex process.</p>\n\n\n\n<p>Block-based themes are revolutionising website styling. You’re going to be able to change any aspect of your website from the UI that you’re familiar with. The hope is that it’ll make styling more accessible to a wider audience.</p>\n\n\n\n<p>Damon talks about the fact that we’re in a period of flux right now. The documentation and tooling needed to work with website styles is maturing, but is by no means complete.</p>\n\n\n\n<p>We talk through some new concepts which are underpinning all of this. Style variations, style engine, global styles, block themes, block patterns, theme.json. These are perhaps terms that you’ve heard being used, but might not be familiar with. Damon explains what they are and where they fit into the website styling jigsaw.</p>\n\n\n\n<p>Towards the end we briefly get into work that Damon has been doing with ACF to make his own blocks, and how it provides a bridge for those people who are not yet familiar with React.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://wpengine.com/\">WP Engine</a></p>\n\n\n\n<p><a href=\"https://wpengine.com/builders/\">WP Engine Builders</a></p>\n\n\n\n<p><a href=\"https://deliciousbrains.com/\">Delicious Brains</a></p>\n\n\n\n<p><a href=\"https://www.advancedcustomfields.com/\">Advanced Custom Fields</a></p>\n\n\n\n<p><a href=\"https://www.advancedcustomfields.com/resources/blocks/\">ACF Blocks</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress website</a></p>\n\n\n\n<p><a href=\"https://fullsiteediting.com/\">Full site editing website</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg\">Gutenberg Project on GitHub</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Jan 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: The Process for Applying to the WooCommerce Agency Partner Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://dothewoo.io/the-process-for-applying-to-the-woocommerce-agency-partner-program/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:394:\"<p>A simple explanation of the process for applying as a WooExpert </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-process-for-applying-to-the-woocommerce-agency-partner-program/\">The Process for Applying to the WooCommerce Agency Partner Program</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Jan 2023 10:32:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Icon Block 1.4.0 Adds Height Control, Improves Color Handling to Better Support Global Styles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140670\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/icon-block-1-4-0-adds-height-control-improves-color-handling-to-better-support-global-styles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5873:\"<p>Nick Diego, developer advocate at WP Engine, has released <a href=\"https://nickdiego.com/the-icon-block-1-4-0-release-whats-new-and-how-i-built-it/\">version 1.4.0</a> of his <a href=\"https://wordpress.org/plugins/icon-block/\">Icon Block</a> plugin. Diego launched it in October 2021, after struggling to find an efficient way to add SVG icons to the block editor. He is aiming for this small but useful plugin to become &#8220;the definitive SVG icon and graphic block.&#8221; In the past year, it has grown 1300%  to more than 7,000 active installs, while staying focused on a tight set of features. </p>\n\n\n\n<p>WordPress contributors have been <a href=\"https://core.trac.wordpress.org/ticket/24251\">discussing adding SVG support</a> to core for more than a decade, but have not yet found a clear path forward that properly addresses security concerns. In July 2022, the Performance team began <a href=\"https://wptavern.com/wordpress-performance-team-is-working-on-a-module-for-svg-uploads\">working on a module for SVG uploads</a> but it&#8217;s still in progress. In the meantime, since the SVG format has <a href=\"https://caniuse.com/?search=svg\">nearly universal support across the web</a>, users have relied on plugins like <a href=\"https://wordpress.org/plugins/svg-support/\">SVG Support</a> (1M+ installs) or <a href=\"https://wordpress.org/plugins/safe-svg/\">Safe SVG</a> (700k+ installs) to upload SVG files to the media library and use them like any other image file.</p>\n\n\n\n<p>Diego&#8217;s plugin is different in that it was made for use with the block and site editors. The Icon Block registers a single block that allows users to add custom SVG icons and graphics. It also enables access to the WordPress icon library, which contains 270+ SVG icons. </p>\n\n\n\n<p>One advantage of the plugin is that users don&#8217;t need to install a whole block library if they just need SVG icons. In version 1.2.0, Icon Block added the ability for developers to <a href=\"https://nickdiego.com/adding-custom-icons-to-the-icon-block/\">register their own custom icon libraries</a>.</p>\n\n\n\n<p>The latest release expands width control beyond what is offered in the core Image block to support <code>%</code>, <code>px</code>, <code>em</code>, <code>rem</code>, <code>vh</code>, <code>vw</code>, or whatever units are defined in theme.json. These units are also available in Global Styles, so users can control width based on how the theme author intended. Diego, who said he prefers to use native WordPress components wherever possible, updated width controls using Gutenberg&#8217;s <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/block-editor/src/components/height-control/index.js\" target=\"_blank\">HeightControl</a>, which isn&#8217;t yet available in core. </p>\n\n\n\n<p>&#8220;Luckily, it is built out of components that have been in WordPress since 6.0. I ported the code from the <code>HeightControl</code> over to a custom <code><a rel=\"noreferrer noopener\" href=\"https://github.com/ndiego/icon-block/blob/main/src/components/dimension-control.js\" target=\"_blank\">DimensionControl</a></code> in the Icon Block and made a few modifications to meet my specific needs,&#8221; Diego said.</p>\n\n\n\n<p>Icon height support is a new feature in the latest 1.4.0 release, another feature request from the plugin&#8217;s community of users.</p>\n\n\n\n<img />image source: <a href=\"https://nickdiego.com/the-icon-block-1-4-0-release-whats-new-and-how-i-built-it/\">Icon Block 1.4.0 release post</a>\n\n\n\n<p>&#8220;One thing to note is that I choose to exclude&nbsp;<code>%</code>&nbsp;from the height unit options,&#8221; Diego said in the release post. &#8220;Using&nbsp;<code>%</code>&nbsp;can have unexpected results based on the icon’s container height and is quite unintuitive.&#8221;</p>\n\n\n\n<p>Version 1.4.0 also improves color support to better support Global Styles. When themes define a <code><code>primary</code> and <code>secondary</code></code> colors in theme.json, icons set to use these will work seamlessly with style variation switching. This is a beautiful demonstration of how block developers can make their plugins work harmoniously with Global Styles to improve the experience of full-site editing.</p>\n\n\n\n<img />image source: <a href=\"https://nickdiego.com/the-icon-block-1-4-0-release-whats-new-and-how-i-built-it/\">Icon Block 1.4.0 release post</a>\n\n\n\n<p>In future releases, Diego said he plans to work on a way to allow users to insert custom SVG icons from an &#8220;uploaded&#8221; SVG file, as well as explore ways to integrate with third-party icon libraries. Access to Font Awesome, Boostrap icons, Ionicons, and other SVG libraries would give users a much wider selection beyond the WordPress icon library when designing their sites.</p>\n\n\n\n<p>Users can submit feature requests via the <a href=\"https://github.com/ndiego/icon-block/issues\">issues</a> queue in the plugin&#8217;s GitHub repository. Since Diego is developing the plugin using native WordPress components as much as possible, users can also expect additional functionality to become available as it is added to WordPress core.</p>\n\n\n\n<p>&#8220;There are tons of great icon plugins in the WordPress ecosystem, free and premium,&#8221; Diego said. &#8220;Most have more features and functionality than the Icon Block. However, what makes this block different is its strong commitment to WordPress&#8217; core design principles.</p>\n\n\n\n<p>&#8220;The goal was always to make the block feel like it belonged in WordPress itself. I have strived to use as many core <a rel=\"noreferrer noopener\" href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-supports/\" target=\"_blank\">block supports</a> and components as possible. Version 1.4.0 stays true to this effort with much-needed enhancements.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Jan 2023 21:36:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: Knowing What Your Sites Performance Means\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/knowing-what-your-sites-performance-means/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:439:\"<p>You may find a tool that gives you a good indication of what your site does in a browser, but it\'s just a metric. It\'s not the metric, not the end all, be all.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/knowing-what-your-sites-performance-means/\">Knowing What Your Sites Performance Means</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Jan 2023 10:49:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Donncha: The Mastodon Onslaught on your blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89589420\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://odd.blog/2023/01/02/the-mastodon-onslaught-on-your-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7169:\"<p>You might not be on Mastodon yet, but your blog could get a torrent of traffic from Mastodon, or other Fediverse network if it&#8217;s shared there.</p>\n\n\n\n<p>If your website is mentioned there, it might be the “victim” of an inadvertent denial of service attack, as hundreds or thousands of servers request the URL in the 60 seconds or so afterwards. That is precisely what <a href=\"https://www.jwz.org/blog/2022/11/mastodon-stampede/\">JWZ blogged about</a> last month when his site was taken down by Mastodon servers.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Every time I do a new blog post, within a second I have over a thousand simultaneous hits of that URL on my web server from unique IPs. Load goes over 100, and mariadb stops responding.</p>\n<cite>JWZ on <a href=\"https://www.jwz.org/blog/2022/11/mastodon-stampede/\">Mastodon Stampede</a>.</cite></blockquote>\n\n\n\n<p></p>\n\n\n\n<p>JWZ has over <a href=\"https://mastodon.social/@jwz\">8,000 followers.</a> Every time he shares a post on Mastodon, the instances (servers) where those followers live will send a request to his blog to generate a preview. Actually, two requests will be sent:</p>\n\n\n\n<ul>\n<li>A request for the wp-json embed for the page.</li>\n\n\n\n<li>A request for the page that was shared.</li>\n</ul>\n\n\n\n<p>Eventually, he blocked the Mastodon user agent. That stops previews of his website showing up on Mastodon posts, but resolves the problem for his website.</p>\n\n\n\n<p>Yesterday morning, I <a href=\"https://mastodon.ie/@donncha/109614145566437712\">decided to see what effect</a> sharing a link on my Mastodon account would have on my server. My Mastodon account has 1.8K followers. A far cry from the number of followers JWZ has, but still enough to test my server.</p>\n\n\n\n<p>I wanted to test several scenarios:</p>\n\n\n\n<ul>\n<li>Caching the post before sharing.</li>\n\n\n\n<li>Changing Apache configuration.</li>\n\n\n\n<li>Sharing without caching on my server.</li>\n</ul>\n\n\n\n<p>My server is at Linode. I pay an average of $24/month to run this site and my photoblog is on it too where I share a daily photo + link on Mastodon. It&#8217;s not a heavy-duty server that can withstand a huge amount of traffic.</p>\n\n\n\n<p>If you&#8217;d like to skip the details, my server coped fine with sharing a URL from here to Mastodon. The load average went up for about 20 seconds, topping out at the max for about 5 seconds before things calmed down. It was responsive the whole time. Install a full-page caching plugin like <a href=\"https://wordpress.org/plugins/wp-super-cache/\">WP Super Cache</a>, <a href=\"https://jetpack.com/boost/\">Jetpack Boost</a> and <a href=\"https://wordpress.org/plugins/wp-rest-cache/\">WP Rest Cache</a> and your site will probably be fine. Jetpack Boost and the <a href=\"https://jetpack.com/\">Jetpack</a> Image Accelerator will help when human visitors arrive.</p>\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://i0.wp.com/odd.blog/files/2023/01/Screenshot-2023-01-02-at-10.03.17.png?ssl=1\"><img /></a></div>\n\n\n<p>The <a href=\"https://mastodon.ie/@donncha/109614168671378154\">first test</a> resulted in:</p>\n\n\n\n<ul>\n<li>261 requests for the page embed.</li>\n\n\n\n<li>359 requests for the page itself.</li>\n\n\n\n<li>1 minute load average topped out at 1.34 for 5 seconds.</li>\n</ul>\n\n\n\n<p>The page was cached by WP Super Cache, but I had set the garbage collection TTL to 60 seconds and I believe it expired halfway through the test, so it had to generate the cache again. Once I adjusted that, and set the TTL to 600 seconds, <a href=\"https://mastodon.ie/@donncha/109614227575646081\">the second test</a> performed better. The page remained cached throughout:</p>\n\n\n\n<ul>\n<li>273 requests for the page embed.</li>\n\n\n\n<li>289 requests for the page itself.</li>\n\n\n\n<li>1 minute load average topped out at 0.71 for 5 seconds.</li>\n</ul>\n\n\n\n<p>The main points of my Apache configuration:</p>\n\n\n\n<ul>\n<li>Keep alives are disabled.</li>\n\n\n\n<li>5 start servers</li>\n\n\n\n<li>Minimum 10 spare servers</li>\n</ul>\n\n\n\n<p>When I reduced the start and minimum spare servers to 1, <a href=\"https://mastodon.ie/@donncha/109614274892094213\">the next test</a> took longer to complete, and the load average rose to 1.24, even on a fully cached page. This was expected as the server didn&#8217;t have the spare capacity to deal with the sudden traffic.</p>\n\n\n\n<p>After reverting the changes to Apache, I disabled caching on my blog and shared another URL. The <a href=\"https://mastodon.ie/@donncha/109614344675460069\">load average</a> only rose to 1.12 for a very short time. I was pleased with that. While caching does help, my server could cope with that traffic.</p>\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://i0.wp.com/odd.blog/files/2023/01/Screenshot-2023-01-02-at-09.57.25.png?ssl=1\"><img /></a>A sample of the user agents used by Mastodon instances hitting my blog for previews</div>\n\n\n<p>I suspected that there was one hit per Mastodon instance on my site. I checked my logs and was proved right. For all the accounts that follow me on mastodon.social, only one request was made. That does mean the onslaught of requests isn&#8217;t as bad as it might be. Instead of 1,800 requests for a page, there were far fewer. I did notice that a Friendica instance requested one of my test URLs several times.</p>\n\n\n\n<p>Mastodon and other Fediverse servers will start requesting a preview within a second of you sharing your post on the network. It helps if your server is running some sort of caching.</p>\n\n\n\n<p>If you have many Mastodon followers or if you&#8217;re worried about a DDoS from Mastodon, the following will help:</p>\n\n\n\n<ul>\n<li>Make sure Apache/Nginx has the spare capacity to grow quickly and respond to a sudden torrent of requests.</li>\n\n\n\n<li>Install a caching plugin like <a href=\"https://wordpress.org/plugins/wp-super-cache/\">WP Super Cache</a>.</li>\n\n\n\n<li>Use “expert caching” in WP Super Cache which serves the cached page using mod_rewrite. That will mean your blog post is served almost as fast as requesting a text file from the server. No PHP is executed at all.</li>\n\n\n\n<li>Install <a href=\"https://wordpress.org/plugins/wp-rest-cache/\">WP Rest Cache</a> as it will <a href=\"https://wordpress.org/support/topic/get-wp-json-oembed-not-cached-can-it-be/\">soon cache the embed page request</a>.</li>\n\n\n\n<li>Install <a href=\"https://jetpack.com/\">Jetpack</a> and enable the Image Accelerator and Jetpack Boost for human visitors who come later.</li>\n</ul>\n\n\n\n<p>This problem has existed for a long time. Popular blogs had the same issue when they published new content and people following their blogs (through RSS feed readers, remember them?) hit the server looking for the new post. At least with Mastodon, you can load the post in a private browser window and cache it before sharing it. I want to write a WP Super Cache add-on plugin that allows the site owner to preload a new post as it&#8217;s published. That will ensure the new content is ready for sharing. I haven&#8217;t started work on that yet, so don&#8217;t ask when it&#8217;ll be done. Maybe someone else will beat me to it and claim all the credit!</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Jan 2023 09:31:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WordPress.org blog: WP Briefing: Episode 46: The WP Bloopers Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/12/episode-46-the-wp-bloopers-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9573:\"<p>This episode of the WP Briefing features all the Josepha bloopers our little elves have stored away over the year. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14123\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can normally catch quick explanations of the ideas behind the WordPress open source project with the hope that deeper understanding creates deeper appreciation.</p>\n\n\n\n<p>But on today&#8217;s bonus episode, instead of catching quick explanations, you&#8217;ll catch some quick bloopers.&nbsp;</p>\n\n\n\n<p>The end of the year is a time when many people and many cultures gather together, and whether you observe traditions of light or faith, compassion, or celebration from everyone here at the WordPress Briefing Podcast, we&#8217;re wishing you a happy, festive season and a very happy New Year.</p>\n\n\n\n<p>Sit back, relax, and enjoy some of the laughs and outtakes from recording the WP Briefing over the year.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress. This is the thing I&#8217;ve done 25 times, and I know how to do it for reals.</p>\n\n\n\n<p>Welcome to WordPress Briefing, episode 20. Oh no, 7? 27? 26? Episode 27. I know how many things I&#8217;ve done.</p>\n\n\n\n<p>Ooh, neat. This is Josepha recording episode 46 of the WP Bonus Briefings. Not because we&#8217;ve had 46 bonus Briefings, but because this is the 46th one and it is a bonus, it will also have a fancy name. But right now, I&#8217;m just calling it the bonus. It&#8217;s gonna be quick. Here I go.&nbsp;</p>\n\n\n\n<p>Group them into two big buckets, themes, uh, themes and tools. Mmm, I&#8217;m gonna have to redo the whole thing! No! I thought I could save it, and I didn&#8217;t save it. I had a typo in my script, and then I messed it up. I, it said into you big buckets instead of into two big buckets.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00]&nbsp;</strong></p>\n\n\n\n<p>I&#8217;m gonna start over from the target release date because I kind of smeared it all together, um, despite what I intended to do.</p>\n\n\n\n<p>And gives everyone, no. What is this ringing of phones? Oh, I was doing so well. Where was I? Let&#8217;s see if I can just pick it up.</p>\n\n\n\n<p>All righty, live from my closet. It&#8217;s episode 20, the WordPress Briefing, WP Briefing. So I have a title for this, and when I started writing it, I really had every intention of writing it to the title. And then what I wrote doesn&#8217;t fit the title at all, but does really hang together well. And so we&#8217;re gonna have to come up with a new title, but at the moment, it&#8217;s called So Many Ways to WordPress.</p>\n\n\n\n<p>Here in a minute, you will see why it doesn&#8217;t fit. Also, at the end, I feel like I get very, like, angry nerd leader.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00]&nbsp;&nbsp;</strong></p>\n\n\n\n<p>And so I may, I may at the end, give that a second go and see if there&#8217;s a way that I can soften it a little bit, but, I, I don&#8217;t know that I can soften it. I feel very strongly about it. So, maybe I am just an angry nerd leader.</p>\n\n\n\n<p>Oh, okay. I&#8217;ll get us started now that I apparently have filled the room with apologies, not the room, the closet.&nbsp;</p>\n\n\n\n<p>We&#8217;ll figure out something very catchy as a title or as an alternative. Very descriptive, and people will click on it because they must know, but we&#8217;ll figure out the title later.</p>\n\n\n\n<p>@wordpress.org. However, I don&#8217;t know why I decided to do an invitation to email me in the middle of that. I&#8217;m gonna start from the top of that paragraph. I just got too excited by the opportunity to get mail.</p>\n\n\n\n<p>I gotta slow it down. I&#8217;m like the fastest talker, had too much coffee. Okay, slowing it down now.&nbsp;</p>\n\n\n\n<p>Huh? What am I saying? No, no, that&#8217;s what I&#8217;m saying. It&#8217;s fine. I, I can do this.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]</strong></p>\n\n\n\n<p>Hold on. Oww. Sorry. I was adjusting my microphone, and then it fell down. I happened to be holding it at the time, so it didn&#8217;t, like, slam down, I think, and hurt your ears and so I apologize. Good thing I stopped so it didn&#8217;t just, like, slam down in the middle of a recording.</p>\n\n\n\n<p>That&#8217;s all right. I&#8217;m gonna give myself that win, even though it&#8217;s a hollow one. All right. Trying again. Starting right there, at now since.</p>\n\n\n\n<p>This year, it starts on October 18th, 2001. That&#8217;s the year? No, 2021. That&#8217;s the year. Oh man. I&#8217;m doing such a great job of this.</p>\n\n\n\n<p>Um, I&#8217;m recording this slightly before, um, you&#8217;re hearing it? What, how am I gonna start this? Hold on. I don&#8217;t know how to start this. All right. I&#8217;m, I can do it.</p>\n\n\n\n<p>Oh, I&#8217;m so glad I remembered. We had guests that could have been so embarrassing.</p>\n\n\n\n<p>Now for me, the trade-offs work well. How many times can I say now?</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]&nbsp;</strong></p>\n\n\n\n<p>Do I just start every sentence with now now? Is this just how I do things? Uh, now, now, now, now. I&#8217;m gonna start all over again because I&#8217;m in my head about the words in my mouth now. So.</p>\n\n\n\n<p>In some near timeframe, some near timeframe. This is not a thing that people say, Dustin, I&#8217;m sorry. That&#8217;s not a thing people say. I&#8217;m just gonna retry that one sentence to sound like I speak with other human beings sometimes.</p>\n\n\n\n<p>Today is the start of… I can do these things.</p>\n\n\n\n<p>This was a terrible ending. I need to just finish that last part. I&#8217;m gonna redo the part where I started with my name and not the name of the podcast. Um, and we&#8217;ll do that.</p>\n\n\n\n<p>And if you&#8217;re supporting or building anything to hand off to clients, you know that timely, easy to ship changes on a site are considered a vital part of any overarching brand and marketing strategy. Wow. It&#8217;s like, I don&#8217;t know what words are right there.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>I tripped over my own tongue a lot. I&#8217;m gonna sit, I&#8217;m gonna do that paragraph again because I didn&#8217;t do a very good job of it.</p>\n\n\n\n<p>I&#8217;ll do a better job.</p>\n\n\n\n<p>I literally digress, and now I don&#8217;t know. I am in my thing. What was I saying? Oh, there we go.&nbsp;</p>\n\n\n\n<p>Topher DeRosia, who founded Word not WordPress. Holy moly. That was a, I knew I was gonna say that, and I was like, don&#8217;t say that when you actually get around to saying this, but here I am, and I did it. Even though I knew I was gonna do it and I told myself not to. Doing it again. Right from there.</p>\n\n\n\n<p>Not which audiench segment. Oh man. Audiench is not a word, folks. I was on a roll. I&#8217;m gonna start right from the primary thing.</p>\n\n\n\n<p>I don&#8217;t even remember how I started this podcast. What is the last thing I said? I said, here we go. All right.&nbsp;</p>\n\n\n\n<p>Kind of covered some interesting ground, and so, oh no, this is not where I&#8217;m gonna start it. I know exactly where I&#8217;m gonna start it. Okay. I&#8217;m really ready now. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00]&nbsp;</strong></p>\n\n\n\n<p>I suddenly, I&#8217;m gonna pause right here because I suddenly got really worried that I didn&#8217;t actually hit record. Oh my gosh. I did. Woo. I&#8217;m all over the place. Okay. We&#8217;ll now continue. Wait, did I? Oh my goodness. I did, super sorry.</p>\n\n\n\n<p>Of the WordPress Briefing. I&#8217;m gonna do some singing in the middle of some talking, but I keep trying to talk myself out of the singing, so I&#8217;m gonna go ahead and do the singing, and then I&#8217;ll do the talking before I talk myself out of the singing. Here I go, probably.</p>\n\n\n\n<p>I added a word. That was so good. I&#8217;m gonna start again. I&#8217;m gonna get some water, and then I&#8217;m gonna start again. Not again. Again. Just from the ‘and finally.’</p>\n\n\n\n<p>I don&#8217;t know how I finish my show. Y&#8217;all, I do this literally every week. I never know how to finish my show. Here we go.</p>\n\n\n\n<p>I don&#8217;t know why I shouted at you from the other side of the tiny closet. I apologize. I&#8217;m gonna start again from ‘and finally.’</p>\n\n\n\n<p>Tada we did it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:00]&nbsp;</strong></p>\n\n\n\n<p>Ha. I hate it. I hate the whole podcast. It&#8217;s gonna be fine.&nbsp;</p>\n\n\n\n<p>Done. Nailed it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>With that, I&#8217;m your host, Josepha Haden Chomphosy. Merry Christmas from me. Happy holidays to you, and we&#8217;ll see you again in the new year.</p>\n\n\n\n<p>Done.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 31 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Post Status: New Year, Same Me\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146196\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://poststatus.com/new-year-same-me/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3111:\"<p>As I reflect on 2022, I think back over a year of mixed blessings, and I’m so grateful for the WordPress Community who supported me through family loss, new ventures, and the things I’m always doing both in and outside of WordPress.</p>\n\n\n\n<p>This year I:</p>\n\n\n\n<ul>\n<li>I completed my first year on the Post Status team! I love working in the community this way, helping tell your stories, helping post jobs, and being able to help you all make connections.&nbsp;</li>\n\n\n\n<li>I completed my first year on the StellarWP team! Again, working in our community is amazing. I get to post on different social accounts, connect people with support, and help users find the products that work for them (and they make it possible for me to contribute to the community in big ways.</li>\n\n\n\n<li>I served on the WCUS org team. You read my post <a href=\"https://poststatus.com/5-days-without-a-shower/\">5 Days Without a Shower</a>, so you know it wasn’t all sunshine and rainbows, but it was amazing, and the efforts within WordPress that have come from that post (and my experiences) will help the community going forward.</li>\n\n\n\n<li>I lost my dad this year, and the community (at StellarWP, Post Status, and the community as a whole) rallied around me with cards, DM’s, packages, phone calls, and more. If I could hug you all, I would!</li>\n\n\n\n<li>We had a Post Status member retreat in OKC. Meeting some of our agency owners was so amazing. What a huge braintrust we have in Post Status.</li>\n\n\n\n<li>We had an in-person huddle at WCUS and it was a blast! I loved getting to know you better.</li>\n\n\n\n<li>I started a <a href=\"https://wpmotivate.com\">podcast</a> with the amazing, <a href=\"https://twitter.com/kathyzant\">Kathy Zant</a>, and together we hope to bring some sunshine and positivity into your week.</li>\n</ul>\n\n\n\n<p>My wish for you in 2023 is continued health, happiness and prosperity. Connect with me on <a href=\"https://poststatus.slack.com\">Post Status slack</a> if there’s any way I can help you moving forward.</p>\n\n\n\n<h2 id=\"h-in-the-spotlight\">In the Spotlight</h2>\n\n\n\n<p>Post Status professional member, <a href=\"https://poststatus.com/member-spotlight-seth-goldstein/\">Seth Goldstein</a>. Seth has been in the digital marketing and WordPress space for more than 15 years.</p>\n\n\n\n<h2 id=\"h-weekly-member-huddles\">Weekly Member Huddles</h2>\n\n\n\n<p>We’re restructuring in 2023, so keep an eye out for news of upcoming Post Status events.</p>\n\n\n\n<h2 id=\"h-quick-links\">Quick Links:</h2>\n\n\n\n<ul>\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a> February 17-19, 2023</li>\n\n\n\n<li><a href=\"https://yoast.com/yoastcon/\">YoastCon</a> is back May 10 & 11</li>\n\n\n\n<li>Podcast: WP Motivate <a href=\"https://wpmotivate.com/podcast/gratitude-for-the-conveniences-of-the-internet-at-christmastime/\">Gratitude for the Conveniences of the Internet at Christmastime</a></li>\n\n\n\n<li>WordCamps are back. <a href=\"https://central.wordcamp.org/schedule/\">Check the schedule online</a>!</li>\n</ul>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Dec 2022 17:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Michelle Frechette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Post Status: Community Wrap-up Week Ending December 23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146125\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://poststatus.com/community-wrap-up-week-ending-december-23/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3120:\"<h2>The WordPress Community is a Wonderful Place to Be</h2>\n\n\n\n<h3 id=\"h-the-wp-community-collective\">The WP Community Collective</h3>\n\n\n\n<p>The WP Community Collective aims to address some of these ongoing challenges by creating community-funded <a href=\"https://www.thewpcommunitycollective.com/fellowships/\">Fellowships</a> to financially support individual contributions to the WordPress project and community.</p>\n\n\n\n<p>“We hope that the WP Community Collective can help bridge the gap between the passion people feel for WordPress, and the very real and practical limits of volunteer contribution,” said founding co-director Sé Reed.&nbsp;&nbsp;</p>\n\n\n\n<p>The WPCC’s first initiative is the <a href=\"https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812\">WPCC Accessibility Fellowship</a>. They are currently in discussion with an existing unsponsored core contributor to hold the inaugural role of Accessibility Fellow, and have launched the fundraising efforts to fund this Fellowship: <a href=\"https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812\">https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812</a></p>\n\n\n\n<p>To learn more or to get involved visit <a href=\"https://www.thewpcommunitycollective.com/\">thewpcommunitycollective.com</a></p>\n\n\n\n<h2 id=\"h-post-status-membership-deal-through-december-31\">Post Status Membership Deal through December 31!</h2>\n\n\n\n<p>In the spirit of Black Friday/Cyber Monday, Post Status is offering $100 off any annual membership through December 31. Why? Because we love you! Membership gets you into our Slack community, too!</p>\n\n\n\n<p>Use discount code BFCM for your best Post Status membership deal ever!</p>\n\n\n\n<h2 id=\"h-in-the-spotlight\">In the Spotlight</h2>\n\n\n\n<p>Post Status professional member, <a href=\"https://poststatus.com/member-spotlight-mark-andrew-nordstrom/\">Mark-Andrew Nordstrom</a>. Mark-Andrew is skateboarding across the world and through life, building WordPress websites at no charge, believing in open source everything. And that life should not be transactional.</p>\n\n\n\n<h2 id=\"h-weekly-member-huddles\">Weekly Member Huddles</h2>\n\n\n\n<p>No huddle for the week of December 25. We’ll be back in 2023.</p>\n\n\n\n<p>Wednesdays <a href=\"https://us02web.zoom.us/meeting/register/tZYuf-GrpjksH91MJiGiaIwzpHWzhWSgOrKL\">Sign Up</a></p>\n\n\n\n<h2 id=\"h-quick-links\">Quick Links:</h2>\n\n\n\n<ul>\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a> February 17-19, 2023</li>\n\n\n\n<li><a href=\"https://yoast.com/yoastcon/\">YoastCon</a> is back May 10 & 11</li>\n\n\n\n<li>Podcast: <a href=\"https://podcast.lifterlms.com/build-the-coaching-business/\">How to Build the Coaching Business that Lights You Up with Holly Chantal</a> on LMSCast</li>\n\n\n\n<li>Podcast: <a href=\"https://wpbuilds.com/2022/12/20/this-week-in-wordpress-235/\">This Week in WordPress</a> on WPBuilds</li>\n\n\n\n<li>WordCamps are back. <a href=\"https://central.wordcamp.org/schedule/\">Check the schedule online</a>!</li>\n</ul>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Dec 2022 19:37:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Michelle Frechette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Commercial and Community Categorization Is Live on WordPress.org Theme and Plugin Directories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140559\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/commercial-and-community-categorization-is-live-on-wordpress-org-theme-and-plugin-directories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3508:\"<p>One of Matt Mullenweg&#8217;s announcements at the <a href=\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\">2022 State of the Word</a> was the addition of new taxonomies for the theme and plugin directories that will help users more quickly ascertain the purpose of the extensions they are considering. </p>\n\n\n\n<p>With nearly 60,000 free plugins available and more than 10,000 free themes, it&#8217;s not always immediately evident which extensions are officially supported by the community and which have commercial upgrades and support available.</p>\n\n\n\n<p>The new &#8220;Community&#8221; and &#8220;Commercial&#8221; designations were created to demystify the selection process and empower users to find plugins and themes that suit their needs. They were <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">live on WordPress.org</a> last week and plugin and theme authors were invited to opt into the categorization. The categories are visible in the sidebar of the listings. </p>\n\n\n\n<p>In the example below, Akismet, Automattic&#8217;s commercial spam plugin that is bundled with WordPress, has the new Commercial category applied, indicating it is free but offers additional paid commercial upgrades or support. </p>\n\n\n\n<img />\n\n\n\n<p>The categories do not yet seem to be as widely applied to themes, but one example is all the default themes fall under the &#8220;Community Theme&#8221; designation, indicating that they are developed and supported by a community as opposed to being a part of a commercial endeavor.</p>\n\n\n\n<img />\n\n\n\n<p>There are currently just two categories, but meta contributor Samuel (Otto) Wood said this effort is &#8220;the start of a broader categorization of plugins and themes.&#8221; He outlined how plugin and theme authors can opt into the new categorization feature:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>To opt in a plugin or theme, email&nbsp;<a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a>, or&nbsp;<a href=\"mailto:themes@wordpress.org\">themes@wordpress.org</a>, and simply ask to opt into it. This is a manual process for now. In the future, we will be adding a method for plugins and themes to do it themselves.</p>\n\n\n\n<p>Once your plugin or theme is added, you will get a new feature (on the advanced tab for plugins, or at the bottom of the listing page for themes). For both cases, it’s a simple&nbsp;URL&nbsp;entry.</p>\n</blockquote>\n\n\n\n<p>For Commercial extensions the URL is a support link. Community extension URLs will be labeled as a contribute link.</p>\n\n\n\n<p>Several participants in the comments of the announcement suggested that commercial-tagged&nbsp;plugins and themes should also have the option to include a &#8220;contribute&#8221; link since they are open source software. Wood&#8217;s response seems to indicate the URL is more about where to direct support.</p>\n\n\n\n<p>&#8220;This is a matter of categorization,&#8221; he said. &#8220;Community plugins are those that are mainly supported by a community of users. Commercial plugins are those primarily supported by a commercial profit-seeking entity.&#8221;</p>\n\n\n\n<p>Once these categorizations are more widely adopted, it will be interesting to see if the theme and plugin directories will add the ability to filter search results using these tags. This would allow users to narrow down the results to be in line with their expectations for support. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Dec 2022 04:46:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140536\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4073:\"<p><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">Gutenberg 14.8</a> was released today with a major update to the Site Editor&#8217;s interface that makes it feel more unified as a design tool. </p>\n\n\n\n<p>In August, Gutenberg designer James Koster shared some mockups for <a href=\"https://wptavern.com/james-koster-shares-design-explorations-that-transform-wordpress-site-editor-into-a-more-visual-user-friendly-tool\">updating the Site Editor to include a “navigable frame”</a> where users can select from a menu of features and styles on the left. This was one answer to what Koster identified as unbalanced feature weighting, a critical design flaw that he said was negatively impacting users’ experience with the editor. </p>\n\n\n\n<p>In October, contributors began <a href=\"https://wptavern.com/gutenberg-contributors-explore-a-new-browse-mode-for-navigating-the-site-editor\">moving this idea forward</a>, and now the first iteration of the new &#8220;browse mode&#8221; is making its debut in Gutenberg 14.8. Automattic-sponsored contributor Ryan Welcher published a video demonstrating the new UI for navigating the Site Editor:</p>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">Gutenberg 14.8</a> release post\n\n\n\n<p>Version 14.8 also introduces Style Block, which is now nestled into the Global Styles panel. It offers a way to visualize how global style changes will affect blocks by previewing them (both core and third-party blocks) in a resizable panel. This is especially useful when a theme has many style variations that would otherwise be time intensive to save and then preview with various blocks. It helps users answer the question, &#8220;How are these styles going to look with my blocks?&#8221; Styles can also be <a href=\"https://github.com/WordPress/gutenberg/pull/45719\">previewed for individual blocks</a>.</p>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">Gutenberg 14.8</a> release post\n\n\n\n<p>Users who have been missing the Custom CSS panel from the Customizer will be delighted to know that Gutenberg 14.8 adds custom CSS to the <strong>Styles > Custom</strong> panel in the Site Editor. This first iteration is shipping as Experimental, so users who want to test it can enable &#8220;Global styles custom CSS&#8221; under the Gutenberg > Experiments menu in the admin.</p>\n\n\n\n<p>When checking out patterns in the inserter, hovering over a pattern will now reveal its title. The  invisibility of pattern titles <a href=\"https://github.com/WordPress/gutenberg/issues/45595\">becomes an issue when patterns are visually similar to one another</a> with slight variations. Having the title be visible helps users sort through and select the best pattern for their needs.</p>\n\n\n\n<img />\n\n\n\n<p>The Navigation block has several updates that should improve the experience of building and editing menus:</p>\n\n\n\n<ul>\n<li>Navigation block: Add page list to Link&nbsp;UI&nbsp;transforms in Nav block. (<a href=\"https://github.com/WordPress/gutenberg/pull/46426\">46426</a>)</li>\n\n\n\n<li>Navigation block: Add location-&gt;primary to fallback nav creation for classic menus. (<a href=\"https://github.com/WordPress/gutenberg/pull/45976\">45976</a>)</li>\n\n\n\n<li>Navigation block: Update fallback nav creation to the most recently created menu. (<a href=\"https://github.com/WordPress/gutenberg/pull/46286\">46286</a>)</li>\n\n\n\n<li>Navigation block: Add a ‘open list view’ button. (<a href=\"https://github.com/WordPress/gutenberg/pull/46335\">46335</a>)</li>\n\n\n\n<li>Navigation block: Removes the header from the navigation list view in the experiment. (<a href=\"https://github.com/WordPress/gutenberg/pull/46070\">46070</a>)</li>\n</ul>\n\n\n\n<p>Gutenberg 14.8 includes dozens of enhancements and bug fixes beyond these highlights. Check out the <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">release post</a> for the full changelog.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 23:59:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WordPress.org blog: WP Briefing: Episode 45: State of the Word Reflections\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14257:\"<p>In the forty-fifth episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy discusses highlights from this year&#8217;s State of the Word address. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">LearnWP</a><br /><a href=\"https://developer.wordpress.org/playground/demo/\">WordPress Playground</a><br /><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">ICYMI: State of the Word Recap</a><br /><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey!</a><br /><a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">Exploring WordPress Certifications</a><br /><a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit WordCamp Site</a><br /><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the 2023 Community Summit</a><br /><a href=\"https://wp20.wordpress.net/\">20th Anniversary&#8211; Stay Tuned for Updates</a><br /><a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Check Out Style Variations and the 2023 Theme</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14070\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39] </strong></p>\n\n\n\n<p>Last week, WordPress hosted its annual State of the Word. As usual, this was delivered by our project co-founder Matt Mullenweg and represented a year-long labor of love from the WordPress community as a whole. There are many things I love about State of the Word, but consistently the thing I love the most is being able to shine spotlights on the great work of our global network of contributors.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:02]&nbsp;</strong></p>\n\n\n\n<p>Since that presentation goes by at the speed of light, I wanted to highlight a few things as well. First things first, I wanted to highlight that we had nearly 1,400 contributors, and by nearly, I mean just one too few. We had 1,399 contributors. So that is a big deal in general, but it&#8217;s an especially big deal to me because that&#8217;s before we start looking at any contributions that aren&#8217;t specifically tied to a release.&nbsp;</p>\n\n\n\n<p>You may be wondering what those non-release contributions are. An incomplete list of those contributions would include organizing WordPress events, training others how to use WordPress, the myriad podcasts, articles, and newsletters that make up the WordPress media community, and any participant in a call for testing. Not to mention the unglamorous ways to contribute, like reviewing themes or reviewing plugins.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:58]&nbsp;</strong></p>\n\n\n\n<p>Things like patching security vulnerabilities and the bazillion things that Meta does to make sure that our community has all the tools that it needs to function. So I want to echo, once again, the huge, huge thanks that Matt already shared in State of the Word, and thank all of you for showing up for our project and for each other this way.</p>\n\n\n\n<p>The next thing I wanted to be sure to highlight was LearnWP. It was briefly noted that 12,000 learners had found their way to courses on learn.wordpress.org, and then during the Q&amp;A, there was a related question about certifications in WordPress.&nbsp;</p>\n\n\n\n<p>The need for certifications has been a regular topic in our project, and I mentioned that there are two different ongoing discussions at the moment. One of those discussions is happening directly on the make.wordpress.org/training site, so I&#8217;ll share a link in the show notes for that.</p>\n\n\n\n<p>But I&#8217;ve also been personally chatting on and off with Training team reps and other members of the community about what makes that so hard. In case you have not heard my whole spiel about what makes it difficult, it&#8217;s the logistics and our speed of iteration, and public perception.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:05] </strong></p>\n\n\n\n<p>So not exactly a small set of hurdles. I&#8217;ll be doing a more complete post on this in the New Year so that we can get some solid documentation of the state of things and not let it be lost forever in this podcast. But I do know that it is something that we are very interested in as a community and something that, historically, I have really been resistant to.</p>\n\n\n\n<p>Not because I think it&#8217;s a bad idea, but because as someone who&#8217;s looking out for our operations side of things and our logistics side of things, it is not clear how we&#8217;re gonna get that done. Like I said, in the New Year, keep an eye out for a big, big post that takes a look at the benefits versus the costs and everything that we can do to help make those match each other a bit better.</p>\n\n\n\n<p>And then the last thing I wanted to highlight was the WordPress Playground. Okay, so this was the last thing that Matt mentioned, and I want to be sure that it&#8217;s clear what&#8217;s going on with this project because when I first heard about it, I very nearly lept from my chair!&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]&nbsp;</strong></p>\n\n\n\n<p>It was such a remarkably big deal. Okay, so the WordPress Playground uses technological magic called ‘web assembly.’ I don&#8217;t know what it is, but it&#8217;s magic. And when I say magic, I mean that this tool makes it possible to run WordPress, an instance of WordPress, including a theme and a handful of plug-ins entirely inside your browser as a logged-in admin.</p>\n\n\n\n<p>You don&#8217;t need a server. You don&#8217;t need to select a host. You don&#8217;t need to download anything at all. You don&#8217;t need to know what your domain&#8217;s going to be. You simply select the theme you want to test. Add some dummy content and see how all of the posts and pages function as though we&#8217;re a real live WordPress site running on your favorite top-tier host.</p>\n\n\n\n<p>Then when you close the tab, it&#8217;s gone forever. Poof. Just like that. Now, this is a brand new project. It&#8217;s brand new to us and has a long way to go. So if working on that sounds cool, stop by the Meta Playground channel in the Making WordPress Slack.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:09]&nbsp;</strong></p>\n\n\n\n<p>But this, in my mind, changes the way that we stage sites.</p>\n\n\n\n<p>It could change the way we determine whether a theme or plugin is right for us. And arguably, it can become a stress-free way to introduce new or undecided users to WordPress’s admin area so that they can tell what they&#8217;re getting into. So when I say that this is a mind-blowing thing, and when I say that it is powered by magic, like it is astounding, it is astounding.</p>\n\n\n\n<p>And the applications for our users as a whole, I think, are untapped yet, and potentially even the applications for our learners and future learners of WordPress– equally untapped. I&#8217;m very excited to see what we can do with this project in the future. So stop by the Meta channel. Stop by Meta Playground.</p>\n\n\n\n<p>See what&#8217;s going on over there. We would love to have you.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>So those are my highlights of the day for State of the Word. Like I said, there are a few things I want to do more of a deep dive on in the text, so keep an eye out on make.wordpress.org/projects for most of those. But right now, let&#8217;s make some time for the small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]&nbsp;</strong></p>\n\n\n\n<p>Today I actually have kind of like a big list of big things. But I pretended it was small, so you didn&#8217;t turn off the podcast. So the first thing that I have is that in case you missed State of the Word, if you didn&#8217;t have a Watch Party to go to, or you didn&#8217;t know it was happening and so you didn&#8217;t really tune in at the time, I&#8217;m going to drop in a link of the recording.</p>\n\n\n\n<p>It&#8217;s gonna probably start right when everything gets going. And so you shouldn&#8217;t have to scrub through anything. If you end up on one of the recordings that includes like the whole live stream, there is jazz for the first 30 minutes, and just, you know, skip through that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00] </strong></p>\n\n\n\n<p>The second thing on my big list of big things is our annual community survey. So Matt mentioned this in State of the Word, and he pointed out that one of the things that makes WordPress and open source in general so effective is that we have a way to communicate with people who are using our software and we make every effort to be responsive to it.</p>\n\n\n\n<p>So the annual survey that we send out, it used to be quite big, and we&#8217;ve cut it down to 20 questions. If you want, you can think of it as like a census, so have your type of work and how long you&#8217;ve been working in WordPress, and what you wish to do with WordPress– have all those things be counted so we have a good idea of the type of person who&#8217;s currently using WordPress, and we can account for your needs and wants.</p>\n\n\n\n<p>But also, if you want to think of it more as an opportunity to share the things that were especially useful for you in the project this year or especially valuable for you as a contributor, this is also an excellent place to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:01]&nbsp;</strong></p>\n\n\n\n<p>There&#8217;s a QR code running around on the internet somewhere, but I&#8217;ll also put a link in the show notes. If you do not know where the show notes are, by the way, they are at wordpress.org/news/podcast, and you&#8217;ll be able to get to the survey.</p>\n\n\n\n<p>The third thing on my big list of big things is that next year we&#8217;re hosting a community summit. So if you&#8217;ve never been to a community summit, Matt mentioned that it is an opportunity for the best and most prolific contributors that we have to show up and discuss the things that are the biggest problems for the WordPress project right now.</p>\n\n\n\n<p>But we also want to make sure that we are making space for the voices that we know that we are missing from the community as well as contributors who look like they are probably excellent future stewards of this open source project that we are taking care of together. And so there is a whole website for that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:55]&nbsp;</strong></p>\n\n\n\n<p>I believe it&#8217;s communitysummit.wordcamp.org. Right now, there is a form up asking for topics that you want to be able to discuss while we are there, but it&#8217;s taking place, if I recall correctly, on August 22nd and 23rd of 2023.</p>\n\n\n\n<p>Number four on my big list of big things is that next year is WordPress&#8217;s 20th anniversary. So on May 27th of next year, WordPress will officially be 20 years old. So on our 10th birthday, anniversary rather, and our 15th anniversary, we pulled together some parties all across the world.&nbsp;</p>\n\n\n\n<p>We had some images, some logos, and things that were specific to the celebration that we printed into stickers and that folks put on, like, mugs and backpacks and cakes and stuff. So if you want to learn more about that, keep an eye out in the community channel in making WordPress Slack. They will keep you posted on how to one, find any of those logos and designs so that your local community can join in the celebrations.<br /></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:03]&nbsp;</strong></p>\n\n\n\n<p>But they will also help you learn how to have any sort of WordPress celebration party that we&#8217;re doing there in May of 2023.&nbsp;</p>\n\n\n\n<p>And then the final thing on my big list of big things, it was mentioned that on the 2023 theme that was shipped with a bunch of style variations and there was this really, I think, excellent illustrative video that <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> put together for us that shows that you can switch through style variations on a single theme and have a site that looks totally different.</p>\n\n\n\n<p>Now, that feels like that&#8217;s just a thing that should always have been in WordPress, but it is new this year. And so, if you have not yet had a chance to look at the 2023 theme, it is the default theme that shipped with 6.1. And so, if you have it on your website and just haven&#8217;t had a look at it yet, I encourage you to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00]</strong></p>\n\n\n\n<p>It&#8217;s a really interesting implementation that makes a single theme potentially look like an infinite number of other themes, and those style variations can be specific to the theme or can just kind of be around and about in the patterns that are also available in Core.&nbsp;</p>\n\n\n\n<p>Give that a look. I think it&#8217;s super worthwhile.</p>\n\n\n\n<p>And that, my friends, is your big list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in the New Year.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: ClassicPress at a Crossroads, Directors Consider Re-Forking WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/classicpress-at-a-crossroads-directors-consider-re-forking-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8012:\"<p>ClassicPress is <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/80\">polling its users</a> to determine the next step for the software. The project is a pared back fork of WordPress based on version 4.9 that uses the TinyMCE classic editor as the default option with no block editor. It&#8217;s run under a non-profit organization called the ClassicPress Initiative.</p>\n\n\n\n<p>In July 2022, the project <a href=\"https://wptavern.com/classicpress-on-the-rocks-directors-resign-new-leadership-installed\">appeared to be on the rocks</a> when its directors resigned, saying that the community felt they were now hindering the progress of ClassicPress. The organization was struggling to meet its required financial support but has since rallied and is in a more stable place after moving the donation process to <a href=\"https://opencollective.com/classicpress\">Open Collective</a>.</p>\n\n\n\n<p>In a recent forum post titled &#8220;<a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446\">The Future of ClassicPress</a>,&#8221; one of the project&#8217;s directors, Viktor Nagornyy, presented the community with two paths: re-fork ClassicPress using WordPress 6.0, or continue as-is. </p>\n\n\n\n<p>&#8220;Over the past few years, our core team has been working on improving ClassicPress and backporting features from WordPress,&#8221; Nagornyy said. &#8220;As WordPress continued to evolve, ClassicPress got a bit behind in adding new features as the focus became PHP 8+ compatibility.&#8221;</p>\n\n\n\n<p>An exploratory fork of WordPress 6.0 with the block editor removed exists in a GitHub repository called <a href=\"https://github.com/wp-cms/wp-cms\">WP-CMS</a>. It is not finished but could potentially become ClassicPress 2.0. This option has the benefit of helping the project catch up to WordPress and improve compatibility with more recent versions of PHP, and open up more plugins and themes for users that require 5.0+ in order to be compatible. The downside is that it will take months to complete with ClassicPress&#8217; limited number of contributors and ClassicPress 1.x would need to be maintained in terms of security for some time.</p>\n\n\n\n<p>The alternative is continuing to maintain the project as it is with no requirement to maintain separate versions. Nagornyy identified the cons of this approach:</p>\n\n\n\n<ul>\n<li>Our small core team will continue to focus on PHP compatibility</li>\n\n\n\n<li>Backporting from WP is prioritized, so new ClassicPress features might not happen</li>\n\n\n\n<li>We won’t be able to catch up with WordPress, functions/features will be missing</li>\n\n\n\n<li>Plugins/themes compatible with WordPress 5+ would be incompatible with ClassicPress</li>\n</ul>\n\n\n\n<p>The project is now at a crossroads considering the two options, which has forced the community to reexamine the purpose of ClassicPress. </p>\n\n\n\n<p>&#8220;So the real question is ClassicPress a Pre-Wordpress 5.0 or just WordPress without Gutenberg?&#8221; founding committee member Daniele Scasciafratte said.</p>\n\n\n\n<p>&#8220;Considering also that CP is based on a codebase of 5 years ago and the web is moving on, I think that we should move to Re-Fork and find a way to automatize it as much possible and simplify it.&#8221;</p>\n\n\n\n<p>ClassicPress core committer Álvaro Franz, who is also the author of the WP-CMS fork based on WP 6.0, <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/46\">said</a> he is unwilling to help with a continuation of the current version.</p>\n\n\n\n<p>&#8220;I don’t see the point in working on an outdated version of something that has already been improved by many great developers at WordPress (as stated by <a href=\"https://forums.classicpress.net/u/mte90\">@Mte90</a>, there have in fact been A LOT of improvements),&#8221; Franz said. &#8220;But I can take care of v2, since I already am the author of the mentioned fork, I can help with keeping WP-CMS up with WordPress and then using that as a base for CP v2.&#8221;</p>\n\n\n\n<p>WordPress core contributor Joy Reynolds <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/60\">commented</a> on the thread, indicating  that ClassicPress has a grim future ahead if it keeps struggling to backport all the improvements made after 4.9. She contends that continuing on the same path leads to a dead end, given the project&#8217;s small contributor base:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The whole point of backporting from WP is because they have thousands of developers, millions of users testing every combination of version and plugin and host to find problems (plus a testing team), a security team, and a performance team. CP has none of that and it’s kind of silly to not take advantage of their efforts. But the more things we ignore or fall behind on, the harder it is to backport anything.</p>\n\n\n\n<p>There are many things that continue to evolve, outside of WP, like PHP, Javascript, CSS, HTML, and various bundled tools (like jQuery and TinyMCE and PHPMailer and Simple Pie and Requests…).</p>\n\n\n\n<p>CP can’t stand still at 4.9. That’s dead. But if you tried to backport all the PHP8 stuff, you’d find it very difficult because of all the formatting changes they made, plus all the bug fixes, plus all the new features. The new fork bypasses the backport problem by taking it all at once and deleting the block stuff that is unwanted.</p>\n\n\n\n<p>I personally think that CP doesn’t have any features of value that WP doesn’t have. It has a bunch of fixes and a few features from WP, but it’s a dead end, especially with the limited roster of people who contribute code.</p>\n</blockquote>\n\n\n\n<p>In a contrasting comment, ClassicPress founding committee member Tim Kaye distilled why the poll seems to be so divisive.</p>\n\n\n\n<p>&#8220;If all that people want is WordPress without Gutenberg, there’s absolutely no need for ClassicPress at all since there’s already a plugin that provides what you’re looking for,&#8221; Kaye said. &#8220;It’s called <a href=\"http://wordpress.org/plugins/classic-editor-addon/\">Classic Editor</a>.</p>\n\n\n\n<p>&#8220;The idea that the question is whether CP should essentially mirror a stripped-down version of WP or not is therefore entirely misconceived. Those who desire that objective should be using that plugin. It’s really that simple.</p>\n\n\n\n<p>&#8220;CP (and the work that goes into it) only makes sense if it’s its own CMS with its own decision-making process and its own features.&#8221;</p>\n\n\n\n<p>Former ClassicPress contributor @ozfiddler, who likened working on the project to &#8220;polishing the brass on a rudderless ship,&#8221; <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/65\">suggested</a> ClassicPress identify a destination before choosing between two paths. </p>\n\n\n\n<p>&#8220;But then, that’s the problem with CP &#8211; it never really knew where it was going, beyond &#8216;WP-without-Gutenberg,\'&#8221; @ozfiddler said. &#8220;So, it means you get statements like this listed as a <em>con</em> for one of the options: &#8216;We won’t be able to catch up with WordPress.&#8217;</p>\n\n\n\n<p>&#8220;When I was contributing to CP I always thought that the ambitions greatly outweighed the available resources. I occasionally suggested a drastic pruning back of the project, but this was always met with widespread disapproval. I still think that if CP is going to survive at all (and I very much doubt it) then you will need to define a narrower subset of users and focus your limited efforts on catering to them.&#8221;</p>\n\n\n\n<p>ClassicPress&#8217; poll and the 80 comments in the discussion offer a glimpse into the frustrating reality of maintaining a fork of a fast-moving, large project like WordPress. So far there are 31 votes and Nagornyy plans to close it within the next few days if it doesn&#8217;t receive any new votes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 02:21:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Post Status: Annual Survey • WordPress Playground • Plugins/themes Categorization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146066\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://poststatus.com/annual-survey-wordpress-playground-plugins-themes-categorization/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16571:\"<h2 id=\"h-this-week-at-wordpress-org-december-19-2022\">This Week at WordPress.org (December 19, 2022)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What are the four freedoms of open source and how do they impact us? Get a look in the Celebration of the Four Freedoms of Open Source.  Try out the new WordPress Playground to run WordPress in the browser.  <strong>Plugin and Theme developers note the new categorizations: Canonical, Community, and Commercial. </strong> </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_adc852-65\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fe_alertTriangle\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Annual Survey, WordPress Playground, Plugins/themes Categorization, Four Freedoms</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6dd.png\" alt=\"🛝\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">Plugins/themes categorization</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/12/sotw-2022-a-celebration-of-the-four-freedoms-of-open-source/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\">The Month in WordPress – November 2022</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/sotw-2022-a-celebration-of-the-four-freedoms-of-open-source/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-25 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2022/12/16/accessibility-team-meeting-agenda-december-16-2022/\">Accessibility Team Meeting Agenda: December 16, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/12/20/community-team-reps-for-2023/\">Community Team Reps for 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/20/community-team-2022-goals-recap/\">Community Team 2022 Goals Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/19/diverse-speaker-training-group-wpdiversity-2022-year-end-report/\">Diverse Speaker Training Group (#WPDiversity) 2022 Year-End Report</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">Report: #WPDiversity Inclusion and Diverse Speaker Workshops October and November 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/16/twitter-links-on-wordcamp-websites/\">Twitter links on WordCamp websites</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/core-team-reps-for-2023-and-beyond/\">Introducing new Core Team Reps for 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/help-us-test-the-sqlite-implementation/\">Help us test the SQLite implementation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/19/a-week-in-core-december-19-2022/\">Two Weeks in Core – December 19, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/21/editor-chat-summary-wednesday-december-14-2022/\">Editor chat summary: Wednesday, December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/dev-chat-agenda-december-21-2022/\">Dev chat agenda, December 21, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-dev-blog\"><a href=\"https://developer.wordpress.org/news/\">Dev Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2022/12/20/building-a-book-review-grid-with-a-query-loop-block-variation/\">Building a book review grid with a Query Loop block variation</a></li>\n</ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2022/12/19/design-share-dec-5-dec-16/\">Design Share: Dec 5–Dec 16</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/12/documentation-team-update-december-12-2022/\">Documentation Team Update – December 12, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2022/12/15/voting-for-hosting-team-reps-2023/\">Voting for Hosting Team Reps 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/19/notes-global-marketing-team-meeting-december-14-2022/\">Notes: Global Marketing Team meeting, December 14, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">Refreshing&nbsp;the WordPress Showcase</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2022/12/20/community-meeting-recap-20-december-2022/\">Community Meeting Recap (20 December 2022)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/performance-team-meeting-summary-20-december-2022/\">Performance Chat Summary: 20 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">Polyglots Monthly Newsletter: December 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/20/weekly-polyglots-chat-dec-21-2022-1300-utc/\">Weekly Polyglots Chat – Dec. 21, 2022 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/20/agenda-trac-triage-session-dec-21-2022-900-utc/\">Agenda: Trac triage session – Dec. 21, 2022 (9:00 UTC)</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">Plugins/themes categorization</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/19/plugin-review-team-19-december-2022/\">Plugin Review Team: 19 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2022/12/17/week-in-test-16-december-2022/\">Week in Test: 16 December 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">FSE Program Testing Call #19: Running Through Refinements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/test-team-update-12-december-2022/\">Test Team Update: 12 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/themes-team-update-december-13-2022/\">Themes team update December 13, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/21/december-2022-faculty-meeting/\">December 2022 Faculty Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/19/meeting-agenda-for-december-20-2022/\">Meeting Agenda for December 20, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/17/training-team-meeting-recap-for-december-13-2022/\">Training Team Meeting Recap for December 13, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">A Developers Guide to Block Themes – Part 2</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account-2\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=learn-wordpress-end-of-year-social\">Learn WordPress end-of-year social</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-creating-a-photography-website-with-the-block-editor\">APAC: Creating a photography website with the block editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-photography-website-with-the-block-editor\">Creating a photography website with the block editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-patterns-reusable-blocks-and-block-locking\">APAC: Patterns, reusable blocks and block locking</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=patterns-reusable-blocks-and-block-locking\">Patterns, reusable blocks and block locking</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-make-custom-templates-in-the-site-editor-2\">Let’s make custom templates in the Site Editor!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-make-custom-templates-in-the-site-editor\">Let’s make custom templates in the Site Editor!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%B5%E3%82%A4%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BF%E3%83%BC%E3%81%A7%E3%81%AE%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%AB%E6%85%A3%E3%82%8C%E3%82%88-2\">サイトエディターでのテンプレート編集に慣れよう！</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%B5%E3%82%A4%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BF%E3%83%BC%E3%81%A7%E3%81%AE%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%AB%E6%85%A3%E3%82%8C%E3%82%88\">サイトエディターでのテンプレート編集に慣れよう！</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/manage-your-block-theme-fonts-with-create-block-theme/\">Manage your block theme fonts with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/the-key-to-locking-blocks/\">The Key to Locking Blocks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/templates/\">Using Page Templates</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">Streamline your Block Theme development with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/trabalhando-com-estilos-globais/\">Trabalhando com estilos globais</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/padding-versus-margin/\">Padding Versus Margin</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://getcomposer.org/changelog/2.5.0\">Composer 2.5 released</a></li>\n\n\n\n<li><a href=\"https://tek.phparch.com/\">Registration open for PHP Tek</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 16:47:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: #56 – Chris Badgett on Using WordPress for Online Courses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=140510\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/podcast/56-chris-badgett-on-using-wordpress-for-online-courses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52906:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how to use WordPress as an education platform.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m very keen to hear from, and hopefully get you or your idea featured on the show. Head over to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Chris Badgett. Chris is behind LifterLMS, which is a learning management system built as a WordPress plugin. He&#8217;s been in the WordPress space since 2008, and has moved his agency away from general website building to concentrate upon e-learning membership sites, course creation and marketing automation.</p>\n\n\n\n<p>He&#8217;s on the podcast today to talk about how WordPress and e-learning are a good fit. Although there&#8217;s a flourishing SaaS side to e-learning, Chris is convinced that WordPress allows you to make your LMS site exactly what you want. You won&#8217;t be facing the limitations imposed upon you by the platform. And can, if you have the time and skills, modify almost anything to suit your brand and niche.</p>\n\n\n\n<p>We begin by talking through how well a WordPress based LMS site can scale. Should your course be a runaway success, you want to be aware of how you&#8217;re going to have to manage the resources that your site will need. There&#8217;s a lot of dynamic content being displayed to your users, and this will affect the tech stack that you&#8217;ll need to deploy.</p>\n\n\n\n<p>We then get into a broad conversation about how online courses have taken off in the last few years. Even before global lockdowns, individuals and businesses were adopting online courses in innovative ways, to educate their customers, staff, and the wider public. Chris&#8217;s data points to the fact that this growth seems set to continue.</p>\n\n\n\n<p>There&#8217;s a real understanding now that in many niches, the course curriculum needs to be adapted and amended continually. This is extremely easy to do with an LMS. You create new content, click publish, and notify your users that the new material is there.</p>\n\n\n\n<p>We also discuss the reality of actually making a course. Like writing a book, the idea of creating a course is easy to conceive, but hard to execute. There&#8217;s the content, the branding, the marketing, the updates, and much more. Chris has some advice to help you get over the bumps in the road if you&#8217;ve decided that you want to dip your feet into online course creation.</p>\n\n\n\n<p>It&#8217;s an interesting podcast and digs into yet another area where WordPress can help people thrive online.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading over to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Chris Badgett.</p>\n\n\n\n<p>I am joined on the podcast today by Chris Badgett. Hello Chris.</p>\n\n\n\n<p>[00:04:16] <strong>Chris Badgett:</strong> Hey, Nathan. Great to be here.</p>\n\n\n\n<p>[00:04:17] <strong>Nathan Wrigley:</strong> Yeah, thank you for joining me. Chris and I have been in touch with one another over many years, but it was very nice in the WordCamp US, which was recently something that I attended to find Chris there. Very nice to meet you in person.</p>\n\n\n\n<p>[00:04:29] <strong>Chris Badgett:</strong> That was great.</p>\n\n\n\n<p>[00:04:30] <strong>Nathan Wrigley:</strong> Chris is on the podcast today. He&#8217;s going to be talking to us about e-learning or LMSs, all of the different ways that you can do that with a WordPress website. But if you don&#8217;t know Chris, you&#8217;re about to find out why he&#8217;s an expert in this and why he&#8217;s got the chops to be talking about it.</p>\n\n\n\n<p>Chris, would you just spend a moment or two orientating our listeners, giving them an idea of, a, your relationship with WordPress. We&#8217;re on a WordPress podcast after all, but also why you are somebody who is an expert in e-learning.</p>\n\n\n\n<p>[00:05:00] <strong>Chris Badgett:</strong> Absolutely. So I&#8217;ve been at WordPress since 2008. Around that time I started blogging. I was actually living in Alaska. I used to run sled dogs up there, and I started on the side building WordPress sites for myself and then later for clients, and I kind of accidentally started an agency. And fast forward the timeline a little bit, I started blogging about some courses that I was creating because I was trying to create some more passive income for my family, my newborn kids and everything.</p>\n\n\n\n<p>I started blogging about how I did that with WordPress, and this is back in 2000 and 11 or so. Over time I built an agency to about 17 people. People started responding to all my, my blogs on building an LMS website, creating online courses with WordPress. A lot of my blogs, nothing ever happened, but I clearly struck a nerve and the market was interested in this information.</p>\n\n\n\n<p>Our agency started focusing on that. Those are the kind of clients we attracted. And ultimately the clients wanted this perfect e-learning membership site, course creation, marketing automation tool that didn&#8217;t exist. So we built that in 2013 and that was the origin of Lifter LMS. Which is one of the leading learning management systems for WordPress. So I&#8217;ve been a course creator. I&#8217;ve been an agency guy, and I&#8217;ve been in this niche for about a decade here.</p>\n\n\n\n<p>[00:06:25] <strong>Nathan Wrigley:</strong> Nice. When you initially launched, it sounds like it was held together by sticky tape. You were literally making it up as you went along. This is the first iteration where you were designing it. How did that go? Were you just cobbling together a bunch of disparate plugins and figuring it all out piece by piece?</p>\n\n\n\n<p>[00:06:42] <strong>Chris Badgett:</strong> I would say one of my talents as an entrepreneur is team building, and I&#8217;ve had some really talented developers with me from the agency side. And because I was so close to our ideal customer, as a product guy, working from first principles. We took one of our developers, his name was Mark, off of client work, and gave him a spec to build. He built the first version of Lifter LMS in about 60 days from scratch.</p>\n\n\n\n<p>No cobbling together anything. And then we launched it to the world, for a closed beta period. Opened it for a week. We got 42 customers in that week. We said if we didn&#8217;t get a hundred that we would shut it down and go back to agency work, but I&#8217;m kind of stubborn. So we, uh, we kept going and continued to develop Lifter LMS. I&#8217;m very much as an entrepreneur where the customers kind of pull the product out of you.</p>\n\n\n\n<p>I&#8217;m not trying to push product on the market. So I&#8217;m a really good listener. I&#8217;m a big community guy. I&#8217;m also decent at filtering and focusing and weaving my own vision in with what the market wants. So that&#8217;s how Lifter started.</p>\n\n\n\n<p>[00:07:47] <strong>Nathan Wrigley:</strong> Yeah. That&#8217;s really interesting. The WordPress space is obviously full of websites, different things you can do with it, e-commerce, LMSs, you name it. The truth is as well that there&#8217;s a really thriving SaaS side to LMSs. So I&#8217;m just curious if you could give us, being that we&#8217;re on a WordPress podcast, if you could give us a bunch of different reasons why WordPress is a really great fit for an LMS. I mean, obviously we&#8217;re not trying to disparage the SaaS products out there. There&#8217;s going to be a whole bunch of reasons, I&#8217;m sure, why WordPress might be top of your list.</p>\n\n\n\n<p>[00:08:22] <strong>Chris Badgett:</strong> Yeah. And, and this, I&#8217;ll go back to the voice of the customer here. You know, there&#8217;s some great platforms out there, SaaS solutions like Kajabi, Teachable, Thinkific, Podia, there&#8217;s many others. In the early days, a lot of people were putting stuff on course and marketplaces like Udemy. Udemy as an example started enforcing pricing controls where you can only charge up to $50 for your course.</p>\n\n\n\n<p>That upset a lot of people. The SaaS solutions tend to look pretty cookie cutter. So people that really want to build like a unique brand and design get the longing to go to WordPress where they have unlimited brand and design flexibility. And then it&#8217;s really just a functionality thing.</p>\n\n\n\n<p>One of my customers who switched from one of the SaaS solutions, described it this way. He said that the SaaS that he was in, they were trying to conform him to it, like as a course creator and entrepreneur. But over here in WordPress he&#8217;s in the driver&#8217;s seat of what his vision is for his online learning platform.</p>\n\n\n\n<p>He&#8217;s not being put in a box. So that&#8217;s kind of the simple way to say it. Brand flexibility and just this whole ownership and control aspect. Because when you build a site like this, you&#8217;re not just building a brochure, you&#8217;re literally building a business asset. So to have more control over that is something that&#8217;s really important to a lot of people.</p>\n\n\n\n<p>[00:09:37] <strong>Nathan Wrigley:</strong> Yeah, I guess the same could be true in just about every sphere of WordPress, where there&#8217;s commercial rivals that are SaaS products. The customizability. The fact that you can make it your own and do whatever you like with it, given the time and development. Yeah, that&#8217;s the perfect answer really, isn&#8217;t it?</p>\n\n\n\n<p>Does WordPress scale well with LMSs? And what I mean by that is if we took a inexpensive hosting package and we dropped WordPress into that, and then we install one of the LMSs. It&#8217;s doing a lot of work. There&#8217;s a whole bunch of different things going on, and we can get into that a little bit later. Needless to say, there&#8217;s lots and lots of things happening. Are there constraints around the hosting and the tech stack that you need behind WordPress? Or does it actually function pretty well even on modest resources?</p>\n\n\n\n<p>[00:10:25] <strong>Chris Badgett:</strong> Well, not all plugins are created equal. Something like a WooCommerce, or one of the WordPress LMS plugins are, quote, heavier. They require a lot more resources. We have a lot of dynamic content, We have a lot of user interactions. So as platforms themselves, like a platform plugin, they require a lot of resources.</p>\n\n\n\n<p>That being said, performance is something we focused on and, I think the industry in general has to pay attention to because as your customers become more and more successful and get more and more users, the last thing you want to have happen is for your tool to start malfunctioning or cause the site to slow down or whatever.</p>\n\n\n\n<p>The reality is, yeah, you can start with the cheap, low end of the market hosting and you&#8217;re completely fine. When you start getting above like a thousand users, you need to start looking at bigger plans. We actually have a list on our website of the six options that we recommend. But, we have customers that have 50,000. There&#8217;s one person on there, because we have some telemetry data tracking that people opt into, where we collect just non-identifiable information just to see what people are doing.</p>\n\n\n\n<p>I&#8217;ve seen people with 800,000 users in just massive sites. At the end of the day, we work to create a performant plugin and we continually focus on performance. We actually work with hosting companies to improve performance together, which is awesome. There&#8217;s some great hosts out there that take a keen interest in that. Because they themselves as hosts are looking to attract high quality customers, which LMS websites can be, when they&#8217;re successful.</p>\n\n\n\n<p>When you do get into large concurrent users or you&#8217;re doing something really at scale, you are going to be spending a lot more on hosting. That&#8217;s just part of the game. But if you design your business model correctly for your school or your academy, or your membership site, whatever you call it. If you&#8217;re hosting bill jumps up from $30 a month to a hundred dollars a month, you&#8217;re fine. It&#8217;s just the real estate tax for your online business. And if it, even if it jumps up higher than that, you&#8217;re having a ton of people move through your platform and it&#8217;s, it&#8217;s just a cost of doing business.</p>\n\n\n\n<p>[00:12:35] <strong>Nathan Wrigley:</strong> Let&#8217;s just move sort of sideways, away from the tech and possibly away from WordPress just for a moment, and talk about the kind of people who may be interested in this. I&#8217;m imagining just like everybody, there&#8217;s a whole bunch of people who, if you like, they have the New Year&#8217;s resolution. want to do a course. I want to launch a course. I&#8217;ve got this area of expertise and I want the world to know about it. The world will be a better place after I&#8217;ve launched my course.</p>\n\n\n\n<p>And I imagine there&#8217;s quite a high attrition rate, where people have that and then they&#8217;re confronted with the reality of what&#8217;s actually involved. And the course doesn&#8217;t get launched. So just give us some broad outlines of the concerns and considerations you would put in front of people just to say, Okay, if you really are serious about this, bear these things in mind, because I imagine there&#8217;s quite a lot.</p>\n\n\n\n<p>[00:13:25] <strong>Chris Badgett:</strong> Yeah. I kind of think of us as having two markets. One is the WordPress professional who builds sites for clients and stuff like that. And the other is what I call the expert industry. And there&#8217;s other niches within e-learning besides the expert, which we also have, but, for that person who wants to take their knowledge, skills, and life experience and turn that into a product through an online course. I think this is not a new story, it&#8217;s an old story. I don&#8217;t know if you, Nathan, or anybody out there listening has ever had a vision of writing a book one day.</p>\n\n\n\n<p>[00:13:56] <strong>Nathan Wrigley:</strong> Oh yeah.</p>\n\n\n\n<p>[00:13:56] <strong>Chris Badgett:</strong> I have. It&#8217;s that same story. I haven&#8217;t written a book. I don&#8217;t know if you wrote your book Nathan?</p>\n\n\n\n<p>[00:14:01] <strong>Nathan Wrigley:</strong> Failed.</p>\n\n\n\n<p>[00:14:02] <strong>Chris Badgett:</strong> It&#8217;s the same thing, and I would argue, it&#8217;s almost a little harder for courses and stuff than a book, because a book is typing and words. With courses, you got to figure out the website. You start working with video and audio and instructional design and curriculum. All the stuff, it&#8217;s a lot. Really if I look across the patterns of the people that make it, there&#8217;s several things to mention here. One of &#8216;them, which I can go into more detail later, but just to drop it now, is you have to have a baseline of competency across five areas, either within yourself or your team, for it to even work at all.</p>\n\n\n\n<p>And so this is the fundamental thing. I call it the five hats problem. So you have to wear five hats. One is you actually have to have expertise. Two is you have to be an entrepreneur, which includes starting a business, marketing, all that stuff. You have to be a teacher. The ability to not just know something, but help somebody else learn it. You have to be a community builder, before the sale and then after the sale. And then you have to be a driver of technology and be able to use hardware and software and stuff.</p>\n\n\n\n<p>So just know what you&#8217;re getting into. So that&#8217;s one. Number two. The people that really make it, take consistent forward action even though it&#8217;s imperfect. What stops a lot of people in this industry is imposter syndrome, and the people that make it literally ship the course, even if it&#8217;s not perfect, even if the videos aren&#8217;t perfect, even if they&#8217;re unsure of their self worth or whatever, they ship it. and then they make it better over time.</p>\n\n\n\n<p>And then the third thing that&#8217;s really important, I&#8217;ll stop at three points because these are kind of the three biggest that I&#8217;m giving you here, is that a lot of people get really focused on the concept of making money online or building an online business or working from home. And these are all good things and I&#8217;m all for all those things. But they&#8217;re very self focussed. The people that really make it out there, kind of have a service mindset that drives their business. They focus on a particular niche, and they make it about impact and serving others.</p>\n\n\n\n<p>And through all that, they make a lot of money and they build the online business and they work from wherever in the world. But when you flip that script, from a priority standpoint to be like, you know what, I&#8217;m going to focus on this person and help this person be successful. Quick example. One of our customers, Angela Brown, I watched her go from like zero to like 200,000 person YouTube channel teaching house cleaners how to start and grow their businesses. And she&#8217;s hugely successful now.</p>\n\n\n\n<p>She&#8217;s really famous in that niche. And, basically she just was targeting people that were just starting out trying to run a cleaning company with cleaning supplies in the trunk of their car, and helping them become professionals. And through all that, she&#8217;s made a bunch of money and everything, but she&#8217;s given everything to her industry and she&#8217;s really focused on helping her core customer.</p>\n\n\n\n<p>[00:16:57] <strong>Nathan Wrigley:</strong> That&#8217;s a really fascinating story actually. I&#8217;m really taken by that. I do like the, the story of the underdog. That&#8217;s brilliant. So let&#8217;s go back to your five hats, of which I think you mentioned the first three. There&#8217;s a lot in there, isn&#8217;t there? There really is a lot in there. You mentioned expertise, entrepreneurship. The fact that you&#8217;ve got to be a teacher, an educator. Got to build a community. And then you&#8217;ve got to be somebody who&#8217;s presumably on some level, you described it as a driver of tech, but basically a geek.</p>\n\n\n\n<p>Would you say that if you don&#8217;t satisfy all of those things, you are kind of asking for trouble? I mean, let&#8217;s say for example that I&#8217;m not particularly good at tech. Presumably there are some of these things which you can farm out? You could hire somebody to do the tech for you and so on. But the other ones really do feel like, that&#8217;s got to be a part of your core being, your soul if you like.</p>\n\n\n\n<p>[00:17:44] <strong>Chris Badgett:</strong> It really depends on the person. I kind of think of it as like a personality type matrix. And by the way, I mentioned one of our major customer set is people who build these kind of sites for clients. So a lot of people are not trying to do this all themselves. They partner with a WordPress professional to be the tech person to actually build the site.</p>\n\n\n\n<p>So that&#8217;s a common one that, an expert, especially a really established expert who&#8217;s not in a technical field, maybe it&#8217;s a yoga instructor or some kind of cooking thing or parenting thing. We see a lot of people just partnering with a WordPress professional, I&#8217;ll say that.</p>\n\n\n\n<p>When it comes to the entrepreneurship piece, I call our ideal customer an education entrepreneur. They&#8217;re both driven by teaching some subject matter, but also being an entrepreneur, which literally is somebody who creates value out of nothing and gets it out into the world by their sheer will.</p>\n\n\n\n<p>It&#8217;s one thing to be a teacher. It&#8217;s one thing to be an entrepreneur. Not all entrepreneurs want to be teachers. Not all teachers want to be entrepreneurs. But when you have both together, that&#8217;s kind of the core that you can&#8217;t really outsource. You can hire in pieces of the entrepreneurship, I see people hire marketers to help with content, or ads, or taxes and things like that. But at its core, for someone to be successful in this endeavor, there&#8217;s that overlapping of the teacher entrepreneur in one. It&#8217;s kind of a common thread.</p>\n\n\n\n<p>[00:19:10] <strong>Nathan Wrigley:</strong> Okay, so let&#8217;s imagine that I want to do a course. I&#8217;ve got this area of expertise. Let&#8217;s imagine that I&#8217;m a, I don&#8217;t know, fabulous guitarist or something like that. And I want to spread the word, and teach people how to play the guitar successfully and enjoy it.</p>\n\n\n\n<p>Talk to me about the process that you would advise somebody like me to go through. In order to get this thing off the ground, because the first thing I&#8217;m going to do is not shoot myself a video of me playing the guitar. That may be quite high on the list, but I&#8217;m imagining there&#8217;s a whole bucket load of other things that need to be done, in terms of market research, and branding, and coming up with the structure of the course and so on.</p>\n\n\n\n<p>So, just run us through a typical, different in every case I&#8217;m sure, but a typical way of mapping out the journey from just the idea, just saying you&#8217;re going to do it, to finally having all of the bits and pieces so that you are ready to do it.</p>\n\n\n\n<p>[00:20:05] <strong>Chris Badgett:</strong> You know, I&#8217;ve seen so much failure or just slow progress on this question here that I&#8217;ve created a system to help people figure this all out. I call it the five day course plan challenge, it&#8217;s on our website. But basically what happens on those five days. My whole point is give me an hour, for five days in a row and then you&#8217;re going to be ready to actually approach this.</p>\n\n\n\n<p>So on day one we get into a lot of the inner game stuff like your purpose and your vision. Getting some of the mindset stuff straight. Day two, we get into designing your ideal customer avatar. So for you, who are we teaching? Are we teaching other guitar teachers? Are we teaching kids? Are we teaching a specialized style of guitar. Nicheing and doing the avatar work is super important. Then there&#8217;s the actual, this is the fundamental thing that the entrepreneur does, which is, the core of what entrepreneurs do is they create an offer, right?</p>\n\n\n\n<p>An iPhone is an offer. A Tesla car is a offer. A WordCamp as an example, there&#8217;s like a promise there. And what a lot of course creators and coaches and things like that do, is they get really focused on their mechanism, which for your example, is a guitar playing. Okay, that&#8217;s a mechanism. But what is the offer? I have a whole thing where I teach about how to develop this, but basically what it boils down to is, I help X person achieve X result through my mechanism. Offer construction is the key, and if you don&#8217;t nail that, everything else will be inefficient or potentially fail.</p>\n\n\n\n<p>Once you have your offer on the next day, I give people, because a lot of experts have no training in how to be a teacher or a coach. So I have some training in instructional design after a decade in this space of like how to think about chunking down your skills and your, what you want to teach, and the result your avatar wants, into an actual framework that has a high likelihood of actually working. So I help people become instructional designers.</p>\n\n\n\n<p>And then the last step, that sometimes people overlook, is it&#8217;s not just about content. You want to design some kind of success system. So if you look at like a popular online course that you can buy, that you hear ads for all the time called Masterclass. This is like $15 a month and you can learn comedy from Steve Martin, and all this stuff from all these famous people, but it&#8217;s only $15 a month. The reason why those courses from the best in the world are so cheap is because they lack any kind of support or connection with the creator.</p>\n\n\n\n<p>So when you design a success system, and I have a whole system of how to think about that and map it to your personality style and preferences, but it could include things like group coaching, email access, office hours, phone support, live events in person. When you combine that success element, and not think of your product as not just organized content, that&#8217;s when you really create a winning course. So my advice to you, Nathan the guitar teacher, is to go through that pre-work of those five steps I just laid out.</p>\n\n\n\n<p>[00:23:16] <strong>Nathan Wrigley:</strong> I should probably learn to play the guitar first.</p>\n\n\n\n<p>[00:23:19] <strong>Chris Badgett:</strong> That too. Hey, expertise is one of the five hats. So if you don&#8217;t have it. You know, sometimes people see a business opportunity. Maybe I&#8217;ll teach people how to trade crypto or whatever. But they see the opportunity, but they lack the expertise. But that&#8217;s still possible, by the way. One of my first courses was in organic gardening and permaculture.</p>\n\n\n\n<p>And I had all the hats except for the expert. My wife was skilled at this, but, I actually went out into the world and found some of the best people in the world. I flew to Costa Rica and traveled to a bunch of places, and I was filming these people doing permaculture design workshops in the jungle or in different places.</p>\n\n\n\n<p>And so I went and I got an expert, right? And I was taking an industry that was predominantly offline. I was trying to get it online because I could see how many people on YouTube were looking for this information and everything. So, you don&#8217;t have to have the expertise, is what I&#8217;m saying. Nathan, you can go find you a guitar player, you guys partner, and you can make it happen.</p>\n\n\n\n<p>[00:24:18] <strong>Nathan Wrigley:</strong> You were talking earlier about writing a book, and how so many people have this thought and it never happens. I&#8217;m sure that there&#8217;s quite a few people who get halfway through a book and then it never gets across the finish line. They&#8217;ve written the first 25,000 words and it&#8217;s all going great, and then for some reason the atrophy sets in and the word processor never comes out again and it just tails off and gets forgotten about. I&#8217;m sure the same is true of courses, you know, people they decide that they&#8217;re going to set up some kind of LMS.</p>\n\n\n\n<p>They&#8217;ve thought through carefully all of the bits and pieces, but at some point the project gets derailed. And I&#8217;m wondering if, as somebody in this space whose job it is, not only to sell an LMS, but obviously to coach people around how to do that. Are there communities of like-minded LMS-ers, if you like, who can help you through this bit?</p>\n\n\n\n<p>In other words, if you, if you hit a roadblock, if you find yourself getting distracted and you never get it across the finish line. Are there mechanisms in place, communities, online or otherwise of people who can help you, support you, try to get you through the bit that you&#8217;re stuck on?.</p>\n\n\n\n<p>[00:25:26] <strong>Chris Badgett:</strong> Yeah, a hundred percent. I have a podcast called LMSCast, and we&#8217;re about 400 episodes deep. And part of the reason I created that podcast is I wanted to interview people, not just about the tech and WordPress, but around all these other challenges that people face around the five hats, and things like instructional design and marketing and community building and all this.</p>\n\n\n\n<p>So, that&#8217;s a resource, but there&#8217;s also a lot of great Facebook groups, as an example out there. The whole course creator, entrepreneur thing is definitely a niche. Coaching. Some people kind of use different words around the space. You&#8217;ll hear course creator, I&#8217;m a coach, I have a membership site, I have a paid community.</p>\n\n\n\n<p>You can do all those things and kind of mix and match whichever variables you want in your online learning platform. But there&#8217;s definitely communities and content around these types of people. And you can find the ones that resonate with you. What we find here in WordPress, or just in software in general, is that sometimes people buy the tool before they&#8217;re ready, right?</p>\n\n\n\n<p>It&#8217;s one of the reasons why I&#8217;ve made that five day challenge course for people to be more ready for the tool, and not just the tool, but for the business. And there&#8217;s a lot of people out there who teach around course creation. You just have to be careful though, because there is a lot of over promise snake oil stuff about how easy it is and, you know, follow these easy steps and all this stuff.</p>\n\n\n\n<p>It&#8217;s a big commitment. If you&#8217;re going to create a course, it&#8217;s not easy, I&#8217;m just being honest with you. Just like writing a book is not easy. And starting a business, especially if you don&#8217;t already have an online platform or website and e-commerce system and everything. It&#8217;s going to take a little bit of time.</p>\n\n\n\n<p>There&#8217;s a lot of people on this journey. The online industry is booming. People becoming entrepreneurs and wanting to be entrepreneurs and want to work remotely and digitally and be digital nomads and all this stuff, it&#8217;s all booming. It is an emerging trend, and you can find others on the same path.</p>\n\n\n\n<p>[00:27:22] <strong>Nathan Wrigley:</strong> Yeah, it strikes me that it could be quite a lonely journey being a course creator, because if you&#8217;re doing it by yourself, you may struggle to make those connections, so it&#8217;s nice to hear that there are different communities and groups out there which will help you through that. Yeah, that&#8217;s great.</p>\n\n\n\n<p>In terms of LMSs and all of that, the technology behind it all. I don&#8217;t know how to phrase this question because it brings up Covid, but during the last few years Covid happened. And I&#8217;m guessing, I have no data to back this up, it just is a thought in my head, that online courses became more of a thing.</p>\n\n\n\n<p>More people creating them. More people consuming them. And whilst nobody wants to celebrate Covid, it might be interesting to get into that conversation about whether or not that was in fact the case. Did people swell to LMSs and were there more courses being put out and consumed? And also, what&#8217;s the trend since the world has gone a little bit more back to normal? Since we&#8217;ve been able to go back to in-person events? Has it declined or has it kept its growth?</p>\n\n\n\n<p>[00:28:28] <strong>Chris Badgett:</strong> There was a huge boom that I could say from our company, in terms of new users, new customers due to Covid. And also just to talk about a little more, there&#8217;s some different flavors to it. Yes, there&#8217;s some people that want a side income or a full-time income from home now, that wanted to become course creators or coaches and they needed an LMS. But we also saw a big influx of trainers, people that would go places and train people at a company, or they would deliver some kind of event thing from the stage, and now they want to package it inside of a LMS in a course format. They literally had to, to keep their businesses going.</p>\n\n\n\n<p>So there was a lot of, there was a lot of both those aspiring entrepreneurs, but also just trainers and events and regular schools. A big, small, traditional alternative, whatever, that we&#8217;re trying to figure this all out. Yeah, it caused a huge boom in the industry, and I guess it&#8217;s been, I don&#8217;t know, has it been almost three years now? Something like that. The initial parabolic rise, if you will, has slowed, but the industry continues to grow, from what I can see.</p>\n\n\n\n<p>So, that caused a big spike, but we&#8217;re seeing the industry just continue to grow. And also new, if you look broadly across the online learning SaaS space and the online community SaaS platforms, and the Zoom alternatives and everything, like the whole industry is just continuing to expand.</p>\n\n\n\n<p>[00:30:00] <strong>Nathan Wrigley:</strong> Yeah, I think there&#8217;s something which I can identify in my life at least anyway. Before the last five years, shall we say, I was probably far less willing to enroll in courses just because, I hadn&#8217;t really done it before. It was still a new thing. Much more likely now, personally, to do that because I now see this as a really legitimate thing. People now have the expertise to do it. There&#8217;s platforms like yours which enable them to do it. And it, it is no longer the thing held together by sticky tape. It can be a really professional enterprise, even just a one person enterprise can do it really professionally, given the arrangement of tools that are out there now.</p>\n\n\n\n<p>And now people can download all sorts of clever software, which will enable the video editing process to be slightly more painless, if you know what I mean. And you can download software which enables you to do the marketing side of things and all of this kind of stuff. What I&#8217;m basically trying to say is, I feel that it&#8217;s become part of the landscape now. Online courses is now a thing, and it feels like it&#8217;s a thing that&#8217;s here for good.</p>\n\n\n\n<p>[00:31:02] <strong>Chris Badgett:</strong> It is, and I&#8217;ll just throw a few more trends kind of on top that are happening. One is the transition from just in case, to just in time education. So what I mean by that is, you know, if we go to college and we get a degree, we learn a lot of stuff just in case we might need it or whatever.</p>\n\n\n\n<p>And I&#8217;m a fan of college. I&#8217;m not bashing college, but just in time education, as our world has become more complex and dynamic, and the rapid changing of things for example, um, if you need to learn how to use a new software tool or, you know, you go to YouTube the tech training at universities and community colleges has a hard time keeping up with just independent, online learning platforms for fast changing and emerging technologies, just as an example. So, just in time education.</p>\n\n\n\n<p>The other trend that&#8217;s happening is called micro learning, and that&#8217;s where it gets really important to chunk down your content so that it&#8217;s as effective and efficient as possible, without wasting time. So, back in the earlier days of the online course industry, it was all about, I&#8217;m speaking to the expert, entrepreneur kind of subject matter expert courses. It was all about how much stuff you could cram in the membership site. Like, okay, we got 200 hours of videos, 500 PDFs, all these bonuses. The trend we have now is people don&#8217;t have time for that. So, it&#8217;s got to be good. It&#8217;s it&#8217;s got to work.</p>\n\n\n\n<p>People will be forgiving on production quality to a degree, like video, audio, whatever PDFs you&#8217;re doing, if you&#8217;re doing that. But the best stuff is like, super targeted, super efficient, very clear offer. There&#8217;s just so much opportunity out there in the world. Anytime I see a friction point in anything, that could be a course. And if you&#8217;re going to, if you as an entrepreneur, are going to jump on that friction point, make it as frictionless as possible for the person to achieve the result.</p>\n\n\n\n<p>[00:33:02] <strong>Nathan Wrigley:</strong> I really hadn&#8217;t thought about the just in time piece, and that makes so much sense. Especially when you think about the landscape of the industry that we are in, technology, specifically WordPress. Things are changing all the time. And something that you may have wished to learn last year might now be completely obsolete.</p>\n\n\n\n<p>There really is no rival than the internet for that. Online based learning can be updated now, this second, and I will immediately receive the fruits of all of those changes. Yeah, that&#8217;s really remarkable. I hadn&#8217;t really made the connection there.</p>\n\n\n\n<p>[00:33:35] <strong>Chris Badgett:</strong> And just a quick marketing insight on that too, is if you&#8217;re going to do it, this is why doing the avatar work and stuff is so important, because once you get into this, it&#8217;s going to be a long road, and it&#8217;s not always going to be easy. But my best advice is if once you decide who you&#8217;re going to help, and who that avatar is, and what you&#8217;re going to teach, I would build the course business and a YouTube channel in parallel, because, just in time education, a lot of it happens on YouTube, where people go.</p>\n\n\n\n<p>I of course want to see people helping people for free on YouTube, from my perspective, across all these tens of thousands of course creators is, YouTube is a really strong marketing channel to get people, you on their radar and then them into your marketing funnel.</p>\n\n\n\n<p>[00:34:20] <strong>Nathan Wrigley:</strong> This leads me to another thought, and it wasn&#8217;t necessarily where I wanted to go, but I&#8217;m going to ask this anyway. If I was a course creator and something seismic happened that meant that my course needed to be amended, adapted, maybe something extra needs to be added. What do we do with that?</p>\n\n\n\n<p>Because it feels almost like a course is a package, it&#8217;s a parcel. It&#8217;s finished. I&#8217;m handing it over, I&#8217;ve put it in the LMS, and there it is. That&#8217;s the thing. But presumably there has to be modifications made. Let&#8217;s say for example something in WordPress suddenly, let&#8217;s say there&#8217;s a virus which goes around and we need to disseminate the news about that quickly. Just a silly example.</p>\n\n\n\n<p>I would need to put that into the course somewhere. What would the advice be about amendments? Do you normally ask people to substitute one video for another in place, or do you say, Look, add extra content? How does that amending on the fly, nature of online learning go?</p>\n\n\n\n<p>[00:35:15] <strong>Chris Badgett:</strong> Well, there&#8217;s lots of options. It rolls back to the business model. So you can sell a course that has lifetime access, and then in that case you just update the content or add the additional resource. But if you&#8217;re selling a course that has a monthly recurring cost to it, and this is where the success systems come into play too.</p>\n\n\n\n<p>The easiest way to add recurring revenue to a course, the lowest friction way for you to do it, is to once a month do a one hour ask me anything office hours, right. Now you have recurring value. It&#8217;s time boxed to just that hour. And you can help people in ways that they decide to stay and you continually get recurring revenue.</p>\n\n\n\n<p>So if we have a model like that, you need another reason to stay on the subscription is to get the updated content when it comes out. And then a third option, there&#8217;s more, but I&#8217;m trying to give you the basics, is, there&#8217;s this concept of cohort based courses. So we&#8217;re doing this one in the spring, this one in the summer. They&#8217;re kind of separate and they just go with that time period. It is all just thinking through the time, the finances, the business model, what you&#8217;re willing to commit to as well in terms of updating content. Like one of our great customers, Sean Heskith from WP101, one of the largest, I think it might be the largest WordPress education site on the internet. He&#8217;s constantly updating his course content when new versions of WordPress come out and stuff. And he is super professional with it. So he is constantly polishing the asset, if you will.</p>\n\n\n\n<p>And then I&#8217;ll just throw one more concept out there. Which is that there&#8217;s these two personality types. One, I call the serial course creator. They] just, they create a membership site and they create a course in November, then they launch a new course in December, and a new course in January, and they just keep adding new courses. The old stuff never really gets updated.</p>\n\n\n\n<p>We have a guy who teaches people how to tie animal balloons. And he makes six figures with his courses. He&#8217;s got, they&#8217;re like child entertainer and magician type people is his avatar. It&#8217;s called Balloon Artist College. It&#8217;s awesome. But he&#8217;s got like 200 courses on there or something like that at this point. But then there&#8217;s the other entrepreneur, kind of like Sean with his WordPress 101 course, that they&#8217;re just continually just updating the course, right?</p>\n\n\n\n<p>One of the old school, like internet marketer guys that I followed back in the day, his name&#8217;s Jeff Walker. He has a course called Product Launch Formula that I think I first saw in 2007, 2008. He still launches it twice a year or once a year. Same course. He just keeps polishing it every year. But every time he launches it, I believe it&#8217;s a new product. So different ways to tackle that.</p>\n\n\n\n<p>[00:38:03] <strong>Nathan Wrigley:</strong> It occurs to me that so far we&#8217;ve spoken as if the target audience of the course is individuals. So, you&#8217;re trying to sell out there into the market. You&#8217;ve put a website together and you&#8217;re trying to encourage people, individuals to sign up. But, I&#8217;m wondering if there&#8217;s different audiences out there for your courses, or should I say different ways of implementing them?</p>\n\n\n\n<p>So, for example, you might go after an entire business and offer a hundred seats at your course, or maybe you would just be implementing it as something to train your employees. There doesn&#8217;t have to be an audience of people who are willing to pay. An LMS might just be the perfect way of training your employees. So essentially, I&#8217;m just opening up the conversation to alternative uses of LMSs rather than, okay, I have a course, I&#8217;m going to sell it to a bunch of individuals, one at a time.</p>\n\n\n\n<p>[00:38:53] <strong>Chris Badgett:</strong> Yeah. At Lifter LMS we have a groups feature where you can do exactly what you described. Where you offer the training into a school or a business and a certain number of seats. And the leader at that place can keep tabs on the analytics and reporting for their students that they invite into the platform.</p>\n\n\n\n<p>That&#8217;s absolutely possible. I highly recommend that too. If you can figure that out in your business model, because it can create a serious amount of revenue when you can do deals at scale like that. Doing it for internal training, we do that at Lifter LMS as an example. We have a site that&#8217;s protected from the outside world, where we have all our customer success, marketing, sales, product, operational, like processes and stuff documented.</p>\n\n\n\n<p>We use our own tool to train our people, as new people come in and so on. I&#8217;ve seen people get really creative with it, and I&#8217;m thinking of a guy who uses it for tutors. The tutor licenses the course, but then the uses that content with their students up on a screen in the classroom and stuff.</p>\n\n\n\n<p>So there&#8217;s all kinds of ways to do it. I saw one guy run like a pay per view sporting event through Lifter LMS. You know, people get really creative. WordPress, what you can put inside the membership site, it&#8217;s up to you. A course creates structured content. Some people will use it like a course to just hold, like a webinar vault, like a library kind of thing. So there&#8217;s lots of different ways to use it.</p>\n\n\n\n<p>[00:40:20] <strong>Nathan Wrigley:</strong> Yeah, and it goes back to what you said right at the beginning about WordPress. Maybe that&#8217;s one of the reasons why a WordPress solution is so desirable, is that you really can take it in whichever way you like.</p>\n\n\n\n<p>I have just a couple of final questions, if that&#8217;s all right. It occurs to me that the listenership to this podcast, not everybody is going to be shouting, I want to make a course. But they may be saying, I have a web design business, and it occurs to me that, well maybe maybe selling courses could become a part of my revenue. Is there a niche out there? Is it a successful niche? Does it even exist of web designers implementing LMSs?</p>\n\n\n\n<p>[00:41:02] <strong>Chris Badgett:</strong> Absolutely. yeah, I mean, literally half of our customers, the people that buy the tool are freelancers and agencies, right? So it&#8217;s a split market. And then you have the DIY, do it yourself expert, or maybe that expert just buys the tool and then they hire somebody. So, a lot of people in this space are working with a WordPress professional to make it happen.</p>\n\n\n\n<p>We&#8217;ve known that for a very long time. So we created this experts program where we, it&#8217;s not like a paid thing, we&#8217;re not trying to monetize it. We just constantly get asked for like, hey, do you know anybody that can help me build this site? Or, who do you recommend? So we built a list of people that have experience with Lifter.</p>\n\n\n\n<p>It kind of happened to me as an example. Early on, I had this agency, people just needed all this stuff for their, their online learning business. It&#8217;s a great niche to focus on. They&#8217;re great customers. They often have recurring needs. The site build is complex, from a standpoint that it&#8217;s, it&#8217;s just not static pages and it&#8217;s incredibly valuable, which helps with your pricing as an agency owner.</p>\n\n\n\n<p>And these people often need ongoing work or they want to have like a tech person aside the business, in case they ever need anything, or they have a new idea they want to implement, stuff like that. So it&#8217;s a great, it&#8217;s a great niche if you&#8217;re looking to diversify into it. And I&#8217;ll also say that a lot of times, I&#8217;ve seen a lot of people who are WordPress professionals, and they implement for a client, and then once they see how it all works, possibly see their client make a bunch of money or whatever, then they&#8217;re like, you know what, I&#8217;m going to, I&#8217;m going to launch a course.</p>\n\n\n\n<p>So, uh, there&#8217;s a lot of that, that goes on when you really fall in. When you fall in love with the niche, it&#8217;s hard not to start releasing some courses yourself. And as a WordPress professional, one of the things I know from my agency days is that sometimes it&#8217;s a little frustrating or slow to train a client on how to use the website. So as part of your handoff, if you create like a course that they can then stop, rewind, play seven times to get it or whatever, and then make that as part of your handoff package. That can actually add a lot of value and save a lot of time on your end just to kind of use that course in that way.</p>\n\n\n\n<p>Another counterintuitive way we use courses at Lifter is for marketing. We have several free courses, but particularly this one that teaches, quick start course, that teaches you how to use the 5% of the tool that gives you 80% of the value.</p>\n\n\n\n<p>So with that one course, it lets people that are curious about the product, in about 40 minutes, see how it works, see what it does, to see if it&#8217;s a fit for their requirements. While simultaneously acting as an onboarding, at your own pace, at your own time resource. So super effective in that way. So using courses for marketing and customer success is also another counterintuitive way to, to do them.</p>\n\n\n\n<p>[00:43:58] <strong>Nathan Wrigley:</strong> It strikes me that the more that you do this, the less impediments there would be. So, it may be that you launch your guitar course and it&#8217;s not a runaway success, but there are takeaways there. You know, you&#8217;ve learned how to use an LMS. You&#8217;ve learned how to do some video editing. You&#8217;ve made some mistakes in your email campaigns, and all of those things, and the next time around there&#8217;s probably going to be a little bit less friction. So, I guess one of the messages that you would have for people is, if it doesn&#8217;t work first time, if at first you don&#8217;t succeed, try, try again.</p>\n\n\n\n<p>[00:44:29] <strong>Chris Badgett:</strong> Yeah, just like anything. Learning is what makes us human, right? So when we double down on like a business model or a tool or a business, failure is just feedback. That&#8217;s why that trait we see in our successful community members, whether they&#8217;re a WordPress professional or more of a subject matter expert, is that consistent, imperfect action moving forward with an open mind That&#8217;s the through line through the people that find the best success.</p>\n\n\n\n<p>[00:44:56] <strong>Nathan Wrigley:</strong> If people want to reach out to you, Chris, if they&#8217;ve been inspired by what you&#8217;ve said and they want to just get a little bit more advice, personal advice, maybe one to one or something, are you available? And if so, where&#8217;s the best place to find you, or best places?</p>\n\n\n\n<p>[00:45:10] <strong>Chris Badgett:</strong> I am available. I&#8217;m a big community guy. Community building&#8217;s always been important to me. You can easily find me on Twitter @ChrisBadgett. And then also in our Facebook group. It&#8217;s another great place to reach out. So if you just do a search for Lifter LMS, courses, WordPress, you&#8217;ll find our Facebook group, and that&#8217;s a great place to connect as well.</p>\n\n\n\n<p>[00:45:30] <strong>Nathan Wrigley:</strong> Chris Badgett, thanks for joining me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:45:34] <strong>Chris Badgett:</strong> Thanks for having me, Nathan.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/chrisbadgett\">Chris Badgett</a>.</p>\n\n\n\n<p>Chris is behind <a href=\"https://lifterlms.com/\">LifterLMS</a>, which is a learning management system built as a WordPress plugin. He’s been in the WordPress space since 2008, and has moved his agency away from general website building to concentrating upon e-learning membership sites, course creation and marketing automation.</p>\n\n\n\n<p>He’s on the podcast today to talk about how WordPress and e-learning are a good fit. Although there’s a flourishing SaaS side to e-learning, Chris is convinced that WordPress allows you to make your LMS site exactly what you want. You won’t be facing the limitations imposed upon you by the platform, and can, if you have the time and skills, modify almost anything to suit your brand and niche.</p>\n\n\n\n<p>We begin by talking through how well a WordPress based LMS site can scale. Should your course be a runaway success, you want to be aware of how you’re going to have to manage the resources that your site will need. There’s a lot of dynamic content being displayed to your users, and this will affect the tech stack that you’ll need to deploy.</p>\n\n\n\n<p>We then get into a broad conversation about how online courses have taken off in the last few years. Even before global lockdowns, individuals and businesses were adopting online courses in innovative ways to educate their customers, staff, and the wider public. Chris’ data points to the fact that this growth seems set to continue. There’s a real understanding now that in many niches, the course curriculum needs to be adapted and amended continually. This is extremely easy to do with an LMS. You create new content, click publish and notify your users that the new material is there.</p>\n\n\n\n<p>We also discuss the reality of actually making a course. Like the writing of a book, the idea of creating a course is easy to conceive, but hard to execute. There’s the content, the branding, the marketing, the updates and much more. Chris has some advice to help you get over the bumps in the road if you’ve decided that you want to dip your feet into online course creation.</p>\n\n\n\n<p>It’s an interesting podcast and digs into yet another area where WordPress can help people thrive online.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://lifterlms.com/\">LifterLMS website</a></p>\n\n\n\n<p><a href=\"https://www.facebook.com/groups/lifterlmsvip\">LifterLMS Facebook Group</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"HeroPress: Manifesting Our Life – Manifestare la nostra vita\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=4981\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://heropress.com/essays/manifesting-our-life/#utm_source=rss&utm_medium=rss&utm_campaign=manifesting-our-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20223:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2022/12/122022-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I joined the most dedicated and inspiring community I have ever met: the WordPress community.\" />\n<p><a href=\"https://heropress.com/feed/#italian\">Questo saggio è disponibile anche in italiano.</a></p>\n\n\n\nHere is Isotta reading her own story aloud.\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Every morning from Monday to Friday, when I open up my laptop to start my working day, I smile. Every single day. Multiple times per week, I take a moment to acknowledge the gratitude I feel for living my dream life. I&#8217;ve always been an optimistic person, and in the last few years, I&#8217;ve also become very aware of the beauty of my life, but there is a date that pivoted everything. January 17th, 2022, is the day I joined Automattic to become a sponsored full-time contributor to the WordPress community.</p>\n\n\n\n<h3 id=\"h-let-s-rewind-it-a-little-bit\">Let&#8217;s rewind it a little bit!&nbsp;</h3>\n\n\n\n<p>I was born in a middle-class family in Savona, a small city on the North-west coast of Italy. I had a marvelous and carefree childhood in a caring and fun family that gave me more love and support than I could have asked for. Everyone would always encourage me to follow my dreams, and I&#8217;d rarely receive a NO to my requests. Nevertheless, Savona is a small city, and in the 90s, the people who set an example for me pursued careers that had nothing to do with the digital world; there were butchers, warehouse supervisors, and local business secretaries. I remember how cool my mother looked when she spoke English, as no one else in the family could speak any foreign language! I carried this admiration with me when I started wondering about learning languages and being able to travel the world and engage in conversations with people from different places, cultures, and backgrounds. Fortunately, there was the perfect academic path to follow my dream. Studying translation and interpreting at Genoa University. I specialized in Spanish and French, and took a job in Madrid that brought me to live in Spain, France, Morocco. It got to travel to different headquarters far away from home, including India. I learned so much during those years and met good friends who are still in my life.</p>\n\n\n\n<p>Unfortunately, that company&#8217;s values didn&#8217;t align with mine, and brought them to terminate my contract in 2018. This unfair and immoral dismissal is the first of a list of blessings in disguise that happened in my life since then! For the first time, I could decide what my future job would be, instead of passively accepting a position because of the fear of remaining unemployed. I&#8217;ve always loved cooking. Cooking with others was my favorite way to become closer to new people and friends, learn from their culture, and share mine. I hadn&#8217;t really thought that this could be a profession, until my wife encouraged me to explore this possibility to create the workspace that aligns with my values and help me pursue my mission.</p>\n\n\n\n<p>We founded Eatsperience Madrid to welcome in our home people from different backgrounds and create a community of open-minded and caring people who shared a passion, wanted to learn and share their skills, and were welcoming to each other. Andrea (my wife) and I were living far from our families, so we decided to offer a space to rediscover those family moments where people gather together to cook, eat, and share quality time. What a wonderful period! We hosted dinners, cooking classes, culinary events up to 5 days per week and met people from all around the world. Andrea was still working full-time for a marketing agency, and I would be working for the culinary business countless hours a day. We were so tired, whenever we weren&#8217;t working, we were sleeping. 2020 was going to be the year when Eatsperience finally would start making money, I had been hired to cook at international fairs and to private events, and we had our own events booked for the entire year. Of course, March 2020 put an end to all of it.&nbsp;</p>\n\n\n\n<p>I immediately switched online and offered virtual cooking classes for individuals, private groups, and remote teams. It was tough to pivot and try to save everything in those uncertain times, while Andrea was dealing with uncertainty at her working place as well. From our career&#8217;s standpoint, it was another blessing well disguised at first.&nbsp;</p>\n\n\n\n<h3 id=\"h-meeting-wordpress\">Meeting WordPress</h3>\n\n\n\n<p>We had our WordPress website built by a professional in 2019, but now I had to revamp the site entirely according to the new business&#8217; needs. With the help of an online business manager, we understood the new path we wanted Eatsperience to take, and I got closer to WordPress. We built the online shop on WooCommerce, I learned how to update and customize it, and I fell in love with email automation. I didn&#8217;t realize that there was a huge community behind it, though. Now I wonder if, in 2020, online events showed up in the WP dashboard, but I was too absorbed in learning and worrying about my business to see them. I would land in the forums sometimes, but I didn&#8217;t understand the terminology used in questions and answers, so I got scared and decided to not engage with it.</p>\n\n\n\n<h3 id=\"h-the-turning-point\">The turning point</h3>\n\n\n\n<p>2020 made us realize that life is too short to live out of worryings, focus on our frustrations, and compromise for jobs and people who don&#8217;t make us happy. So, Andrea and I decided we&#8217;d keep pursuing our dream of working remotely. At the beginning of 2021, Andrea enrolled in a learning program to become a frontend web developer while I focused on consolidating my online business. Nevertheless, the universe had another plan for me, but I still didn&#8217;t know! Alongside Eatsperience Madrid, since 2019 I have been managing an online community, and in 2021 I followed the advice of formalizing those skills I gained as a community manager. I studied and got the Facebook community manager certification because.. why not? For me, it&#8217;s always worth it to keep learning and have a &#8220;piece of paper&#8221; to certify your skills.</p>\n\n\n\n<p>By the summer of 2021 it was clear that Eatsperience Madrid couldn&#8217;t survive. Sales dropped since 2020, I had invested all my unemployed fund, and Andrea started to suffer of strong panic attacks. She had been working full-time, studying every evening and saturday, and supported me for the past 2 years. I needed to change that situation and be the one to provide for the family instead. I discontinued Eatsperience, it was like dealing with a loss in a certain way, but this was the third blessing in disguise. I wrote down the list of the characteristics that I wanted for my next company and job, and started applying to full-time positions in remote companies. A few days later, I joined the hiring process for a company that looked perfect to me but when I arrived to the last of many steps, I got rejected. Another defeat, another hidden blessing.&nbsp;</p>\n\n\n\n<p>During those same days, the turning point. A friend sent me the link for a position at an American remote company called Automattic, which I didn&#8217;t know about. They seemed to be looking for someone with my skills to donate to a non-profit project. Their values seemed perfectly aligned with mine, so I applied and got into the hiring process. The more I learned about the company, the open-source world, and the WordPress community, the more I felt I belonged to it.</p>\n\n\n\n<p>Well, my feeling was right! I found a place where people are heard, valued, and respected. I found teammates who uphold and support me. And I joined the most dedicated and inspiring community I have ever met: the WordPress community. Thanks to all WordPressers around the world, I learn something new every day, and I grow by watching them shape their world to make it a better place for everyone and the generations to come. I feel lucky and thankful for having the privilege to dedicate my entire week to such a meaningful, fun, and inspiring mission! I feel proud to be a WordPress contributor myself.</p>\n\n\n\n<h3 id=\"h-living-the-life-that-we-want\">Living the life that we want</h3>\n\n\n\n<p>Since I joined the community in January 2022, I&#8217;ve participated in the impact that we have on our ecosystem as individuals and a community. I gained new technical knowledge and new soft skills. I grew as a professional and as a human being. I&#8217;ve supported my wife while she left her company, became a front-end developer, and is looking for her first job in this industry. We can travel and visit our families, and I can work from everywhere. I&#8217;ve never been happier. I&#8217;ve spent many moments manifesting what I truly wanted for my life, and it has always come true, even if it means going through some defeats first.&nbsp;</p>\n\n\n\n<p>I hope that my story reaches those who haven&#8217;t yet experienced the power of manifestation, of stating what they want and being truthful to their hopes and values. I believe in abundance and I believe that we attract what we feel. So let&#8217;s open up to our desires, connect with people, do some good, and live our best lives!&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p></p>\n\n\n\n<h1 id=\"italian\" class=\"kt-adv-heading_39bac8-8e wp-block-kadence-advancedheading\">Manifestare la nostra vita</h1>\n\n\n\nEcco Isotta che legge ad alta voce la sua storia.\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Ogni mattina, da lunedì a venerdì, quando apro il mio portatile per iniziare la mia giornata lavorativa, sorrido. Ogni giorno. Più volte alla settimana, mi prendo un momento per riconoscere la gratitudine che provo per star vivendo la vita dei miei sogni. Sono sempre stata una persona ottimista e negli ultimi anni sono anche diventata molto consapevole della bellezza della mia vita, ma c&#8217;è una data che ha cambiato tutto. Il 17 gennaio 2022 è il giorno in cui mi sono unita ad Automattic per contribuire full-time alla comunità di WordPress.</p>\n\n\n\n<h3>Facciamo un salto indietro!&nbsp;</h3>\n\n\n\n<p>Sono nata in una famiglia di classe media a Savona, una piccola città sulla costa nord-occidentale dell&#8217;Italia. Ho avuto un&#8217;infanzia meravigliosa e spensierata in una famiglia dolce e divertente che mi ha dato più amore e sostegno di quanto avrei potuto chiedere. Tutti mi hanno sempre incoraggiata a seguire i miei sogni e raramente ho ricevuto un NO alle mie richieste. Tuttavia, Savona è una piccola città e negli anni &#8217;90 le persone che rappresentavano un esempio per me avevano intrapreso carriere che non avevano nulla a che fare con il mondo digitale: c&#8217;erano macellai, magazzinieri e segretari di aziende locali. Ricordo che mia madre sembrava fighissima quando parlava inglese, nessun altro in famiglia sapeva parlare una lingua straniera! Questo sentimento di ammirazione mi accompagnava quando ho iniziato a desiderare di imparare lingue straniere e di poter viaggiare per il mondo, per poter parlare con persone provenienti da posti, culture e contesti diversi. Fortunatamente, c&#8217;era il percorso accademico perfetto. Studiare traduzione e interpretariato all&#8217;Università di Genova. Mi sono specializzata in spagnolo e francese e ho accettato un lavoro a Madrid che mi ha permesso di vivere in Spagna, Francia e Marocco. Ho avuto modo di viaggiare in diversi uffici, tra cui in India. Ho imparato tanto in quegli anni e ho incontrato buoni amici che sono ancora nella mia vita.</p>\n\n\n\n<p>Purtroppo, i valori di quell&#8217;azienda non erano allineati con i miei e nel 2018 sono stata licenziata. Questo licenziamento ingiusto e immorale è il primo di una lista di quelle che chiamo benedizioni mascherate che mi sono capitate da quel momento in poi! Per la prima volta, ho potuto decidere quale sarebbe stato il mio prossimo lavoro, invece di accettare passivamente una posizione per la paura di rimanere disoccupata.&nbsp;</p>\n\n\n\n<p>Ho sempre amato cucinare. Cucinare con gli altri era il mio modo preferito per avvicinarmi a nuove persone e amici, imparare dalla loro cultura e condividere la mia. Ma non avevo mai pensato che questa potesse essere una professione, finché mia moglie non mi ha incoraggiata a esplorare questa possibilità per creare uno spazio di lavoro che fosse in linea con i miei valori e mi aiutasse a seguire la mia missione.</p>\n\n\n\n<p>Abbiamo fondato Eatsperience Madrid per accogliere nella nostra casa persone provenienti da contesti diversi e creare una comunità di persone dalla mentalità aperta, e interessate a altri esseri umani, che condividessero una passione, volessero imparare l’un l’altro condividendo le proprie competenze. Io e Andrea (mia moglie) vivevamo lontane dalle nostre famiglie, così abbiamo deciso di ricreare quei momenti familiari in cui ci si riunisce per cucinare, mangiare e condividere del tempo di qualità e offrirli nella nostra casa a chiunque volesse partecipare. È stato un periodo meraviglioso! Organizzavamo cene, corsi di cucina, ed eventi culinari fino a 5 giorni a settimana e conoscevmo persone provenienti da tutto il mondo. Andrea lavorava ancora a tempo pieno per un&#8217;agenzia di marketing e io lavoravo per il nostro business innumerevoli ore al giorno. Eravamo stanchissime: ogni momento in cui non lavoravamo, dormivamo. Il 2020 sarebbe stato l&#8217;anno in cui Eatsperience avrebbe finalmente iniziato a prosperare. Ero stata ingaggiata per cucinare a fiere internazionali ed eventi privati, e avevamo i nostri eventi prenotati per tutto l&#8217;anno. Ovviamente, il mese di marzo del 2020 ha messo fine a tutto ciò.&nbsp;</p>\n\n\n\n<p>Siamo passate immediatamente all&#8217;online e ho iniziato ad offrire eventi di cucina virtuali per singoli, gruppi privati e team remoti. È stato duro cambiare tutto e cercare di salvare l’attività in quei tempi incerti, mentre anche Andrea affrontava momenti di incertezza nel suo posto di lavoro. Dal punto di vista della nostra carriera, è stata un&#8217;altra benedizione inizialmente ben mascherata.</p>\n\n\n\n<h3>L&#8217;incontro con WordPress</h3>\n\n\n\n<p>Nel 2019 ci eravamo affidate a un professionista che aveva creato il nostro sito web su WordPress, ma ora dovevo rinnovarlo completamente in base alle esigenze della nuova attività. Con l&#8217;aiuto di una online business manager, abbiamo capito il nuovo percorso che volevamo far intraprendere a Eatsperience e mi sono avvicinata io stessa a WordPress. Abbiamo costruito il negozio online con WooCommerce, ho imparato ad aggiornarlo e personalizzarlo e mi sono appassionata alle automatizzazioni di e-mail. Non avevo però capito che c&#8217;era un&#8217;enorme comunità alle spalle. Ora mi chiedo se, nel 2020, gli eventi online apparissero nella dashboard di WP, ma io fossi troppo occupata ad imparare ad usare quel nuovo strumento, e dalle preoccupazioni per la mia attività, per vederli. A volte entravo nei forum, ma non capivo la terminologia usata nelle domande e nelle risposte, quindi mi spaventavo e decidevo di cercare le soluzioni di cui avevo bisogno altrove.</p>\n\n\n\n<h3>La svolta</h3>\n\n\n\n<p>Il 2020 ci ha fatto capire che la vita è troppo breve per vivere di preoccupazioni, per pensare solo alle nostre frustrazioni e scendere a compromessi per lavori e persone che non ci rendono felici. Così, Andrea e io abbiamo deciso di continuare a inseguire il nostro sogno di lavorare da casa. All&#8217;inizio del 2021, Andrea si è iscritta a un corso per diventare uno frontend developer, mentre io mi concentravo sul consolidare la mia attività online. Tuttavia, l&#8217;universo aveva degli altri piani per me, ma non lo sapevo ancora! Oltre a Eatsperience Madrid, dal 2019 mi occupo di una comunità online e nel 2021 ho seguito un ottimo consiglio di un’amica e ho formalizzato le competenze acquisite come community manager. Ho studiato duro e passato l’esame per ottenere la certificazione di Facebook community manager perché&#8230; perché no? Per me vale sempre la pena continuare a imparare e avere un &#8220;pezzo di carta&#8221; che certifichi le mie competenze non nuoce mai.</p>\n\n\n\n<p>Poi, nell&#8217;estate del 2021 era diventato chiaro che Eatsperience Madrid non poteva sopravvivere. Le vendite erano calate dal 2020, io avevo investito tutto il mio fondo di disoccupazione e Andrea aveva iniziato a soffrire di forti attacchi di panico. Lavorava a tempo pieno, studiava tutte le sere e i sabati, e mi aveva sostenuta negli ultimi due anni. Dovevo cambiare la situazione e prendermi cura io della famiglia. Così ho chiuso Eatsperience, ed è stato un po’ come affrontare un lutto, ma questa era la terza benedizione arrivata sotto mentite spoglie.&nbsp;</p>\n\n\n\n<p>Ho fatto un elenco delle caratteristiche che volevo per la mia prossima azienda e il mio prossimo lavoro e ho iniziato a fare domanda per posizioni a tempo pieno in aziende che lavorano in remoto. Pochi giorni dopo, ho iniziato un processo di selezione per un&#8217;azienda che sembrava perfetta, ma quando sono arrivata all&#8217;ultima delle tante fasi, sono stata respinta. Un&#8217;altra sconfitta, un&#8217;altra benedizione nascosta.&nbsp;</p>\n\n\n\n<p>In quegli stessi giorni, la svolta. Un’amica mi aveva inviato il link di una posizione presso un&#8217;azienda americana chiamata Automattic, che lavorava in remoto e che io non conoscevo. Sembrava che stessero cercando qualcuno con le mie competenze da donare a un progetto senza scopo di lucro. I loro valori sembravano perfettamente in linea con i miei, così mi sono candidata e ho iniziato il processo di selezione. Più cose conoscevo dell&#8217;azienda, del mondo open-source e della comunità di WordPress, più sentivo di aver trovato la mia realtà.</p>\n\n\n\n<p>Quella sensazione era giusta! Ho trovato un posto in cui le persone sono ascoltate e rispettate. Ho trovato colleghe e colleghi che mi apprezzano e mi appoggiano. E sono entrata a far parte della comunità più potente e motivatrice che abbia mai conosciuto: la comunità di WordPress. Grazie a tutti e tutte le WordPressers del mondo, ogni giorno imparo qualcosa di nuovo e cresco osservandoli mentre plasmano le loro città per renderle un posto migliore per noi e per le generazioni a venire. Mi sento fortunata e grata di avere il privilegio di dedicare il mio tempo a una missione così importante, divertente e stimolante! Sono orgogliosa di contribuire al progetto open source, e di far parte della comunità di WordPress.</p>\n\n\n\n<h3>Vivere la vita che vogliamo</h3>\n\n\n\n<p>Da quando sono entrata a far parte della community a gennaio 2022, ho partecipato all&#8217;impatto che abbiamo sul nostro ecosistema come individui e come comunità. Ho acquisito nuove conoscenze tecniche e nuovi soft skills. Sono cresciuta come professionista e come essere umano. Ho sostenuto mia moglie mentre lasciava la sua azienda, diventava una frontend developer e adesso mentre cerca il suo primo lavoro in questo settore. Possiamo viaggiare e visitare le nostre famiglie, e io posso lavorare da qualsiasi luogo. Non sono mai stata così felice. Ho passato molti momenti a manifestare ciò che volevo veramente per la mia vita, e si è sempre avverato, anche se questo ha comportato alcune sconfitte lungo la strada.&nbsp;</p>\n\n\n\n<p>Spero che la mia storia raggiunga persone che non hanno ancora sperimentato il potere della manifestazione, dell&#8217;affermare ciò che si vuole e dell&#8217;essere sinceri con le proprie speranze e i propri valori. Credo nell&#8217;abbondanza e credo che attiriamo ciò che sentiamo. Quindi apriamoci ai nostri desideri, entriamo in contatto con altre persone, facciamo del bene e viviamo la nostra vita migliore!&nbsp;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/manifesting-our-life/\">Manifesting Our Life &#8211; Manifestare la nostra vita</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 07:00:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Isotta Peira\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Block Protocol Announces New WordPress Plugin Coming in 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/block-protocol-announces-new-wordpress-plugin-coming-in-2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6532:\"<p><a href=\"https://blockprotocol.org/\">Block Protocol</a>, a project that <a href=\"https://wptavern.com/block-protocol-project-aims-to-create-universal-block-system-may-collaborate-with-gutenberg\">launched earlier this year</a> that aims to build a universal block system, has <a href=\"https://blockprotocol.org/wordpress\">announced a new WordPress plugin</a> coming in early 2023. It will allow users to embed interactive blocks that are compatible with Gutenberg. Given WordPress&#8217; footprint on the web (43% by W3Tech&#8217;s estimate), this plugin is a major milestone on the project&#8217;s roadmap for supporting a more interoperable and open web with blocks that can be shared through a standardized protocol. </p>\n\n\n\n<p>The Block Protocol plugin will give users access to the <a href=\"https://blockprotocol.org/hub\">global registry of interoperable blocks</a>. These include interactive blocks for drawing, a GitHub pull request overview, a timer, calculation, and more. Once installed, users will see these blocks available in the inserter. The newest versions of the blocks are always available to users without having to update the plugin. Creators of the Block Protocol are also releasing a few new blocks alongside the plugin, including an OpenAI DALL-E-powered image generation block and a GPT-powered block for generating text.</p>\n\n\n\n<img />\n\n\n\n<p>This announcement comes just days after Matt Mullenweg&#8217;s <a href=\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\">2022 State of the Word</a> address, where he was asked about Gutenberg potentially collaborating with the Block Protocol project. </p>\n\n\n\n<p>&#8220;Sometimes developers don’t like to work together on the same thing,&#8221; Mullenweg said in response to the question. &#8220;And so it’s part of why there’s like 200 CMS&#8217;s and stuff like that. Sometimes there might be a stylistic or a technical change that when you look at it, you say, &#8216;I can’t use this thing that exists. I’m going to start something that’s different.&#8217; And I think that’s a little bit what’s happening with Gutenberg and the Block Protocol.&#8221;</p>\n\n\n\n<p>Mullenweg confirmed that the projects have been communicating but were not able to get onto the same page. </p>\n\n\n\n<p>&#8220;They feel like there’s some things, either choices in Gutenberg or ways we develop things, that just are incompatible with how they see it happening,&#8221; he said. &#8220;We’ll see where that goes in the future. We’ve tried to make it CMS-agnostic so it can be embedded in anything and re-skinned, like you saw with the Tumblr example, it can be totally different. Everything we’re doing is open, so I would hope that wherever they end up, Gutenberg blocks could maybe be embedded, if there’s a translation layer or something like that.&#8221; </p>\n\n\n\n<p>Mullenweg sounded optimistic about the possibility of interoperability between Gutenberg and Block Protocol&#8217;s specification where users could copy and paste blocks across applications. </p>\n\n\n\n<p>&#8220;Maybe they create something really cool, that’s open source,&#8221; he said. &#8220;And then we’re like, &#8216;oh, let’s bring that over to Gutenberg,&#8217; so the innovation can flow both ways, and sometimes that’s only possible if you’re starting something from scratch.&#8221;</p>\n\n\n\n<p>Since the Block Protocol project is open source and designed to be an open protocol, Mullenweg said he considers it &#8220;like a cousin project,&#8221; and hopes that WordPress can integrate more in the future.</p>\n\n\n\n<p>&#8220;If not, that’s okay too,&#8221; he said. &#8220;Maybe this will just be an alternative ecosystem that can experiment with new ideas or maybe things we would say no to, they can try. And then we see how it’s adopted by users.&#8221; </p>\n\n\n\n<p>The initial draft of the Block Protocol spec is being incubated by the team at <a href=\"https://hash.ai/blog/announcing-the-block-protocol\">HASH</a>, an open source data, modeling, and simulation platform. HASH is using the protocol in beta. The current version of the spec will be deprecated as of v0.3, which is anticipated to arrive in February 2023 alongside the WordPress plugin.</p>\n\n\n\n<p>&#8220;I obviously can’t speak to what Automattic are officially thinking about the Block Protocol, but we&#8217;ve been energized by the community&#8217;s continued interest,&#8221; HASH CEO David Wilkinson said. </p>\n\n\n\n<p>&#8220;Thanks to WordPress&#8217; open architecture we can prove out the Block Protocol first as a plugin, giving users today the ability to access Block Protocol blocks within WordPress, and build blocks themselves that work not only in WordPress, but in <a href=\"https://hash.ai/\">HASH</a> and other Block Protocol embedders, as well. In time we think that the value in having a standard way to write blocks which work across apps will become self-evident.&#8221;</p>\n\n\n\n<p>Wilkinson said WordPress was the most requested CMS from Block Protocol users, as it is the most widely used, but he also has a personal connection with the software.</p>\n\n\n\n<p>&#8220;WordPress is near and dear to my heart,&#8221; he said. &#8220;I built my first websites with it, have worked with it for more than half my life (!), and have a huge amount of respect for the organization and operation behind it. It&#8217;s the obvious platform to start with.&#8221;</p>\n\n\n\n<p>The Block Protocol team has received requests for support from users of more than 50 block-based applications, and the project is currently <a href=\"http://blockprotocol.org/wordpress\">running a poll</a> to help identify the next one on the roadmap.</p>\n\n\n\n<img />\n\n\n\n<p>Even though the Block Protocol and Gutenberg projects did not find an acceptable way to combine efforts, WordPress users will get the best of both worlds with the new upcoming plugin. At the moment, access to Block Protocol&#8217;s Hub of blocks doesn&#8217;t offer any functionality that is superior to what is found in core WordPress and other native block plugins. The addition of the OpenAI-powered blocks will help make it more compelling, and the protocol&#8217;s ability to work across apps may bring an influx of more interesting blocks in the future.</p>\n\n\n\n<p>The Block Protocol is currently onboarding beta testers for the new WordPress plugin. Those who are interested can <a href=\"https://blockprotocol.org/wordpress#availability\">sign up for early access</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 03:19:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.org blog: The Month in WordPress – November 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13587:\"<p>WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project&#8217;s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word 2022</h2>\n\n\n\n<p>WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> delivered the annual State of the Word address on <strong>December 15, 2022</strong>, before a live audience in New York City. Most attendees joined the event via livestream or one of the 33 watch parties held across 11 countries.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, Executive Director of WordPress, kicked off this year&#8217;s event with an introduction to the <strong>Four Freedoms of open source</strong> and the importance of WordPress in ensuring “a free, open and interconnected web for the future.”</p>\n\n\n\n<p>Similar to past State of the Word events, Matt reflected on the project’s achievements over the past year, including Gutenberg’s adoption beyond WordPress, the steady progress in advancing the site editing experience, and the return to in-person events.<em> </em>In addition, he took the opportunity to remind everyone of the <a href=\"https://communitysummit.wordcamp.org/2023/\">2023 Community Summit</a> and the <a href=\"https://wp20.wordpress.net/\">20th anniversary of WordPress</a> coming up next year.</p>\n\n\n\n<p><strong>Ahead of 2023</strong>, Matt announced <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">new taxonomies</a> in the WordPress.org theme and plugin directories to help users identify the extensions that best fit their needs and plans for Phase 3 of Gutenberg—Collaboration—among other notable updates.</p>\n\n\n\n<p>People who watched the State of the Word enjoyed a demo of <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project to explore, experiment, and build apps with a WordPress instance that runs entirely in the browser.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Missed the event? <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">Read the recap</a> or <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watch the State of the Word recording</a> and <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">Q&amp;A session</a> on WordPress.tv.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 2022 WordPress Survey is open</h2>\n\n\n\n<p>The annual WordPress survey helps project leadership and those who build WordPress understand more about the contributor experience, how the software is used, and by whom.</p>\n\n\n\n<p>This year’s survey will remain <strong>open through the end of 2022</strong> and is available in English, French, German, Italian, Japanese, Russian, and Spanish.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey</a> to help make an impact on the project.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\"><strong>Gutenberg 14.6</strong></a>, released on November 23, 2022, came with many refinements to core blocks. Notable highlights include a variation picker that allows users to choose a desired layout when a Group block is inserted on a page, a new list view for editing the Navigation block, and a keyboard shortcut to transform paragraph blocks into headings.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>Gutenberg 14.7</strong></a>, released on December 7, 2022, introduced an experimental tabbed sidebar, colors to help identify some block types in list view, and improvements to the Page List block to make it easier to manage page links in the content.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Introducing the block editor in the support forums, a revamped Showcase page, and more</h2>\n\n\n\n<ul>\n<li>The Support and Meta Teams are bringing <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">the block editor experience into the WordPress.org support forums</a>.</li>\n\n\n\n<li>WordPress.org’s redesign continues with a <a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">refreshed Showcase page</a>.</li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/community/2022/12/05/proposed-2023-global-community-sponsorship-program/\">proposal for the 2023 Global Community Sponsorship Program</a> has been published.</li>\n\n\n\n<li>WordPress is accessible to more people thanks to 19,357 contributors who translated more than eight million strings this year. Learn more about the <a href=\"https://make.wordpress.org/polyglots/2022/12/12/reflecting-on-2022-in-polyglots/\">Polyglots Team&#8217;s achievements in 2022</a>.</li>\n\n\n\n<li>Speaking of accomplishments, supporters of the Global Meetup Reactivation project <a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">helped reactivated 126 meetup groups</a> in 2022! There are also some discussions on <a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">how these efforts can support the Polyglots Outreach Effort project</a>, and vice versa.</li>\n\n\n\n<li>The Community Team met with members of the Meetup.com team to help report some feedback and issues with an accessibility overlay that they ultimately <a href=\"https://make.wordpress.org/community/2022/11/23/meetup-com-accessibility-overlay-update/\">agreed to remove</a>.</li>\n\n\n\n<li>The Training Team highlighted <a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">the latest updates</a> that have been made to <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. In addition, <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">part 1</a> and <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">part 2</a> of the Developers Guide to Block Themes are now available on the platform.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a> and <a href=\"https://make.wordpress.org/polyglots/2022/11/08/call-for-polyglots-team-representatives-2/#comment-295831\">Polyglots</a> Teams announced their team representatives for 2023.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/11/30/now-available-wordpress-3-7-4-0-final-releases/\">final releases for WordPress 3.7-4.0</a> were made available on November 30, 2022, with a notice that they are no longer receiving security updates. WordPress 4.1 and later will continue to receive such updates.</li>\n\n\n\n<li>Fresh off the press, the <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">December 2022 edition of the Polyglots monthly newsletter</a> is available for reading.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\">Huanyi Chuang</a>, a front end developer from Taiwan.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about why WordPress has so many releases? <a href=\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\">Tune in to Episode 44 of WP Briefing</a> to learn about the role of major and minor releases in the project.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Help efforts to wrap up Gutenberg Phase 2 by <a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">testing the Site Editor’s latest updates</a>. Leave your feedback by January 6, 2023.</li>\n\n\n\n<li>The Performance Team shared a <a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">new proposal for enhancing the Scripts API with a loading strategy</a>.</li>\n\n\n\n<li>The Full Site Editing (FSE) Outreach Program is <a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">looking for volunteers to use Replay.io for capturing bugs</a>. Express your interest by December 28, 2022.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on WordPress contributor teams to <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">suggest topics for the 2023 Community Summit</a> by January 16, 2023.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>The #WPDiversity working group organized <a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">several workshops</a> during the past few months. Among other highlights, attendees of the Speaker Workshop for Women Voices in Latin America reported a 52% increase in self-confidence to speak in public. <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">Stay tuned for the next events</a>.</li>\n\n\n\n<li>The WordCamp Europe 2023 organizing team shared <a href=\"https://europe.wordcamp.org/2023/wceu-2023-content-vision/\">their content vision</a> for next year&#8217;s flagship event in Athens, Greece.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> is just a few months away, scheduled for February 17-19, 2023, in Bangkok, Thailand. Organizers have announced the first recipient of the WordCamp Asia Diversity Scholarship, <a href=\"https://asia.wordcamp.org/2023/diversity-scholarship-recipient/\">Awais Arfan</a>.</li>\n\n\n\n<li>Three more WordCamps are happening in the next few months:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WordCamp Europe 2023 is calling for <a href=\"https://europe.wordcamp.org/2023/the-call-for-sponsors-is-now-open/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2023/call-for-speakers-is-open-now/\">speakers</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sereedmedia</a>, and <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 12:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: WordPress.com Launches Newsletter Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/wordpress-com-launches-newsletter-product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5978:\"<p>WordPress.com has <a href=\"https://wordpress.com/blog/2022/12/19/write-and-publish-your-newsletter-on-wordpress-com/\">launched</a> a newsletter product just in time to capture those escaping <a href=\"https://twitter.com/shl/status/1603954292834328577\">Gumroad&#8217;s price increase</a> and editors displaced by <a href=\"http://help.getrevue.co/en/articles/6819675-we-ve-made-the-difficult-decision-to-shut-down-revue\">Revue shutting down</a>. Newsletters, which were already booming as a communication tool in recent years, have become more critical than ever, as the uncertainty around Twitter has people scrambling to find reliable ways to stay connected.</p>\n\n\n\n<p>WordPress.com (and Jetpack users) have had the ability to send published posts to email subscribers for years. This isn&#8217;t usually marketed as a newsletter (as you can see below) but functions in the same way.</p>\n\n\n\n<img />\n\n\n\n<p><a href=\"https://wordpress.com/setup/newsletter/intro\">WordPress.com Newsletter</a> is a new streamlined product for scheduling and publishing newsletters using WordPress. It uses the same underlying infrastructure as subscribing to sites via email, offering users unlimited email subscribers. During setup, newsletter creators can import up to 100 subscribers from other newsletter services by uploading a CSV file. </p>\n\n\n\n<img />\n\n\n\n<p>A theme designed for newsletters is put in place with additional <a href=\"https://wordpress.com/blog/2022/11/18/new-patterns-subscriptions-link-in-bio-wireframes-and-more/\">newsletter-focused block patterns</a> for the Subscribe box. Users can take advantage of the Site Editor to further customize the site&#8217;s background, site icon, and accent colors. This type of website showcases the versatility of the block editor, as newsletter creators can quickly design their own unique websites, without editing any code.</p>\n\n\n\n<p>With all the activity in the newsletter product space lately, I had to give myself a tour of WordPress.com&#8217;s new product to see how it stacks up to creating campaigns with other dedicated email services. In the first part of the setup process, users will upload a logo, specify a site name and description, and select a color. </p>\n\n\n\n<img />\n\n\n\n<p>The next section displays pricing options with a plain link at the top for the free plan. Paid plans are ad-free and allow users to send unlimited emails. In the future, the premium plan will allow users to monetize their newsletters in various ways, such as selling subscriptions or collecting donations.</p>\n\n\n\n<img />\n\n\n\n<p>After selecting a plan and free or paid domain name, users have the opportunity to upload up to 100 emails from other newsletter services. I selected the free plan, so that number may be unlimited with the paid plans. The site setup is fairly quick, as it puts the default theme in place, and users are encouraged to start writing. It&#8217;s a simple flow entirely geared towards publishing newsletters. Depending on the readiness of the post, newsletter authors can have their first issue landing in subscribers&#8217; inboxes in minutes.</p>\n\n\n\n<img />\n\n\n\n<p>The default newsletter site theme doesn&#8217;t come with additional style variations but users can easily edit the templates to expand, reduce, or further customize what is shown on the frontend. </p>\n\n\n\n<img />\n\n\n\n<p>The default theme is very minimalist but looks nice out of the box on both desktop and mobile. The subscribe form is front and center and recent posts, or newsletter &#8220;issues,&#8221; show up underneath with a featured image.</p>\n\n\n\n\n\n\n\n<p>If you are familiar with WordPress, using the block editor is likely far easier than any newsletter campaign editor out there, as these tend to be clunky and limited in options. Publishing directly from WordPress.com also eliminates the need to copy the content over into a newsletter service and reformat it for email, a problem that services like <a href=\"https://newsletterglue.com/\">Newsletter Glue</a> have set out to solve for self-hosted WordPress sites.</p>\n\n\n\n<p>if you are a subscriber of <a href=\"https://indieweb.org/principles#:~:text=%F0%9F%97%BD%20The%20IndieWeb%20Community%20is,platform%20agnostic%20platforms%2C%20plurality%20over\">IndieWeb principles</a>, one of the most important considerations in launching a newsletter is that you own your own data and have the opportunity to practice POSSE (Publish (on your) Own Site, <a href=\"https://indieweb.org/Category:syndication\">Syndicate</a> Elsewhere). WordPress.com&#8217;s new offering makes it effortless to follow this workflow for newsletter publishing. </p>\n\n\n\n<p>One bonus feature, which is lacking with major newsletter service providers, is that subscribers can reply to the email to leave a comment on the published post, furthering the public conversation around each issue of the newsletter.</p>\n\n\n\n<p>Although WordPress.com has experience sending millions of emails at scale, the newsletter product&#8217;s pricing and sales copy doesn&#8217;t mention anything about deliverability rates. This is a major selling point for people coming from other services which haven&#8217;t performed as well on deliverability. There is also no comparison chart showing the limitations of the free account, which may be an important consideration for those who are just testing the waters.</p>\n\n\n\n<p>For those who are not hosting their sites at WordPress.com, there are a myriad of diverse plugins for self-hosted WordPress that can make newsletter publishing a seamless process. It requires knowing which ones to install, setup, and configure. For non-technical publishers, WordPress.com&#8217;s newsletter product is the most approachable entry point to WordPress-based newsletter publishing that exists on the market right now. If the company can add the monetization features fast enough, this product has the potential to become a major contender among newsletter services jostling to capture the creator economy.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 06:56:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Do The Woo Community: A State of the Word Dinner with Some Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/a-state-of-the-word-dinner-with-some-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"<p>As some WordPress people gathered in NYC for the WordPress State of the Word, the night before a few of us gathered for a dinner and drinks.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-state-of-the-word-dinner-with-some-woo/\">A State of the Word Dinner with Some Woo</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Dec 2022 10:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Gutenberg Times: Design System Bridge to WordPress, Fonts management, Playground and more – Weekend Edition #239\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=22982\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://gutenbergtimes.com/design-system-bridge-to-wordpress-fonts-management-playground-and-more-weekend-edition-239/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28376:\"<p>Howdy, </p>\n\n\n\n<p>Welcome to the last edition of the year 2022! It&#8217;s been a fantastic year for the block editor with many new features. What is your most favorite feature that gives you joy whenever you use it? Please let me know pauli@gutenbergtimes.com or use the comments. </p>\n\n\n\n<p>For me, it&#8217;s the little things, like drag &amp; drop (🐉 + 💧) an image from a screenshot right into the post or the [[ -shortcut to link to other posts and pages on the same site or the gallery block that now has individual image blocks, or the nicely revamped color-picker to assign colors. I am excited about the next WordPress version, to see great enhancements of the Site Editor. It will feel much more natural to use and easier for a user to orient oneself. </p>\n\n\n\n<p>This last edition of the year has a lot of interesting content for all WordPress users, developers, site builders and designers. </p>\n\n\n\n<p>Wishing you and yours Happy Holidays, and a happy, healthy and prosperous New Year!</p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: With all the talk about collaborative editing, I just came across a great article by the CKEditor team. (Thank you, <a href=\"https://twitter.com/nomad_skate\">Mark Andrew</a>) There are quite a few considerations and decisions to make. If you want to start thinking deeply about the problem, this is one article for you. <a href=\"https://ckeditor.com/blog/Lessons-learned-from-creating-a-rich-text-editor-with-real-time-collaboration/\"><strong>Lessons learned from creating a rich-text editor with real-time collaboration</strong></a>, by <strong><a href=\"https://twitter.com/scofalik\">Szymon Cofalik</a></strong>, Collaboration Features Technical Leader and <strong>Anna Tomanek</strong>, Documentation &amp; Content Manager at CKEditor.</p>\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Reserve your seats!</a></strong>&nbsp;The next&nbsp;<strong>Gutenberg Live Q &amp; A</strong>&nbsp;will take place on January 11th, 2023 at 5pm ET / 22:00 UTC .</p>\n\n\n\n<p>In this show,&nbsp;<strong>Isabel Brison</strong>,&nbsp;<strong>Andrew Serong</strong>&nbsp;and&nbsp;<strong>Justin Tadlock</strong>&nbsp;will discuss the opportunities and challenges of the Layout features for site builders, and they will be available to answer your questions. Isabel Brison will also give us a demo of various layout scenarios.&nbsp;<strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Join us!</a></strong></p>\n\n\n\n<p><em>This is also a preview on&nbsp;<a href=\"https://asia.wordcamp.org/2023/session/layout-layout-layout/\">Isabel Brison’s talk at WordCamp Asia</a></em>&nbsp;i<em>n February 2023</em></p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\"><img /></a>\n</div></div>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-state-of-the-word\">State of the Word</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-14-7\">Gutenberg 14.7</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-tutorial\">Tutorials on WordPressTV</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><br /><strong>Anne McCarthy</strong> posted a new <strong><a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">FSE Program Testing Call #19: Running Through Refinements</a></strong>. The test instructions have you focus on several changes to the site editing experience, including an easier way to navigate between content, the ability to change menus from within the block settings sidebar, and the addition of block inspector tabs to make blocks with numerous controls easier to configure and customize. </p>\n\n\n\n<p>The goal of these changes is to make it easier to navigate, see changes at scale, create an easier navigation editing/creation experience, and have a more intuitive experience when editing individual blocks. The testing instructions outline how to use a prebuilt test site or set up your own test site and then walk through the steps of exploring the browse mode, editing navigation, and updating the homepage and overall styling.</p>\n\n\n\n<h3 id=\"1-state-of-the-word\">State of the Word</h3>\n\n\n\n<p>In his <em>State of the Word</em>, <strong>Matt Mullenweg</strong> spoke about the big things in 2022 and 2023. The Q &amp; A was also recorded. You can watch the <a href=\"https://www.youtube.com/watch?v=VeigCZuxnfY\">recording on YouTube</a>. The fine folks at various WordPress News outlets, already published their recap articles: </p>\n\n\n\n<p><strong>Emily Schiola,</strong> editor at the <em>Torque Magazine</em> wrote in <a href=\"https://torquemag.io/2022/12/open-for-all-state-of-the-word-2022/\"><strong>Open for All: State of the Word 2022</strong></a>, &#8220;Some themes were familiar such as the power of the community, and the importance of keeping open-source open. But others like collaborative editing within the dashboard and new plugin taxonomies spoke to an exciting and vibrant future of the project that couldn’t have been imagined when it was created 20 years ago.&#8221;</p>\n\n\n\n<p><strong>Sarah Gooding</strong> wrote in her article, <a href=\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\"><strong>State of the Word 2022: Matt Mullenweg Highlights Gutenberg’s Progress, Announces New Community Tools</strong></a>, &#8220;Mullenweg said he is hoping Gutenberg can create an “open block standard that can be used anywhere,” where users learn it on one system, and it can be applied in other apps.” Gooding also explains more on the &#8220;Tools Coming to the Community: New Taxonomies for the Plugin and Theme Directories and Staging “Playground” that Runs WordPress in the Browser&#8221;.</p>\n\n\n\n<p><strong>Matt Mederios</strong> published a recap on <em>The WPMinute</em>, with a great list of bullet points, links to mention activities and sites, and a transcript:  <a href=\"https://thewpminute.com/state-of-the-word-2022/\"><strong>State of The Word 2022</strong></a></p>\n\n\n\n<p>In addition, I just want to point out the gigantic numbers around contributors in 2022.</p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=VeigCZuxnfY\"><img /></a>\n\n\n\n<p>These are very impressive numbers of unique contributors on releases in 2022. </p>\n\n\n\n<ul>\n<li>1,399 &#8211; unique count of contributors to releases in 2022</li>\n\n\n\n<li>652 &#8211; first time contributors, that&#8217;s almost half! 🤯 That&#8217;s a huge amount of onboarding work by the teams! </li>\n\n\n\n<li>424 &#8211; contributed in 2021 and returned in 2022</li>\n\n\n\n<li>322 &#8211; who took a break in 2021 and returned in 2022</li>\n\n\n\n<li>204 &#8211; contributed to all releases in 2022</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<a href=\"https://www.pewresearch.org/\"><img /></a>\n\n\n\n<p>On a side note: The <a href=\"https://www.pewresearch.org/\">Pew Research Center</a> received a shout-out for their &#8220;Politology&#8221; Quiz, built with blocks and over 1 Million people taking it. <strong>Seth Rubenstein</strong>, lead web developer, was a guest on a Gutenberg Times Live Q &amp; A and gave a great demonstration about the team&#8217;s work with the block editor. </p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-block-first-approach-at-pew-research-center/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2022/07/Screen-shot-Pew-Research-Center-july-0222-.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-block-first-approach-at-pew-research-center/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Block-First Approach at Pew Research Center</span></a></div><div class=\"ngl-article-excerpt\">On July 22, 2022, Michael Piccorossi, Head of Digital Strategy and Seth Rubenstein, Lead Developer at Pew Research Center talked to co-hosts Anne McCarthy, WordPress Product Liaison and Birgit Pauli-Haack,…</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<h3 id=\"2-gutenberg-14-7\">Gutenberg 14.7</h3>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the <a href=\"https://wptavern.com/gutenberg-14-7-introduces-color-coding-for-template-parts-and-reusable-blocks-adds-media-tab-to-inserter\"><strong>Gutenberg 14.7 release Gutenberg 14.7 Introduces Color Coding for Template Parts and Reusable Blocks, Adds Media Tab to Inserter</strong></a>. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\">Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January</a> with special guest, Daisy Olsen and host Birgit Pauli-Haack. </p>\n</div></div>\n\n\n\n<p><strong><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v14.8.0-rc.1\">Gutenberg 14.8 RC</a></strong> candidate is already available for testing. Stable release is scheduled for December 21st, 2022. Release lead is <strong>Ryan Welcher</strong>. </p>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><a href=\"https://wordpress.tv/2022/12/12/creating-a-call-to-action/\"><strong>Create a Call to Action</strong></a> is the recording of a recent workshop by <strong>Wes Theron</strong>, WordPress Training team. A Call To Action (CTA) is an element on your site that asks people to take a specific action. In this session, you will look at how you can create your own CTA by only using the block editor.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> was a guest on Press This the WordPress Community Podcast. <strong>Doc Pop</strong> discussed with McCarthy what&#8217;s <a href=\"https://torquemag.io/2022/12/press-this-whats-next-6-2/\"><strong>beyond Site Editing, What’s Next for WordPress 6.2?</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://stunningdigitalmarketing.com/episode-285-talking-all-things-wordpress/\"><strong>In Episode 285</strong></a> <strong>Rob Cairns</strong>, of Stunning Digital Marketing and host of the podcast with the same name, sat down with Birgit Pauli-Haack and Matias Ventura to talk all  things WordPress</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding </strong>reports on the latest release of WooCommerce Blocks. <strong><a href=\"https://wptavern.com/woocommerce-blocks-9-1-0-introduces-products-block-in-beta\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce Blocks 9.1.0 Introduces Products Block in Beta</a>.</strong> <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks</a> is a plugin that helps users to create and customize online stores using blocks. The latest version, 9.1.0, includes the beta release of a new Product Query-powered Products block, which allows users to arrange and display products using preset options and control the layout. The Products block is based on the core Query Loop block and is intended to eventually replace all the plugin&#8217;s current product-displaying blocks. </p>\n\n\n\n<p>In addition to the Products block, version 9.1.0 introduces three new &#8220;product-adjacent&#8221; block patterns, which focus on presentation rather than store data. It also includes support for alignment settings in the Add to Cart Button and Product Rating elements.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Doc Pop</strong> hosted the <a href=\"https://torquemag.io/2022/12/torque-social-hour-learning-to-use-the-site-editor/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Torque Social Hour: Learning to use the Site Editor</strong></a>. This week&#8217;s episode features Brian Gardner teaching Doc how to edit a block-based WordPress theme with the new Site Editor. Gardner designed one of the Style Variations in the new Twenty Twenty Three theme</p>\n\n\n\n<h3 id=\"4-tutorial\">Tutorials on WordPressTV</h3>\n\n\n\n<ul>\n<li><a href=\"https://css-tricks.com/adding-box-shadows-to-wordpress-blocks-and-elements/\">Training team published a few more videos on WordPressTV</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/15/exploring-category-templates-and-the-query-loop-block/\" target=\"_blank\" rel=\"noreferrer noopener\">Exploring Category Templates and the Query Loop Block</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/15/displaying-the-comments-block-in-block-themes/\" target=\"_blank\" rel=\"noreferrer noopener\">Displaying the comments block in block themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/07/using-the-navigation-block-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/30/using-page-templates/\" target=\"_blank\" rel=\"noreferrer noopener\">Using page templates</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/08/the-key-to-locking-blocks/\" target=\"_blank\" rel=\"noreferrer noopener\">The key to locking blocks</a></li>\n</ul>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> invites you to a <a href=\"https://make.wordpress.org/core/2022/12/16/hallway-hangout-performance-considerations-for-block-themes/\"><strong>Hallway Hangout: Performance Considerations for Block Themes</strong></a> on <strong>January 10, 2023 at 9:30 ET / 14:30 UTC.</strong> She wrote: &#8220;As more is being done to work on performance as it relates to block themes, a hallway hangout has been planned to bring together folks from various backgrounds to see what else can be worked on, unblocked, and better understood. This is meant to be both a knowledge sharing and alignment creating session between folks from various areas&#8221;. The Zoom link will be shared in the <a href=\"https://make.wordpress.org/core/tag/core-performance/\">#core-performance</a> Slack channel before starting<strong>.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this article, <strong><a href=\"https://wpvip.com/2022/12/09/figma-to-wordpress/\">Exporting Design System Tokens From Figma to WordPress</a>,</strong> <strong>Alec Geatches</strong>, and <strong>Gopal Krishnan</strong>, both software developers at Automattic walk you through their process &#8211; in great detail &#8211; to connect the design system created in Figma with the WordPress theme to keep both in sync. With the assistance of two plugins one for Figma and one for WordPress, they showed how you can import your design system from Figma into the theme.json of a WordPress theme. The two plugins are <a href=\"https://www.figma.com/community/plugin/843461159747178978/Figma-Tokens\">Figma Tokens plugin</a> and <a href=\"https://github.com/Automattic/vip-design-system-bridge\">Design System Bridge</a></p>\n\n\n\n<p>In a new two-part series, Geatches and Krishan build on that foundation by showing you how you can use imported design tokens from theme.json in the block editor. This allows you to better organize your WordPress site to reflect your design system.&nbsp;The first part of the series is already published:  <a href=\"https://wpvip.com/2022/12/15/using-a-design-system-with-the-wordpress-block-editor-pt-1-theme-json/\"><strong>Using a Design System with the WordPress Block Editor Pt. 1: theme.json</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his article on the Developer Blog,<strong> Justin Tadlock</strong>, outlined how theme developers can <strong><a href=\"https://developer.wordpress.org/news/2022/12/07/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\" target=\"_blank\" rel=\"noreferrer noopener\">leverage theme.json and per-block styles for more performant themes</a>.</strong> The block system in WordPress also allows for per-block styles to be loaded, in-lining the CSS for specific blocks in the front-end view. It is recommended for theme developers to utilize <code>theme.json</code> and per-block styles to ensure a performant theme, and to check for available settings and styles before using custom CSS.</p>\n\n\n\n<p>In this workshop recording, <strong>Jonathan Bossenger</strong> took participants on a <strong><a href=\"https://wordpress.tv/2022/12/15/wordpress-theme-template-tour/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress theme template tour</a>.</strong> Templates are the WordPress theme files used to render website pages. Getting acquainted with templates is an important step in learning to build themes for WordPress.</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p>In his video, <strong><a href=\"https://wordpress.tv/2022/12/09/manage-your-block-theme-fonts-with-create-block-theme/\" target=\"_blank\" rel=\"noreferrer noopener\">Manage your block theme fonts with Create Block Theme</a>,</strong> <strong>Jonathan Bossenger</strong>, shows you how you can add external fonts to your block theme by using the updated plugin  <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme</a>. Whether you want to download a font from Google fonts, or install a font you’ve downloaded elsewhere, Create Block Theme makes it painless to add them to your block theme.</p>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>With his post, <a href=\"https://css-tricks.com/saving-settings-for-a-custom-wordpress-block-in-the-block-editor/\"><strong>Saving Settings for a Custom WordPress Block in the Block&nbsp;Editor</strong></a> on CSS Tricks, Manoj Kumar, published the fourth part of the series <em>Working With External APIs in WordPress Blocks</em>. Kumar covers saving the settings options, so they persist the next time someone edits a post that contains the  custom block, that was created and expanded in the last three post of the series. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his recent live streams, Ryan Welcher started <a href=\"https://www.youtube.com/watch?v=cGsAfBMZzhw\"><strong>building an Advanced Query Loop plugin</strong></a>. Part one is now available on his YouTube channel. This plugin introduces a Query Loop block variation that will empower users to be able to do much more complicated queries with the Query Loop block, such number of posts to display and post meta. The <a href=\"https://github.com/ryanwelcher/advanced-query-loop\">source code</a> is already available on GitHub. Part 2 will be posted in the next couple of weeks. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The latest article on the WordPress Developer Blog, come from <a href=\"https://twitter.com/dsas\"><strong>Dean Sas,</strong></a> JavaScript wrangler at Automattic. It&#8217;s  an introduction of <a href=\"https://developer.wordpress.org/news/2022/12/13/application-state-managed-withdispatch-withselect-and-compose-101/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Application state managed withDispatch, withSelect and compose 101</strong></a>. <code>withDispatch</code>, <code>withSelect</code> and <code>compose</code> are a triad of Gutenberg methods that are often used together to manage application state. This article briefly explains why these methods are important, what they’re used for and how to use them.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> continues is series of videos <em>Developing blocks without React! &#8212;</em> The video on <a href=\"https://wordpress.tv/2022/12/12/lets-code-developing-blocks-without-react-block-supports/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Block Supports</strong></a> is the latest of the series.  He wrote: &#8220;So far, we’ve built a WordPress block using plain JavaScript which supports custom styles via a stylesheet,  uses block attributes and the RichText component to allow the user to edit the block content, and uses a custom toolbar control to allow the user to align the RichText content. Next, we will look at adding additional support for managing the block styles, via the Block Supports API.&#8221; </p>\n\n\n\n<p>The other editions </p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/02/lets-code-developing-blocks-without-react-controls/\">Controls</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/25/lets-code-developing-blocks-without-react-part-2-take-2/\">Attributes and&nbsp;RichText</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/18/lets-code-developing-blocks-without-react-all-about-attributes/\">All about Attributes</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/11/lets-code-developing-blocks-without-react-part-1/\">Block&nbsp;Basics</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the latest <a href=\"https://wptavern.com/drupal-gutenberg-2-6-released-with-drupal-10-compatibility\"><strong>Drupal Gutenberg 2.6 Released with Drupal 10 Compatibility</strong></a>. The module allows users to build landing pages and save reusable blocks using a block-based editor without needing to know code &#8211; Over 3,300 Drupal installations currently use Gutenberg, and the module has been regularly updated for over 4 years &#8211; Gutenberg ships with 60+ blocks and access to a cross-platform community library for custom blocks. M<a href=\"https://wptavern.com/drupal-gutenberg-2-6-released-with-drupal-10-compatibility\">ore info is available in the article. </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <strong>WordPress Playground</strong> was mentioned in the State of the Word this week. It was renamed from the former WordPress Sandbox title, as it was too close to a commercial product in the WordPress space. <strong>Sarah Gooding</strong> reported on it in here article <a href=\"https://wptavern.com/new-wordpress-sandbox-project-demos-test-drive-themes-and-plugins-in-the-browser\" target=\"_blank\" rel=\"noreferrer noopener\">Project Demos: Test-Drive Themes and Plugins in the Browser</a>. The <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> project uses WASM to provide in-browser IDE and test environment for theme and plugin development. <strong>Adam Zieliński,</strong> core contributor sponsored by Automattic, introduced the project in September wiith his post on the Make Blog: <a href=\"https://make.wordpress.org/core/2022/09/23/client-side-webassembly-wordpress-with-no-server/\">Client-side WebAssembly WordPress with no server</a>. <a href=\"https://wordpresswasm.readthedocs.io/en/latest/\">Documentation and API reference</a> is also available </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p><strong>January 11, 2023 – 5 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: Layout, layout, layout</a></strong><br />Panel discussion with Isabel Brison, Andrew Serong, Justing Tadlock and Birgit Pauli-Haack</p>\n\n\n\n<p><strong>February 17 – 19, 2023</strong><br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>December 21, 2022 – 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170454/\"><strong>Creating a Theme with the Create Block Theme Plugin Session 1</strong></a></p>\n\n\n\n<p>December 21, 2022 – 3 am ET / 8 am UTC<br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170469/\">Creating a Theme with the Create Block Theme Plugin Session 2</a></strong></p>\n\n\n\n<p>January 19, 2023 &#8211; 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290363952/\"><strong>Let’s make custom templates in the Site Editor!</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Imajinn AI &#8211; Holidays-at-futuristic-Times-Square</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Dec 2022 08:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Drupal Gutenberg 2.6 Released with Drupal 10 Compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140392\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/drupal-gutenberg-2-6-released-with-drupal-10-compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3317:\"<p>Drupal Gutenberg, the <a rel=\"noreferrer noopener\" href=\"https://www.drupal.org/project/gutenberg\" target=\"_blank\">Gutenberg module for Drupal</a> that was created by <a rel=\"noreferrer noopener\" href=\"https://www.frontkom.no/\" target=\"_blank\">Frontkom</a>, has released <a href=\"https://www.drupal.org/project/gutenberg/releases/8.x-2.6\">version 2.6</a> with compatibility for Drupal 10. The module offers Drupal users a better authoring experience using blocks, allowing them to quickly build landing pages and save reusable blocks inside the editor without any code required. </p>\n\n\n\n<p>There are more than 3,300 active Drupal installations using Gutenberg, and the module has been receiving regular updates for more than four years. It ships with 60+ blocks as well as access to the <a href=\"https://gutenbergcloud.org/\">Gutenberg Cloud</a>, a cross-platform community library for custom Gutenberg blocks. Since the blocks are JavaScript-only, they work across both Drupal and WordPress sites alike. </p>\n\n\n\n<p>&#8220;Installing Gutenberg slashed our content creation time by 80%,&#8221; a content creator at <a href=\"https://www.fortum.com/\">Fortum</a>, a Finnish state-owned energy company, reported to the Drupal Gutenberg maintainers. &#8220;We are able to create more content in a shorter time, allowing us to be much more agile than we used to.&#8221; </p>\n\n\n\n<p>Version 2.6 includes the following fixes and enhancements:</p>\n\n\n\n<ul>\n<li>Handle translations for mapped fields&nbsp;<s><a href=\"https://www.drupal.org/project/gutenberg/issues/3320395\">#3320395: Handle translations for mapped fields</a></s></li>\n\n\n\n<li>Support for field groups&nbsp;<s><a href=\"https://www.drupal.org/project/gutenberg/issues/3096002\">#3096002: Support Field Groups</a></s></li>\n\n\n\n<li>Fixes for Claro&nbsp;<a href=\"https://www.drupal.org/project/gutenberg/issues/3142400\">#3142400: Compatibility with Claro/Gin theme</a></li>\n</ul>\n\n\n\n<p>Drupal Gutenberg has removed support for Drupal 8 in this release. Version 2.6 is fully compatible with Drupal 10, released yesterday. Drupal 10 was previously scheduled for June 2022 but pushed back to December. This release shipped with all the new features of <a href=\"https://ckeditor.com/ckeditor-5/\">CKEditor 5</a>, which boasts a more modular architecture, but it is a complete rewrite of the previous version with no backwards compatibility. </p>\n\n\n\n<p>CKEditor is the most popular editor among Drupal users and is now the default editor. Drupal users can easily swap out their editor on per content-type basis, and the Gutenberg module can be enabled as an alternative to CKEditor. The module is superior to CKEditor when it comes to design controls and building layouts.</p>\n\n\n\n<p>The maintainers of Drupal Gutenberg hold periodic contributor meetings on a bi-weekly basis, every second Friday at 15-16 CET on <a href=\"https://meet.google.com/afp-yive-gio?authuser=0\">Google Meet</a>. They have fully embraced the vision of Gutenberg as a platform where blocks can be used to edit content and design across a variety of applications. If you are a user of the Drupal Gutenberg module, the maintainers are requesting feedback through a <a href=\"https://docs.google.com/forms/d/e/1FAIpQLScfprFqqc9luZYzXDclSTNeQOXa82thu3TlFbA0uIEx7sXwNg/viewform\">30-second survey</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 22:43:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WordPress.org blog: State of the Word 2022: A Celebration of the Four Freedoms of Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4480:\"<blockquote class=\"wp-block-quote\">\n<p>WordPress belongs to all of us, but really we’re taking care of it for the next generation.” </p>\n<cite>Matt Mullenweg</cite></blockquote>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>. Those who could not join in person joined via livestream or one of 33 watch parties held across 11 countries, with more than 500 RSVPs.</p>\n\n\n\n<img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&ssl=1\" alt=\"The four freedoms of open source: run the program, study the change, redistribute, and distribute your copies.\" class=\"wp-image-14111\" />\n\n\n\n<p>Executive Director, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, introduced the event with a reminder of why so many of those gathered choose WordPress—the Four Freedoms of open source. As Haden Chomphosy noted, open source is an idea that can change our generation, and WordPress is one of the most consistent and impactful stewards of those freedoms.</p>\n\n\n\n<p>As with past State of the Word events, Matt reflected on the year’s accomplishments, learnings, and aspirations as the project moves into 2023. From Gutenberg concluding its second phase of site editing in preparation for phase three—Collaborative Workflows, to the reactivation of meetups and global WordCamps, to the introduction of a new theme and plugin taxonomy, to musings on the potential of machine learning, WordPress enters its <a href=\"https://wp20.wordpress.net/\">20th year</a> continuing to define bleeding edge technology in thanks to the ecosystem’s vibrant community.&nbsp;</p>\n\n\n\n<p>The one-hour multimedia presentation was followed by an interactive <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">question and answer</a> session where Matt fielded questions from the livestream and studio audience. All questions will be responded to in a follow-up post on <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project\" target=\"_blank\">Make.WordPress.org/project</a>.&nbsp;</p>\n\n\n\n<p>Discover everything that was covered by <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watching the official event recording</a> and join the ongoing #StateOfTheWord conversation on <a href=\"https://www.tumblr.com/tagged/StateoftheWord?sort=top\">Tumblr</a>, <a href=\"https://www.instagram.com/explore/tags/stateoftheword/\">Instagram</a>, <a href=\"https://www.facebook.com/hashtag/stateoftheword\">Facebook</a>, <a href=\"https://www.linkedin.com/feed/hashtag/?keywords=stateoftheword\">Linkedin</a>, and <a href=\"https://twitter.com/hashtag/StateOfTheWord\">Twitter</a>. For another way to get involved, consider sharing your experience with WordPress in the <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">2022 WordPress Community Survey</a>.</p>\n\n\n\n<span id=\"more-14110\"></span>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Referenced Resources</strong>&nbsp;</h2>\n\n\n\n<ul>\n<li><a href=\"http://wordpress.tumblr.com/\">WordPress on Tumblr</a></li>\n\n\n\n<li><a href=\"http://engineawesome.com/\">Engineawesome.com</a> using Gutenberg</li>\n\n\n\n<li><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></li>\n\n\n\n<li><a href=\"http://wp20.wordpress.net/\">WP20.wordpress.net</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/\">learn.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/openverse\">Openverse</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/\">Make.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground\">WordPress Playground</a></li>\n\n\n\n<li><a href=\"http://photomatt.tumblr.com/\">Matt on Tumblr</a></li>\n\n\n\n<li><a href=\"https://distributed.blog/\">Distributed.blog</a></li>\n</ul>\n\n\n\n<p><em><em>Special thanks to <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a> and <a href=\"https://profiles.wordpress.org/eidolonnight/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>eidolonnight</a> for review and collaboration.</em></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 22:11:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: State of the Word 2022: Matt Mullenweg Highlights Gutenberg’s Progress, Announces New Community Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6540:\"<p>State of the Word (SOTW) watch parties kicked off around the world this afternoon as Matt Mullenweg delivered his annual address to the WordPress community. A small group of people gathered live in New York City to participate while the majority of enthusiasts watched via the livestream. Mullenweg spent an hour reviewing and celebrating the work done across the project in 2022 before taking questions from the audience.</p>\n\n\n\n<p>At last year’s SOTW, Mullenweg spoke about how Gutenberg adoption is growing beyond WordPress and how he believed it could become &#8220;bigger than WordPress itself.&#8221; In addition to Gutenberg <a href=\"https://wptavern.com/the-block-editor-is-coming-to-wordpress-support-forums\">getting rolled out on the bbPress support forums</a> this week to modernize the WordPress support experience, the block editor has found its way into more apps in 2022. </p>\n\n\n\n<p>Mullenweg cited a few examples including <a href=\"https://engineawesome.com/\">Engine Awesome</a> (a Laravel-based SaaS application), the Pew Research Center&#8217;s Political Typology Quiz, the web version of Automattic&#8217;s Day One app, and the Tumblr post form. He noted that in Tumblr, 99% of the editor is hidden &#8211; there&#8217;s no sidebar, everything happens inline. Mullenweg said he is hoping Gutenberg can create an &#8220;open block standard that can be used anywhere,&#8221; where users learn it on one system and it can be applied in other apps.</p>\n\n\n\n<p>For those who had been missing WordCamps, one of the major highlights of 2022 was the return to in-person events. From 2021 to 2022, the number of meetup groups doubled. Only one WordCamp was held in 2021 but that jumped to 22 WordCamps in 2022. Mullenweg highlighted how WordCamps have historically been &#8220;the magical ingredient&#8221; for onboarding people to contribute and teaching them about WordPress culture. </p>\n\n\n\n<p>For being just one year back into in-person events, WordPress has done well in 2022 with 1,399 release contributors and 652 contributing for the first time. There were 204 people who contributed to all releases in 2022 and 424 who contributed in 2021 and returned in 2022. Some 322 contributors took a break in 2021 and returned in 2022.</p>\n\n\n\n<img />\n\n\n\n<p>People are also contributing to Openverse, which has indexed more than 22 million images, 1.1 million audio files, and has handled more than 59 million requests in the last 30 days.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Tools Coming to the Community: New Taxonomies for the Plugin and Theme Directories and Staging &#8220;Playground&#8221; that Runs WordPress in the Browser</h3>\n\n\n\n<p>It wouldn&#8217;t be the State of the Word without a few exciting announcements. Mullenweg unveiled a plan to add new taxonomies for the theme and plugin directories that will help users more quickly ascertain the purpose of the extensions they are considering. </p>\n\n\n\n<p>For example, there would be a tag for the type of plugins that a developer might create to solve a problem but may not be intended for wide public use and may not come with dedicated support. Another tag would be designated for &#8220;Community&#8221; plugins, which Mullenweg said is for software that &#8220;belongs to all of us&#8221; with the lead developers stewarding it for the next generation. This tag is for plugins that do not have any upsells and invite contributions. Some of these plugins will be <a href=\"https://wptavern.com/matt-mullenweg-renews-push-for-canonical-plugins\">canonical plugins</a>, those that are officially supported by core developers and receive attention from the security team. Gutenberg and the importer plugins are a few examples.</p>\n\n\n\n<p>Another tag would be designated for commercial plugins that have some sort of upsell and often include commercial support. Anything with a pro version will fall within this category. Mullenweg said he wants WordPress.org to create an environment where commercial and non-commercial plugins can exist together harmoniously.</p>\n\n\n\n<p>The new taxonomies will be launching in the directories this month and will also eventually make their way into the plugin and theme screens inside the WordPress admin. This will be a major improvement that will give users of all experience levels a better understanding of the extensions they are examining, making it easier to select the right type for their needs. </p>\n\n\n\n<p>Mullenweg also announced WordPress&#8217; official support for the <a href=\"https://wptavern.com/new-wordpress-sandbox-project-demos-test-drive-themes-and-plugins-in-the-browser\">WordPress Sandbox project</a>, which we featured earlier this month. He outlined a plan for what will officially be called &#8220;WordPress Playground.&#8221; The experimental project uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser without a PHP server</a>, making it possible to spin up new playgrounds in just a couple of seconds. This will enable things like a guided, interactive WordPress landing experience where developers can edit code live and see the results right away. It will also make it possible for users to try plugins directly from the directory and may someday be used to allow people to contribute to WordPress core.</p>\n\n\n\n<p>A new website for WordPress Playground is located at <a href=\"https://developer.wordpress.org/playground/\">https://developer.wordpress.org/playground/</a> where anyone interested can check out the experimental project for running a WordPress instance entirely in your browser. There&#8217;s also a new #meta-playground Slack channel for those who want to join the conversation.</p>\n\n\n\n<img />\n\n\n\n<p>WordPress turns 20 next year. Mullenweg noted that not many software projects make it that long but WordPress is also growing faster than ever, currently powering 43% of websites according to W3Techs and 32% according to Builtwith. A new website at <a href=\"https://wp20.wordpress.net/\">wp20.wordpress.net</a> will be headquarters for the festivities, including swag, merchandise, and a new Milestones book for the most recent 10 years of WordPress&#8217; history. </p>\n\n\n\n<p>If you didn&#8217;t have the chance to catch the State of the Word this afternoon, check out the recording below to hear Mullenweg&#8217;s vision for the next phases of WordPress and see demos of all the progress made on block themes and full-site editing in 2022.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 01:42:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Post Status: The WP Agency Journey with Krissie VandeNoord of North UX — Post Status Draft 134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145935\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://poststatus.com/the-wp-agency-journey-with-krissie-vandenoord-of-north-ux-post-status-draft-134/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42735:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://twitter.com/krissierae\">Krissie VandeNoord</a>, founder of <a href=\"https://www.northuxdesign.com/\">North UX</a>, talks with Cory Miller about their work in creating people-first solutions for the nuanced needs of ecommerce and membership site owners. Krissie shares her story from her early days as a designer and blogger to launching her own agency. Her work and energy will encourage you to think beyond what is to build the possibilities that make things work better. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>Cory Miller is joined by North UX founder, Krissie VandeNoord to discuss her journey of agency ownership. Their work contributes to the businesses they serve, winning big and experiencing new levels of growth from the unique solutions they bring. From hearing about her background as a natural problem solver to her experiences engaging client needs with creative solutions, you will be inspired to break through limitations into the land of possibility.</p>\n\n\n\n<p>Top Takeaways:</p>\n\n\n\n<ul>\n<li><strong>Building for Nuance: </strong>North UX likes to hone in on what makes a business really unique and find solutions to highlight those things so they are experienced as an asset instead of a detractor.</li>\n\n\n\n<li><strong>Problem Solving Spiral:</strong> Poking around, asking questions, and figuring out ways to develop solutions spiraled Krissie from seeing and experiencing challenges to being a solution-building developer. Navigating and figuring things out is the work it takes to give you the experience to increase your confidence threshold. This can act as a springboard to making great connections and solving more complex problems.</li>\n\n\n\n<li><strong>Impact of Creating Efficiency: </strong>This isn’t just about creating solutions that get customers to take certain actions. It is also about saving hours or weeks of time spent on manual processes. As a small business owner, I know this makes a BIG difference, and that is exciting. Time can be invested in growth, making the impact exponential. Initial solutions fuel inspiration to shift from survival to ongoing enhancements.</li>\n\n\n\n<li><strong>Empowering DIY-ers:</strong> Rather than viewing self-build solutions as a threat or an indication of impending obsoletion, Krissie frames this as an opportunity to educate and become a trusted expert who will be there when more complex solutions are needed.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://www.northuxdesign.com/\">North UX</a></li>\n\n\n\n<li><a href=\"https://geovin.com/\">Geovin</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/krissierae\">Krissie VandeNoord</a> (Team Lead, <a href=\"https://twitter.com/northuxdesign\">North UX</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome back to Post Tes Draft. Um, this is another great story in our agency journey series. Uh, we\'ll be talking to Chrissy, one of our great agency owners. At post status about her journey today, and I got to a couple weeks ago, get to know Chrissy and more about her story, and I\'m really excited to, uh, be able to share her story with you.</p>\n\n\n\n<p>So Chrissy, thanks so much for being on the draft podcast, talking about your journey and what you\'re doing with WordPress.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Thank you so much for having me. I\'m super, super excited. Um, yeah, I couldn\'t be, I couldn\'t be more excited to just kind of be engaged in this community and seeing kind of.</p>\n\n\n\n<p>Communities, specifically around agencies kind of start to develop.</p>\n\n\n\n<p><strong>Cory Miller:</strong> It\'s really exciting. There\'s so many good people, members of post status doing great work, and I love when I get to talk to people like you and just see what cool things you\'re doing in the world. So could you tell us, uh, a little bit about [00:01:00] your agency and where you\'re at now and what you do for your clients in the world?</p>\n\n\n\n<p>Yeah,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> absolutely. So, um, I own North. And, um, my last name is Van De nor, which actually means from the North and, um, which is where North UX came from. When I started, I knew I didn\'t, I wanted to be more than just me. Um, and so I didn\'t want to just like, use my name. And so that\'s, that\'s how we got to North ux.</p>\n\n\n\n<p>And ux obviously. That\'s just very much the center of what we try to do is we\'re really trying to deliver, um, a development experience that very much is considerative of um, how real people are going to engage with what we\'re, what we\'re doing and what we\'re creating, and. [00:02:00] Very, very much like a people first kind of</p>\n\n\n\n<p><strong>Cory Miller:</strong> approach.</p>\n\n\n\n<p>Yeah. I love that there\'s real humans that actually have to use the web, so it\'s kinda good to have that experience. I love, I love the, the basis for the name. Um, so what kind of work do you do at your agency? Yeah. Basis,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> we typically, um, find, I would say, you know, right now, 99% of our work is, is WordPress in some regard, most of it is some kind of e-commerce, whether it\'s a membership type e-commerce, or whether it\'s actual like a product WooCommerce, um, setup and.</p>\n\n\n\n<p>I would say that we specialize in, uh, working with clients who need something that doesn\'t exist in an off-the-shelf plugin right now. Um, sometimes that\'s just a, a really custom user flow. Like they\'re, they\'re going to use WooCommerce, but they want to really walk their customers through in [00:03:00] a very set, set way.</p>\n\n\n\n<p>Um, sometimes it\'s custom functionality, um, like extending subscriptions or, um, We\'ve done a project with Restrict Content Pro where um, instead of renewing on, um, like a normal annual, like one year from when they signed up, we needed everybody to renew at the exact same time every year. Uh, little things like that that, um, really kind of, I think help businesses and set themselves apart in an industry to be able to just extend kind of like what\'s just out there and accessible to the general business population.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. And so I, I\'m sorry, I was writing a note, but if, if I missed it. So a lot of your work is membership site projects,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> um, either memberships or Woo</p>\n\n\n\n<p><strong>Cory Miller:</strong> commerce. Woo commerce. Okay. Yeah. Um, and, and particularly helping with the experiences and some of those custom things that don\'t happen out of the box that I know [00:04:00] from my experience, Christy, and you know, this way better than me building the e-Commerce Pro product back in the day.</p>\n\n\n\n<p>There are a thousand flavors of e-commerce times infinity because everyone has like you. I was trying to imagine when would somebody want to start the first day or whatever that could be, you know, probably a hundred different things, but like there\'s so much nuance in e-commerce and memberships that why organizations, agencies like yours exist because there\'s so many nuanced needs out there.</p>\n\n\n\n<p>Yeah,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> I mean, it\'s impossible for a plug and developer to be able to truly like be all things to all people and you know, arguably, Trying to do that to a certain extent is going to like water down or bloat, um, what they\'re actually offering. And so we tend to work with plugins that are built in a way and intended to be easily extended by another developer.</p>\n\n\n\n<p>Um, because what we just found is like businesses, [00:05:00] even though, you know, it\'s interesting cuz I think businesses. There are, there are definitely, they\'re buckets. You can put businesses, you know, you\'re direct to consumer, you\'re selling a physical product, you\'re selling, um, you know, digital content. And, but at the same time, like they\'re so different and so nuanced and they have such unique needs, um, that it\'s just really fun to kind of like hone in on what makes businesses really unique and then like work to highlight that and, and make that be an asset instead of a detractor.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, we would always have this example like, okay, you, you sell a t-shirt, but you want a membership with it. And oh, by the way, you want a 14 day trial, or you want them to pay a dollar for a 14 day trial. And, uh, I mean, you know, oh, and then you wanna be able to add consulting time or a coaching thing to it.</p>\n\n\n\n<p>And that\'s the day and age we we\'re, we\'re in right now is, The web enabling these businesses with [00:06:00] vast setups to be able to offer those things online where it was picking up the phone call and say, okay, well I\'ll take one of those, one of those, one of those. Well, this is technology doing that. So I love that you all are helping people with that, because I see that need so often with these vastly nuanced, uh, needs.</p>\n\n\n\n<p>Yeah,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> and I feel like that level of nuance was really only available at enter. Like, I mean, even like five, 10 years ago, you know, you, if you were a small business like you, you just had to try to make do, um, because it just wasn\'t as accessible. And there are so many tools now that get you, you know, 70% of the way there, that that extra 30% you can bite that off and it\'s no big deal, um, to a small business.</p>\n\n\n\n<p>Whereas before it just wasn\'t even. , you know, something they were really considering as a possibility.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And that\'s so great, like you said, with the enterprise, [00:07:00] um, you know, with huge budgets, Disney or some other big can code that probably for, to code that. Mainly now we have some tools and great agencies like yours now.</p>\n\n\n\n<p>So tell me a little bit about your team set up and how you work.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, so, um, I have. One official employee, um, and she\'s a project manager and she has been, oh my goodness, that was such a, I can\'t believe I waited so long to hire a project manager, . I should have done that a long time ago. Um, and then everyone else currently right now is a contractor.</p>\n\n\n\n<p>Um, they are either in Europe or in the us and I find that it works best for us to kind of just work on. Hourly model. That\'s how we structure our projects. Um, we give people estimated ranges and we bill hourly. And so I just do the same for, for my people. Um, and I, I just feel like that, [00:08:00] that for me, I\'ve found has been the best setup.</p>\n\n\n\n<p>I\'ve tried a few other things, but as far as like really like paying people for like the value that they\'re bringing, Really doing a true straight up hourly has been the best, best situation. And so right now we have got, um, A freelance designer and UX person, um, that contributes regularly. And then we\'ve got, um, a front end developer that contributes regularly.</p>\n\n\n\n<p>And, um, we have two backend developers beyond just myself. I\'m a full stack develop. I started as a designer and then quickly kind of moved into the development world cause I wanted to control what things looked like and, and now somehow a full stack developer. So, um, And, and just kind of wear all of the hats.</p>\n\n\n\n<p>But yeah, that\'s kind of the makeup of the team at the current moment. And we\'re honestly at the spot now where I\'m I. [00:09:00] Very much looking towards January and having meetings with clients and them saying, we wanna do this, we wanna do that. And I\'m like, okay, I need to figure out who I\'m hiring on , who I\'m gonna bring on</p>\n\n\n\n<p>Cause we\'re not gonna be able to cover</p>\n\n\n\n<p><strong>Cory Miller:</strong> all of this. That\'s a great reflection of doing good work, you know? Yeah.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> I\'m a, it\'s a really, it\'s, it\'s an exciting place to be, but it\'s also, um, I feel like whenever I bring somebody new on, there\'s this trade off. Um, my productivity decreases because I\'m spending time training them and getting up them up to speed and they\'re not like immediately productive.</p>\n\n\n\n<p>And so there\'s this like dip of like, Okay, now we\'re</p>\n\n\n\n<p><strong>Cory Miller:</strong> great. . Yes. Yes. Well, um, okay, so that\'s how you work and you started getting in a little bit to your journey. So that\'s where you are now. Um, working with WordPress obviously, but also membership sites, WooCommerce, and how your team kind of set up and how you work with clients.[00:10:00]</p>\n\n\n\n<p>Tell us how you got here.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, so like I said, I started as a designer, um, and. It was just like early two thousands, mid two thousands, somewhere there, , where, you know, blogs were super popular and everybody had a blog and um, and so I. I had a blog, but I was a designer, so I wanted to make the blog look like I wanted it to look like, especially if it\'s like representing like myself.</p>\n\n\n\n<p>And so I just, it, it happened to be in WordPress and I just got in there and started like poking around and figuring things out. And that was really kind of like my first experience with code was kind of just. Poking things. And, you know, fast forward, you know, a few years I started with a very small agency.</p>\n\n\n\n<p>Um, and so we, we all wore a lot of hats. And when [00:11:00] I started it was, oh, you know, can, you know, doing a lot of design, but it was, oh, can you, you know, tweak this, you know, h t l newsletter or can you tweak this webpage or whatever. And after a few years, I would start to ask them questions and they\'d be like, you know, more than we do about development right now,</p>\n\n\n\n<p>And, and it just kind of spiraled into. Becoming the queen of web, um, and, and grew from there. I\'ve just always been a natural problem solver. And so that idea of, Hmm, can I do this? I wanna find out , like I wanna figure out how I can do that. Um, and so it, yeah, it just kind of spiraled from there. And then, um, I was with that small agency for I think about eight years, and it just was a real obvious, um, You know, they weren\'t bringing in the business to fill my plate.</p>\n\n\n\n<p>And, um, and so we parted ways, but, and at, at [00:12:00] first they were like, let\'s, you know, keep this relationship going. We\'ll use you as a contractor. But I was like, ah, I just really want a job . Um, I was at that point in time, um, when I started my business, I had a one, I, not even a one year old, he wasn\'t even one years old.</p>\n\n\n\n<p>my second kid. and my daughter was three at the time. So like, I had small children and I was just like, I just want something like nice and consistent and reliable. Um, but it, I did end up starting my business and it\'s been fantastic. Um, and I\'ve never looked back. Um, and it\'s been just, uh, like in some regards, my fear of it, lacking the stability I\'m feeling.</p>\n\n\n\n<p>I\'ve got these young kids, um, Has like the other side of that coin is it\'s offered me the flexibility to like be fully invested in work and at the same time feel like I can be present with my kids and my family. Um, [00:13:00]</p>\n\n\n\n<p><strong>Cory Miller:</strong> do good work and also live life, like Right. Live and manage life. Yeah, absolutely. Now what, what year was it when you started North ux?</p>\n\n\n\n<p>Uh, 2016. 2016. And then how, how did it evolve to, to get into where you\'re really focusing on a lot of commerce and membership projects? Um,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> you know, it kind of just happened. Organically. One of my first clients was, um, I took over a project that was WooCommerce, um, from someone else. And that was the first time I think I\'d done anything with WooCommerce that really involved extending it in any way.</p>\n\n\n\n<p>Um, and so I just like dove right into the deep end. And, um, man, I, I learned a lot about Woo Conversa in that project cuz we were migrating them. From a whole other system and subscriptions. And so it was, it was just a beast of a [00:14:00] process, um, that took way longer than we thought it was going to. But, um, I gained so much from the experience that then it just was a springboard towards doing more and more along those lines.</p>\n\n\n\n<p>And I also made some really great connections and working on that project, kind of like. Space. Um, and so it just was kind of like a natural extension. And then I think also because I am such a, I just, I really love the problem to solve. Um, I think that e-commerce space just tends to offer the problem a lot.</p>\n\n\n\n<p>And so I naturally gravitate towards like, Ooh, that\'d be fun, .</p>\n\n\n\n<p><strong>Cory Miller:</strong> Um, you, you have to have that mindset and attitude, I think for that because I think of those subjects, I go, oh my gosh. Every possibility, every possible problem. But you have to be somebody that loves that rub. Rubrics cube, you know,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> kinda problem solving.</p>\n\n\n\n<p>Oh yeah. Yeah. I used to say, um, and I don\'t think this is true anymore, but especially like when I was still working at that agency now as I transitioned into my own business, that when somebody [00:15:00] would come to me and say like, can this be done? I would do just enough research to feel like 60% confident that the answer was yes,</p>\n\n\n\n<p>And then I\'d be like, yeah, we can do it. And then I would just figure it out. Um, and I\'m also just a very much like a, I will finish it. Like it may take longer than I wanted it to. Um, but I\'m kind of like, I can\'t let it go until like I actually solved the problem. And so I don\'t think there\'s any, there\'s ever been something where I like was like 60% and then got into it and was like, oh, nope.</p>\n\n\n\n<p>Nevermind. Can\'t do it. . Um, and I would say anymore, like I. My confidence threshold is much higher just because from experience. Um, so I\'ve never, I think at that 60% mark, but that\'s definitely where I started</p>\n\n\n\n<p><strong>Cory Miller:</strong> that I think that\'s good though. And that\'s the beauty of everything we\'re doing with talented people like yourself is if you have that much confidence, confidence, at least, you know, the other part is part of [00:16:00] just navigating and figuring it out.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Exactly.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Exactly. Can you, can you share, um, and you don\'t have to say the name, of course. We want to, you know, I know sometimes we, we need to be careful sharing clients and names and stuff. We can, can you talk about a recent project you\'re really proud of, or you really appreciated what you did, uh, with, with some of your clients?</p>\n\n\n\n<p>Um,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> stick out. Oh my goodness. Like so many of them. So many of them. And I don\'t think I have any, well, I\'ve got one that I\'m currently working on that I can\'t really talk about, but the rest are all out there for anybody to experience. Um, trying to think what\'s the best, like, I think the most recent one, um, that has just like a real kind of feel, good sense to it is, um, and I talked about it in, um, the woosh, um, presentation that I.</p>\n\n\n\n<p>Goodness. When was that? Beginning of October. Um, but it\'s this furniture company, Giovan, and we did [00:17:00] a implementation, well, we, they were on a very static site. Um, they sh they sold through dealers and so they, for a long time just didn\'t have the need for e-commerce because it, you know, dealers are pay, we\'re placing large orders, that sort of a thing.</p>\n\n\n\n<p>But we essentially moved them into, like, we moved them from like way old to like way new. And to watch them kind, kind of like step into this, um, digital world has been really fun. And, um, we created, you know, a 3D model that connects to the WooCommerce attribute so people can like customize their furniture pieces and like see it like in real time, um, which is really cool.</p>\n\n\n\n<p>But, Like, the part that I\'m loving about it is how much we are like equipping, like the people inside the company and like how it boosts [00:18:00] their excitement about what they\'re doing and then, um, like how that then trickles out to like their customers. And just like having all these like improved experiences and being able to do things so much more efficiently.</p>\n\n\n\n<p>I love it. We like, create efficiency for a business, like almost more so than, um, you know, when we design a great landing page and the, you know, we look at the analytics and we\'re like, oh, the users are doing exactly what we wanted them to do. That\'s, that\'s rewarding, but, I think that I get a little bit more of like a rewarding sense when I\'m like, I just saved you like 20 hours of work every month.</p>\n\n\n\n<p>Um, that to me, I\'m, I think just because I am a small business owner, I know how big of a difference that makes to a small business that I get really excited about this stuff.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Oh yeah. Anytime you can save time like that, I hope they value and understand that like you just took a big swath of our time out, that we can focus [00:19:00] on other things now.</p>\n\n\n\n<p>And particularly like a furniture company that might, that you know, more traditional sales thing and being able to have that ability now on the web I think is pretty, pretty amazing. Oh</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> yeah. And they do. I mean that\'s, um, I need to figure out how to better quantify those things when I get those calls cuz they\'re harder things to try to quantify is like when you\'re talking about like employees time.</p>\n\n\n\n<p>But we built one system that has um, an integration that tracks like continuing education credits. And this organization put on a conference every year and they\'ve got, their members are tracking their credits score. The way that they were trying to process that. It was literally like manual assignment sheets and then somebody was like data entering, like all of this stuff.</p>\n\n\n\n<p>And after we transitioned to this new digital system, and it\'s like the conference was over and like all of the credits were entered like in real time as people attended because it happened digitally. He was just like, I don\'t even know what to do with myself. I mean, I would\'ve spent six [00:20:00] weeks trying to process all of these c e credits.</p>\n\n\n\n<p>And I don\'t have to, like, it\'s done. I don\'t, like it was just mind blowing to him of like, oh my goodness, I don\'t have to do</p>\n\n\n\n<p><strong>Cory Miller:</strong> this. I\'ve got experience helping a mental health organization, um, offer CEUs. And, and they do have that same thing, so I need to refer them on to you to do something like that because, um, she was the point of content.</p>\n\n\n\n<p>Their marketing director would spend some, probably half a day on the back end after we did a C E U. Um, To like, you know, get all the paperwork and everything ready to go. Yeah. And</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> it\'s, it\'s always somebody like that. It\'s always like, why is the marketing director having to do this? Because like there isn\'t somebody that is, I, you know, there\'s nobody else to do it and just has to get done.</p>\n\n\n\n<p>And cuz you know, they do the website and so, you know, whatever, like it somehow falls in their lap. But those are the people that I think appreciate the most when you save them time too. Cuz they\'re like, I didn\'t wanna be doing this.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. Yeah. Uh, it seems very much [00:21:00] too is like if you\'re an organization business that is trying to do more of those things online to reach more people and probably secondarily don\'t fully realize it efficiently, um, that\'s how you help people navigate that and then build the result they\'re trying to get.</p>\n\n\n\n<p>That helps save time and increase the, and grow the.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> And honestly, I think that in some regards, when small businesses can see like that kind of a direct value, it\'s easier for them to bite off a more sizable project, like financially speaking, because they\'re like, oh shoot, I don\'t have to hire somebody.</p>\n\n\n\n<p>Well, that\'s a lot of money that I\'m. Saving, like sure, that\'s not a big deal if I am gonna pay you, you know, 30 or $40,000 to build this, you know, site for us. Um, cuz now I don\'t, I\'m not hiring another person. Um,</p>\n\n\n\n<p><strong>Cory Miller:</strong> and so it\'s a, it\'s a big win. We see that all the time at post status with our members trying to hire hiring\'s tough.</p>\n\n\n\n<p>Not even now. It\'s just tough in general because [00:22:00] mm-hmm. , um, there are some tech companies that can throw lots of money at someone. You, the person wants to stay engaged with interesting projects, and I think that\'s where our agencies like yourself, um, really have a great solution in that. Why hire a full-time person?</p>\n\n\n\n<p>That might not have the training excu, uh, skills experience that you all have access to and, and have, um, to do that. Where I, I hear a lot of our agencies, you know, they\'re the support, summer support for just, you know, basic website updates, but then someone like you all just to, you know, manage, I know from my own, our own business projects, You know, when I, when we add in an e-commerce option, I\'m like, who\'s gonna babysit it?</p>\n\n\n\n<p>Who\'s gonna be there when we need to do something more than the base software might do for us? Cuz we have those new odds setups and things like that. And then having someone like North UX where you can rely on them without having this, there\'s so much overhead. Like we talked just a minute ago of hire having [00:23:00] a full-time employee, but someone who knows WordPress and web stuff.</p>\n\n\n\n<p>That\'s even a higher bar, I think.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Oh yeah. Oh. Um,</p>\n\n\n\n<p><strong>Cory Miller:</strong> do you do ongoing, um, support retainers, things like that? Yes.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yes, we do. And what I, what\'s interesting is I was, I was just actually just sharing the story the other day that about a client, um, that like when they came to us, and this is, this is the same client with the, uh, CU credits.</p>\n\n\n\n<p>Like when they came to us, um, they had it, they had a WordPress site, but Oh my word. It was so outdated and it was, There was, there was p h P in the content editor. Like, I mean, it was just like, and I\'m like, I dunno what, like it\'s, it was so like, Not great. And so it was very much like, and, and they were very kind of like, oh, trepidatious about, you know, spending money.</p>\n\n\n\n<p>And so like, we started them on this like super small monthly plan where we\'re [00:24:00] literally just like, we\'re just gonna duct tape things to kind of like keep this thing going. And then I, you know, gave them proposal for a new site. Really like pared it down to try to get it to this point where it, it was a digestible cost for them.</p>\n\n\n\n<p>Um, and so it was like a really limited scope. Um, and like, you know, that first plan they were on, I think was like $500 a month or something like that. And, um, now they\'ve turned into clients and like once we launched their site, they\'re like, we can automate that. And they, I mean, we probably. On a given month, do 30 to 50 hours worth of work for them because there\'s just something else that they\'re like, Ooh, let\'s make.</p>\n\n\n\n<p>New and shiny. Let\'s make that new and shiny. Let\'s do this. And you know, and they have really bought into like the value of what we\'re doing for them. And so it\'s not even so much like, uh, a support plan or a retainer from [00:25:00] just like a, keeping the site going. It\'s very much like an ongoing enhancements.</p>\n\n\n\n<p>And we find that a lot of our clients kind of, once we do like the first big project, they. Start to kind of move into this, like, oh, we just want to continue to iterate and add more features and functions and, um, and just make it bigger and better and, and whatnot. So it\'s, it\'s even beyond just the support of it.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Be that backstop, be that partner ally when let them do what they do best and you all do what you do best and that seems to work fantastically. Um, okay. So, you know, with all of your experience with, with e-commerce, Myriad of versions of this. I\'d love to get your thoughts on where it\'s going, what trends and things and themes you see.</p>\n\n\n\n<p>You know, during C O D. Um, I was just talking to an agency owner yesterday that, you know, they were working with, let\'s say yoga studio studio business owners, and [00:26:00] their, their business and business model got flipped on its head. So then they transitioned to use web, which I think is such a, if there\'s positives that come outta Covid, I would mm-hmm.</p>\n\n\n\n<p>or, or the pandemic. I would say it\'s this. Did you know the whole world exists out here for your. From an e-commerce and all these type of things, perspective, what are you seeing? What are you looking forward to, you know, out there as, as you know, particularly as you work daily with clients doing these, these cool projects for them to grow their businesses.</p>\n\n\n\n<p>What, what things are you seeing that stand out to you?</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Um, yeah, so I think that there are a lot of people that are kind of like jumping into. Um, online business kind of a thing like for the first time. Um, and at the same time, like as so many companies have kind of come out with these, and even as work processes moved more towards like a, a, um, an actual usable like [00:27:00] page builder, like d i y kind of a website thing, um, I think that.</p>\n\n\n\n<p>You know, I think you could either look at that from, a couple of, you can look at it like, oh, it\'s almost like, well, we\'re just not needed anymore. People can just do it themselves. Um, but the reality is like, that\'s not true. But I think that the way that we are, um, engaging with the people that do want to do it themselves, um, I think there\'s opportunity there and I\'m kind of excited about some of the things cause I.</p>\n\n\n\n<p>As nor as an agency, we\'ve really served these very, um, like small businesses, but very established small businesses. Like they\'ve been around for a while. They have, you know, 10 to 20 employees. Um, you know, they\'ve got money to invest in a sizable project. Um, But I\'ve kind of always wanted to figure out, um, a better way to catch people, like catch businesses as they\'re [00:28:00] just starting because of what I\'ve, I mean, so many of our clients made poor tech decisions in the beginning and are with us because we are unraveling something.</p>\n\n\n\n<p>And so how can, how can with this new. Uh, you know, it\'s so easy to do, like no code or page builders or whatever, like how can I walk people through, like just when they\'re just starting to give them resources so they understand the decisions that they\'re making and are when they\'re comparing apples to apples or apples to oranges.</p>\n\n\n\n<p>Cuz sometimes they don\'t even know. And, um, they\'ve got a cucumber and they had no idea, um, , but it\'s technically a fruit. So, Um, but like give them the resources and the knowledge about technology in a way that they feel empowered to make some decisions and like also establish ourselves as, um, as experts in this area so that [00:29:00] then when they get to the point where they need the one little extra piece, like were there to help.</p>\n\n\n\n<p>Um, and so I think that there is definitely almost like that, um, moving towards like a. Partner with you around some of the stuff you can do for yourself, um, as opposed to just, we\'re gonna do it all for you.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I can see that. You know, we, we, we have a great friend who we helped start, get her off the ground and she was doing a physical product and, um, it was interesting trying to look at all the options out there.</p>\n\n\n\n<p>And I know a little bit more than most people, uh, when it comes to these. But what we found too was like there\'s a graduation point you may start selling here and it helps fill a need, but then you get into more complex, and if you\'re like me, I go, I don\'t do this all day, every day. I wanna find somebody, an expert to lead and guide me through these things.[00:30:00]</p>\n\n\n\n<p>I\'ve talked to a lot of our agency members like yourself and go, there\'s this shift from, it\'s not just Technic delivery. That\'s part of it for sure. But there\'s also this thing, I hope clients are more and more valuing that having a guide like yourself who has been there, done that do, does this every day to help you not make those big pitfalls.</p>\n\n\n\n<p>So when there\'s those steps, it seems like there might be a. , you know? Mm-hmm. , maybe we get on this thing, it\'s the software as a service software solution, and it gets \'em to a step, but then they\'re like, we\'re ready to graduate. We wanna do all these things. Then they can come to North UX and say, guide me, lead me, and deliver the project too.</p>\n\n\n\n<p>Yeah. Are, are you seeing that more and more to, it seems like that\'s what you\'re saying.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, exactly. And I think what I\'m, what I\'ve seen is I feel like, um, I\'ve encountered so many businesses that kind of, you know, they did the steps and then they got to a point where they were like, we wanna take the next step, but we can\'t figure out how to do it from where we\'re at.</p>\n\n\n\n<p>And [00:31:00] by the time that they\'re actually starting to engage with someone who knows this space, it\'s like, oh, well we actually need to go all the way back. Square one because you have reached the top of where these stairs were going. Yeah. Um, and so helping them to make the decisions along the way that are really paving the way for their future, even before they really know what their future holds, um, I think is just, it\'s huge.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Oh yeah. And there\'s so much complexity there and, and I say that\'s a byproduct of success. You\'ve gotten to this point that you need to come to Christy and other, other, our agency owners and help you guide them because you\'ve gotten to this complexity and hopefully that\'s called success. Well, you\'re ready.</p>\n\n\n\n<p>Yeah. You need, you need this. You\'re ready to take this new step and blow your business out the doors for the next stage. Yeah.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> And we also, like, we\'ve even. Taken clients through to where they\'re, they\'ve now they\'ve grown enough that they\'ve hired an in-house developer and like we\'ve partnered with them to help them figure out like, how do we hire, should [00:32:00] we hire an in-house developer?</p>\n\n\n\n<p>Um, and how do we hire and then continue to have a collaborative relationship to like supplement. , you know, their developer and like also just helping business understand like, you know, it\'s unrealistic to think that you\'re gonna hire one person that\'s going to be able to truly do everything. Exactly.</p>\n\n\n\n<p>You know, and so helping them understand like what is the range of skills and where\'s like the 80% mark in a role that you could carve out? And where is this 20% like? Somebody that actually could do the 20% and then you\'re still stuck with , the 80% that they\'re not skilled for having to outsource, um, those kinds.</p>\n\n\n\n<p>Of things of like really just walking everybody through from the point of like DIYing your first website to your big enough business that you have an in-house developer and we\'ve held your hands the whole way</p>\n\n\n\n<p><strong>Cory Miller:</strong> through . It seems like that\'s a trend in a lot of business, not just in the technical side, but where you might have somebody, that person, and I\'m not [00:33:00] trying to devalue that person, but is a coordinator of these things that works with great groups and partners.</p>\n\n\n\n<p>I don\'t wanna say vendors, but partner. Yeah, that can come in and do those, and they\'re air traffic control. I need to get these things done. We talk about a lot with the marketing side of things, Matt. You might have some that coordinates all these other things, but if you, like you said, if you expect that person to do everything, you\'re wishing for a unicorn.</p>\n\n\n\n<p>Yeah. Yeah. All right. Well, Christy, this has been awesome. I want to ask finally, um, what you\'re excited. Coming up next year or so, um, with your work and your agency work in the world.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah. Um, oh my goodness. I\'m like, what, what do I pick? . Yeah. Right. I\'m excited about a lot. Um, I think the thing that I\'m most excited, and I\'ve not said this like out loud publicly yet, I don\'t think, um, but kind of along these lines of [00:34:00] this, like to helping people start at the beginning is, um, I\'m getting ready to kind of launch like a pilot program of what I\'m calling like a e-commerce website in a day where, um, we have like some really specific.</p>\n\n\n\n<p>Steps that like we walk them through that they engage with like some forms and like, you need to gather this and you need to gather that and you need to do that. And where they kind of like walk them through prepping all the things that they need and making some of the preliminary decisions. And then, um, they literally schedule a day with us where we\'re just gonna crank out, um, you know, we\'re gonna start with our, our skeleton theme and just be able to get them.</p>\n\n\n\n<p>A site up and going because they\'ve done all of the preliminary work, will import their products, you know, all of that stuff, and it\'ll happen on that day, and then they\'ll have a website. Um, that\'s fantastic. I\'m really excited about it. I [00:35:00] did kind of a really, a trial project with someone last year and, um, she, she does pottery and so this is again, Our, we\'ve been with these really established small businesses, but starting to kind of find some people that are just getting started on their business.</p>\n\n\n\n<p>And after we launched her site, she was like, I just did a new product drop and I made $4,000 at a time of the year where I wouldn\'t have done an in-person event and would not have made any money. You know? And she\'s like, Like, I can\'t believe I waited this long to have my own website. Um, and so I\'m excited about like that kind of stuff.</p>\n\n\n\n<p>Um,</p>\n\n\n\n<p><strong>Cory Miller:</strong> that\'s so fun when you\'re able to, yeah. The work you\'re doing contributes to this big win where someone\'s in that setting able to like start and grow their business in a really tough time. Uh, and then like your furniture, uh, example is help them make processes more efficient and grow their [00:36:00] business.</p>\n\n\n\n<p>Yeah. Exciting work. Thank you, Christie, for sharing your story. And, um, tell us finally where they can find out about more about you and your, your work.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, so, um, north ux design.com is where you can certainly know all about North UX and what we\'re doing and, um, Whatnot. And then as far as me, best place is probably Twitter, which, um, my personal Twitter is Chrissy Ray, k r i s s i e r a e.</p>\n\n\n\n<p>Um, and I do have a North Uax design Twitter as well. Um, but it\'s not quite as, it\'s a little bit more, you know, polished professional. I don\'t engage with it quite as much, but those are great places to find me.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, thank you Christy, for this time and sharing your</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> story. Yeah, thanks so much for having me.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 20:06:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Matt: Fusion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=72681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://ma.tt/2022/12/fusion/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:973:\"<p><a href=\"https://www.energy.gov/articles/doe-national-laboratory-makes-history-achieving-fusion-ignition\">This is a big deal</a>. There are a lot of <a href=\"https://chat.openai.com/\">big deals</a> happening right now, it&#8217;s honestly a very exciting time to be in tech. I feel like a sailor in a tumultuous sea, and they should have sent a poet. T. S. Eliot was actually the inspiration for WordPress&#8217; tagline &#8220;Code is Poetry&#8221; and I&#8217;m reminded of this from <a href=\"https://stuff.mit.edu/people/dpolicar/writing/poetry/poems/fareForward.html\">The Dry Salvages</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>O voyagers, O seamen,<br />You who came to port, and you whose bodies<br />Will suffer the trial and judgement of the sea,<br />Or whatever event, this is your real destination.&#8221;<br />So Krishna, as when he admonished Arjuna<br />On the field of battle.<br />Not fare well,<br />But fare forward, voyagers.</p>\n</blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 06:19:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Post Status: Annual Survey • State of the Word 2022 • Suggest Community Summit Topics • WordPress Playground (WASM)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145943\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://poststatus.com/annual-survey-state-of-the-word-2022-suggest-community-summit-topics-wordpress-playground-wasm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16511:\"<h2 id=\"h-this-week-at-wordpress-org-december-12-2022\">This Week at WordPress.org (December 12, 2022)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Tune in Thursday for Matt\'s annual State of the Word address. Check out the WordPress Playground now. It brings key platform dependencies into the browser that you can embed in your own site today.  Your feedback into the annual WordPress survey helps shape the project, so fill it out as soon as possible. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_adc852-65\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-ic_people\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">2022 Survey, SotW, Community Summit, and the WordPress Playground</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f465.png\" alt=\"👥\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6dd.png\" alt=\"🛝\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/sotw-2022-a-celebration-of-the-four-freedoms-of-open-source/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-33 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2022/12/08/accessibility-team-meeting-notes-december-2-2022/\">Accessibility Team Meeting Notes: December 2, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">Idea: Creating a translation events kit for Meetups</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/15/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-december-14-2022/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">December Update: Global Meetup Reactivation Project</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/latest/#:~:text=hallway%20hangout%3A%20performance%20considerations%20for%20block%20themes\">Hallway Hangout: Performance Considerations for Block Themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">What’s new in Gutenberg 14.7? (7 December)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">Enhancing the Scripts API with a loading strategy</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/update-to-content-only-editing-filter-namespace/\">Update to content only editing filter namespace</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/14/dev-chat-summary-wednesday-december-14-2022/\">Dev Chat summary: Wednesday, December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/13/editor-chat-agenda-december-14-2022/\">Editor Chat Agenda: December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/08/editor-chat-summary-wednesday-december-7-2022/\">Editor chat summary: Wednesday, December 7, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/07/dev-chat-summary-wednesday-december-7-2022/\">Dev Chat summary: Wednesday, December 7, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-dev-blog\"><a href=\"https://developer.wordpress.org/news/\">Dev Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2022/12/13/application-state-managed-withdispatch-withselect-and-compose-101/\">Application state managed withDispatch, withSelect and compose 101</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/12/documentation-team-update-december-12-2022/\">Documentation Team Update – December 12, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2022/12/08/nominations-are-in-hosting-team-rep-2023/\">Nominations are in – Hosting Team Rep 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/14/notes-global-marketing-team-meeting-november-30-2022/\">Notes: Global Marketing Team meeting, November 30, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/14/notes-global-marketing-team-meeting-december-7-2022/\">Notes: Global Marketing Team meeting, December 7, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">Refreshing&nbsp;the WordPress Showcase</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2022/12/13/community-meeting-recap-14-december-2022/\">Community Meeting Recap (13 December 2022)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/13/performance-team-meeting-summary-13-december-2022/\">Performance Chat Summary: 13 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/13/agenda-weekly-polyglots-chat-dec-13-2022-700-utc/\">Agenda: Weekly Polyglots Chat – Dec. 13, 2022 (7:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/12/plugin-review-team-12-december-22/\">Plugin Review Team: 12 December ’22</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2022/12/08/hallway-hangout-lets-chat-about-the-future-of-custom-css-with-block-themes/\">Hallway Hangout: Let’s chat about the Future of Custom CSS with block themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2022/12/08/fse-program-site-editor-sneak-peek-summary/\">FSE Program Site Editor Sneak Peek Summary</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">FSE Program: Seeking volunteers to use Replay.io for capturing bugs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/test-team-update-12-december-2022/\">Test Team Update: 12 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2022/12/14/themes-team-meeting-notes-december-13-2022/\">Themes Team Meeting Notes –&nbsp;December 13, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/themes-team-update-december-13-2022/\">Themes team update December 13, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/12/meeting-agenda-for-december-13-2022/\">Meeting Agenda for December 13, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/09/training-team-meeting-recap-for-december-6-2022/\">Training Team Meeting Recap for December 6, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">A Developers Guide to Block Themes – Part 2</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-development-live-stream-building-an-advanced-query-loop-plugin\">WordPress development live stream: Building an Advanced Query Loop plugin</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=start-blogging-in-2023-part-2-planning-your-blogs-content\">Start Blogging in 2023 Part 2: Planning Your Blog’s Content</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=start-blogging-in-2023-part-1-planning-to-reach-your-audience\">Start Blogging in 2023 – Part 1: Planning To Reach Your Audience</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep3-wordpress-migration-local-live-to-local-live-bangla\">EP3: WordPress Migration (Local/Live to Local/Live) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=get-blogging-in-2023-set-up-your-blog-interactive-2\">Get Blogging in 2023: Set Up Your Blog (Interactive)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=get-blogging-in-2023-set-up-your-blog-interactive\">Get Blogging in 2023: Set Up Your Blog (Interactive)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-developing-blocks-without-react-review\">Let’s code: Developing Blocks without React! – Review</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep2-wordpress-installation-on-local-and-live-cpanel-ftp-mysql-bangla\">EP2: WordPress Installation on Local and Live (cPanel, FTP & MySQL) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep1-wordpress-environment-setup-local-wp-laravel-valet-bangla\">EP1: WordPress Environment Setup (Local WP & Laravel Valet) | Bangla</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/manage-your-block-theme-fonts-with-create-block-theme/\">Manage your block theme fonts with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/the-key-to-locking-blocks/\">The Key to Locking Blocks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/templates/\">Using Page Templates</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">Streamline your Block Theme development with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/trabalhando-com-estilos-globais/\">Trabalhando com estilos globais</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/padding-versus-margin/\">Padding Versus Margin</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://phpconference.com/berlin-en/\">International PHP Conference Berlin 2023</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 02:41:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Performance Lab Plugin to Add New Experimental SQLite Integration Module in Upcoming 1.8.0 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/performance-lab-plugin-to-add-new-experimental-sqlite-integration-module-in-upcoming-1-8-0-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7434:\"<p>WordPress&#8217; Performance Team contributors have merged <a href=\"https://github.com/WordPress/performance/pull/547\">a new experimental SQLite integration module</a> that is on track to be included in the upcoming version 1.8.0 of the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> plugin. (This is the plugin that contains a collection of feature plugins with performance-related modules the team hopes to land in WordPress core.) The new module allows the adventurous to test the new SQLite implementation, with the understanding that the overall user experience will still be rough.</p>\n\n\n\n<p>In a proposal titled <a href=\"https://make.wordpress.org/core/2022/09/12/lets-make-wordpress-officially-support-sqlite/\">Let’s make WordPress officially support SQLite</a>, Yoast-sponsored core contributor Ari Stathopoulos contends that less complex sites (small to medium sites and blogs) don&#8217;t necessarily benefit from the requirement of using WordPress&#8217; standard MySQL database:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>On the lower end of the spectrum, there are small and simple sites. These are numerous and consist of all the blogs, company pages, and sites that don’t have thousands of users or thousands of posts, etc. These websites don’t always need the complexities of a MySQL/MariaDB database. The requirement of a dedicated MySQL server increases their hosting cost and the complexity of installation. On lower-end servers, it also decreases performance since the same “box” needs to cater to both a PHP and a MySQL/MariaDB server.</p>\n</blockquote>\n\n\n\n<p>In an ideal world, users could select their database type during installation. Stathopoulos said this would require WordPress to have a database abstraction layer, which other platforms like Drupal have had more 10+ years. </p>\n\n\n\n<p>&#8220;Building a database abstraction layer for WordPress would be a colossal task – though it might be one that, at some point in the future, we may have to undertake to ensure the project’s continued evolution and longevity,&#8221; he said.</p>\n\n\n\n<p>As an alternative, Stathopoulos sees SQLite as a &#8220;perfect fit&#8221; and cited the benefits of using it for smaller websites:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<ul>\n<li>It is the most widely used database worldwide</li>\n\n\n\n<li>It is cross-platform and can run on any device</li>\n\n\n\n<li>It is included by default on all PHP installations (unless explicitly disabled)</li>\n\n\n\n<li>WordPress’s minimum requirements would be a simple PHP server, without the need for a separate database server.&nbsp;</li>\n\n\n\n<li>SQLite support enables lower hosting costs, decreases energy consumption, and lowers performance costs on lower-end servers.</li>\n</ul>\n</blockquote>\n\n\n\n<p>This new SQLite integration module is based on the <a rel=\"noreferrer noopener\" href=\"https://github.com/aaemnnosttv/wp-sqlite-db\" target=\"_blank\">wp-db-sqlite</a> plugin, a SQLite database driver drop-in that is also <a href=\"https://wptavern.com/new-wordpress-sandbox-project-demos-test-drive-themes-and-plugins-in-the-browser\">used by the WordPress Sandbox project</a>, as WASM doesn&#8217;t support MySQL. The wp-db-sqlite plugin was based on the original work of Kojima Toshiyasu in his eight-year-old <a href=\"https://wordpress.org/plugins/sqlite-integration/\">SQLite Integration plugin</a>, which is no longer available for download on WordPress.org. Stathopoulos said these solutions have evolved over the years, have been thoroughly tested, and proven to work seamlessly, although they are not well known among users.     </p>\n\n\n\n<p>Matt Mullenweg <a href=\"https://make.wordpress.org/core/2022/09/12/lets-make-wordpress-officially-support-sqlite/#comment-43729\">commented</a> in support of the proposal so the implementation moving into the Performance Lab plugin may have a decent shot at landing in core someday in the future. Most participants in the discussion on the proposal were supportive of the idea but also discussed a few of the potential drawbacks. These include poorer support for things like multi-author editing and search. </p>\n\n\n\n<p>&#8220;MySQL is and should continue to be the default because if you have aspirations to be the next big thing, then MySQL can scale better,&#8221; Stathopoulos said.&#8221; If on the other hand you just want a blog, a company site with your about page and a contact form to have an online presence, or any type of small site (which is arguably the majority of sites on WordPress) then SQLite is all you’ll ever need and it will perform a lot better.&#8221;</p>\n\n\n\n<p>A few participants in the discussion also bristled at the controversial, religious <a href=\"https://sqlite.org/codeofethics.html\">code of ethics</a> SQLite holds for its contributors. Stathopoulos sees it as a non-issue because the project is open source and the technology is widely used.</p>\n\n\n\n<p>&#8220;Its popularity speaks volumes regarding what it can do and where it can be used,&#8221; he said in response to criticism of the idea of tying WordPress to a project with an objectionable code of ethics.</p>\n\n\n\n<p>If you have used WordPress from the early days, you have witnessed it become more complicated over the years. Discussions around the idea of a &#8220;<a href=\"https://chriscoyier.net/2022/11/01/wordpress-lite/\">WordPress Lite</a>&#8221; have popped up every few years, but the platform&#8217;s specific selection of features seems to have been a major factor in WordPress powering 43% of the web (according to <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">W3Techs</a>). NerdPress founder Andrew Wilder suggested that a SQLite implementation might benefit from being branded as &#8220;WordPress Lite.&#8221;</p>\n\n\n\n<p>&#8220;Reading the comments and potential issues above, if this does move forward, perhaps the way to implement this in a way that makes sense to users would be to brand it simultaneously as &#8216;WordPress Lite,\'&#8221; Wilder said. &#8220;So if a site is using SQLite, there could be features that are simply no longer available (such as multiple authors, or perhaps plugins that have certain database requirements can’t be installed).&#8221;</p>\n\n\n\n<p>Those who are interested in testing the new SQLite integration module should be able to test drive it next week. Google-sponsored Performance Team contributor Felix Arntz gave a few notes on testing in yesterday&#8217;s team meeting:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>For the SQLite implementation, other than the SQLite DB working correctly by itself, another crucial aspect to test is the user experience on module activation. You&#8217;ll get an entirely new database, but we&#8217;ve added some logic to make the transition as seamless as possible: On a typical WordPress setup, you should not need to reinstall WordPress yourself when you enable the module, and you shouldn&#8217;t even be needed to log in again.</p>\n\n\n\n<p>Basically the PR has logic to install WordPress automatically in the new database, using the same basic setup data that is present in the regular database.</p>\n\n\n\n<p>Just keep in mind that it is by no means a migration. It&#8217;s only the install you&#8217;ll get; no content will be migrated.</p>\n</blockquote>\n\n\n\n<p>The 1.8.0 release of the Performance Lab plugin is expected on Monday, December 19, and is set to include the new module.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 02:29:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Post Status: Interview With Product Lead Jessica Frick At Pressable— Post Status Draft 133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://poststatus.com/interview-with-product-lead-jessica-frick-at-pressable-post-status-draft-133/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39939:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://twitter.com/renewabelle\">Jessica Frick</a> is a huge WordPress advocate and has been a contributing community member since 2008. She is the Director of Operations at <a href=\"https://pressable.com/\">Pressable</a>, one of our Post Status sponsors. Jess joins Cory Miller to share about the amazing WordPress hosting experience Pressable offers, in addition to her own experience and expertise as a long-time member of the WordPress community. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, <a href=\"https://twitter.com/renewabelle\">Jess Frick</a>, Pressable’s Director of Operations, discusses what differentiates the hosting performance and support <a href=\"https://pressable.com/\">Pressable</a> offers WordPress users. They are a “small but mighty” hosting provider from the Automattic family powered by the agility to continuously evolve to better serve customers with diverse needs. Her enthusiasm, generosity, and honesty inspire us to use the power of WordPress for good. As a WordPress lover, Jess shares her thoughts on the benefits of being people-powered.</p>\n\n\n\n<p>Top Takeaways:</p>\n\n\n\n<ul>\n<li><strong>Differentiated by Support:</strong> When facing an issue with your site, Pressable understands you don’t have time to wait for answers or be redirected to articles and links that don’t deliver real-time solutions. Pressable support is led by a team of WordPress experts with a proven record of responding in less than 3 minutes and solving issues in under 10 minutes on average.</li>\n\n\n\n<li><strong>Technical, User-Friendly Interface:</strong> Pressable’s single dashboard offers simple site management with a clear view of site performance and metrics. More technical users can manage multiple sites from one platform, build API applications, test site versions, and more.</li>\n\n\n\n<li><strong>Power of Decentralization:</strong> As we are seeing the real-time impacts of power being held singularly in other organizations, it highlights the power of the open-source community we have within WordPress. Jess shares her thoughts on how this insulates WordPress from experiencing toxic growth and protects the evolution of future technology powered by WP.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-40 wp-block-columns Pressable has-theme-palette-8-background-color has-background\" id=\"Pressable\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/pressable\">Pressable</a></h3>\n\n\n\n<p>Founded in 2010, <strong>Pressable</strong> is a world-class managed WordPress hosting provider built on the same data network as <strong>WordPress.com</strong> and <strong>WordPress VIP</strong>. With industry-leading performance, 24/7 expert support, a 100% uptime guarantee, and seamless integrations with <strong>WooCommerce</strong> and <strong>Jetpack</strong>, Pressable provides the tools you need to manage your WordPress websites and grow your business all in one place. <a href=\"https://poststat.us/pressable\">TRY PRESSABLE→</a></p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\">\n<a href=\"https://poststat.us/pressable\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/pressable-icon-primary.svg\" alt=\"Pressable\" class=\"wp-image-121339\" width=\"150\" title=\"Pressable\" /></a>Pressable\n</div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://pressable.com/\">Pressable</a></li>\n\n\n\n<li><a href=\"https://automattic.com/\">Automattic</a></li>\n\n\n\n<li><a href=\"https://www.liquidweb.com/\">Liquid Web</a></li>\n\n\n\n<li><a href=\"https://twitter.com/chrislema\">Chris Lema</a></li>\n\n\n\n<li><a href=\"https://copyblogger.com/\">Copy Blogger Media</a></li>\n\n\n\n<li><a href=\"https://www.studiopress.com/\">Studio Press</a></li>\n\n\n\n<li><a href=\"https://wphostingbenchmarks.com/\">WordPress Hosting Benchmarks by Review Signal</a></li>\n\n\n\n<li><a href=\"https://twitter.com/kevinohashi\">Kevin Ohashi</a></li>\n\n\n\n<li><a href=\"https://titan.email/\">Titan Mail</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/renewabelle\">Jessica Frick</a> (Director of Operations, <a href=\"https://twitter.com/Pressable\">Pressable</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Interview With Product Lead Jessica Frick At Pressable</p>\n\n\n\n<h1>Interview With Product Lead Jessica Frick At Pressable</h1>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome back to Post Edits Draft. This is another interview in our series of product people. Um, and the intention behind this is there\'s all these great products out there in WordPress. And I wanna hear from the humans that lead these products for their customers and the clients. And today I\'ve got a dear friend, Jess Frick, who is over at a great hosting company called Pressable.</p>\n\n\n\n<p>Also an awesome sponsor and supporter post status. And I\'m excited for this. Uh, all these are so much fun to me, but I\'ve known Jess a long time. I\'m really excited to let you hear. What I get to hear, uh, about her passion, her vision, her values for what she does, and how she leads her team, um, and really around the product that she, she runs.</p>\n\n\n\n<p>So Jess, welcome to post status draft.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Thanks for having me, Corey. As you know, we are huge supporters of post status. We love the community and I\'ve been a [00:01:00] member since before I\'ve been with Pressable cuz I just love everybody in the community.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Also, before Corey and Lindsay, uh, were part of the ownership.</p>\n\n\n\n<p>So That\'s true.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> That\'s true. But you know what? Post status has been giving back to the community for a really long time and so you\'re, you\'re always honoring us and I wanna take a minute to honor you too. So. Thanks for all you do.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Thanks my friend. If you don\'t know Jess, you need to get to know her. By the way.</p>\n\n\n\n<p>She\'s an incredible human being and you\'re getting ready to hear some of her experience and expertise too. Jess, could you start and tell us what your role is at Principal?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Uh, Well, we\'re not really big on titles around here, but I do have one. It\'s Director of Operations and what that ultimately entails is I lead our product ops and marketing here at Principal.</p>\n\n\n\n<p>People think we\'re a lot bigger than we are. We are a small but mighty team over here. Um, little, little known secret. Pressable has less than 20 full-time employee. We [00:02:00] are just killing it and everybody\'s just wearing a bunch of hats. .</p>\n\n\n\n<p><strong>Cory Miller:</strong> I I really love that, even that as a part of automatic, um, to see us. Uh, I like your description, small and mighty team.</p>\n\n\n\n<p>Uh, and we\'ll talk a little bit about that too. Cause I\'ve experienced that, not just because of our friendship, but as, uh, a friend of mine is a customer and I get to go in and help and experience. What you\'ve done and your team does. Um, Jess, you have a vast experience in WordPress, and I know this, but I want other people to do.</p>\n\n\n\n<p>Could you tell us what you\'re doing, what you\'ve done in WordPress, uh, before Princip?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Well, my first time using WordPress would\'ve been in 2008. Um, my first job in WordPress, uh, was with Copy Blogger Media, the parent company of Studio Press. Um, and so if you ever got any swag back in the day with hashtag genesis WP that came from my house, , um, , [00:03:00] we, we grew this awesome brand and.</p>\n\n\n\n<p>Honestly, I did not build with any other themes. I\'m so sorry, Corey for like 10 years because it was just awesome to watch the genesis of the product. Um, and from there I got to work with the team over at Liquid Web. I was on Chris LEMAs team. We launched the first re commerce product. Um, and then about a year ago I got to join the team here at Pressable and I absolutely love it.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That\'s awesome. Now, one of the angles for the</p>\n\n\n\n<p>part of that is product and um, so can you tell me a little bit about the principle WordPress product?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yes, I can and I would love to. Um, some things you should know about the Pressable WordPress product is we really differentiate on support. That\'s our number one thing. I know everybody says that their support is great.[00:04:00]</p>\n\n\n\n<p>Um, if you\'re familiar with. Automatic. You know that sometimes they\'ll have support teams that kind of go across different brands. But at Pressable we have the same core group of people. Most of them are developers, all of them are WordPress experts, and you\'re gonna get the same people every time. So, you know, the product that we serve is hosting, it\'s great hosting, it\'s powerful performance hosting, but what we really sell is the experience.</p>\n\n\n\n<p>And that means you\'re gonna have friends here that can help you no matter what your word. Website problem may be, um, within reason, obviously, but, uh, cuz people can do some weird stuff to word breasts. Okay. Um, but uh, the other stuff that we sell is that, uh, performance, um, A lot of people don\'t realize this, but Principle was originally known as Zippy Kid.</p>\n\n\n\n<p>We were one of the original three managed WordPress hosting companies in the world. And obviously that a lot\'s changed since 2010 when it was founded. Um, [00:05:00] it\'s. Been rebranded as pressable, and today we\'re owned by Automatic something a lot of other people don\'t know. Um, so the platform that we have that\'s super performant is actually the same one that powers wordpress.com and to some extent, WordPress, v i p.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I know a lot of hosts can say performance and support. Uh, on the support side, I know the culture at Automatic is prolific with support. I, I, I recall several years ago that every team member that\'s hired goes through basically their first onboarding experiences, actually doing support. And I thought to myself, that\'s, that\'s a company that does value support, but I\'ve also experienced.</p>\n\n\n\n<p>Yeah, like I said, my friend, uh, has, has a site on principal and I ran into something because, you know, I\'m barely technical and, um, I can\'t remember his name off the hand, top of my head, but I think it was Michael. But, um, I went to support, asked a question, thought I\'ll get direction and [00:06:00] pointing. The next thing I know it\'s like, Kind of really helped me try to get the, the site going and get past one of the issues that I was having though.</p>\n\n\n\n<p>I was like, I\'m gonna spend a couple hours googling this or have to go to post outta Slack and ask somebody and beg somebody for help. And, uh, I really did get that experience. And that to me, Jess is pretty rare in hosting. Because in the early days you remember this, you talked about 2008. I remember you go to some of these shared hosting companies and I could get incredible admin type work, like support from people.</p>\n\n\n\n<p>Those days are pretty much gone until you get up to these high tiers of like hosting. So to have that kinda support is incredible. And then to your point, you just told me like support and performance. At first I go, most hosts probably brag about. Two things, but you\'re backing up the performance side too, like you said, but this backbone, which is legendary wordpress.com and b i.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> It\'s true. Um, if you look at this year\'s WP [00:07:00] Hosting Benchmarks studies, um, and if you\'re not familiar with WP Hosting Benchmark, um, review Signal runs these every year, hosts have to pay to participate. Because there is no favoritism, there is no way you can kind of grease the wheels. And if anybody does anything that looks untoward, he blasts you and tells everybody what you did.</p>\n\n\n\n<p>Um, but he legitimately, Kevin from Rude View Signal will do these tests and you enter in a variety of categories. and in this year\'s test, pressable aced every single level we were in. We got top awards in every single category we entered. Um, and that\'s a reflection of our environment. Um, we don\'t need to rely only on caching, but our caching is awesome.</p>\n\n\n\n<p>Um, we have, you know, industry leading PHP resources, and I would say that our CPUs can probably best, most other host.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I, I tell you, you\'re not kidding when you talk about Kevin, I get to meet him, um, this [00:08:00] summer in Porto like you did too, I\'m sure. And, um, Kevin is a purist. He\'s extremely passionate about what he does, and I know he\'s been doing the benchmarks for a long time and to, to pass.</p>\n\n\n\n<p>It\'s this pretty, pretty incredible, um, I, I, I would say it\'s not for the faint of heart. Go through Kevin\'s benchmarks and things, so that\'s great. Backing it up from an external source like Kevin, and he\'s in the process community and pretty active. So yeah, we\'re proud. Awesome. Okay, so we talked a little bit about the product manage WordPress hosting support performance Two highlights.</p>\n\n\n\n<p>Um, what, uh, tell me about the types of customers. If you\'re a customer looking at principle or looking at managed Word Press hosting, who are you, who, who, who did you build the product for, essentially?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> That\'s a really good question. Um, and honestly, [00:09:00] there are two main audiences that we work with and it, it sounds overly simplified to say it this way.</p>\n\n\n\n<p>Um, The, the more simple user that just needs powerful hosting with great support. And then the more advanced user, um, which might be a developer or an agency, um, you know, an agency, like there\'s so many different kinds of agencies. You might have an agency that\'s. Super technical and some that are not. Um, I would say that we are ideal for agencies that are operating multiple websites for their clients because we make it super easy to manage multiple sites in one place.</p>\n\n\n\n<p>Um, I would also say that we\'re good for agencies that have their own special workflows. We have get integration tools. Um, we are able to help you with custom API applications, um, SSH and WP CLI and all. Stuff. And then of course, um, for the business owner who just has an e-commerce store [00:10:00] that gets crazy waves of traffic every single time her story gets picked up on TikTok and it happens, you know, a couple times a month.</p>\n\n\n\n<p>We\'ve got her back. because our hosting out of the box can handle huge amounts of traffic at any given moment. And so most of the time, you know, she doesn\'t even have to pay attention to her website, but when she does, she needs help and she needs it now. And that\'s where we come in. One of the things I didn\'t get to mention is our support has some pretty incredible statistics.</p>\n\n\n\n<p>So our average first response time is under three. So when that business owner needs our help, she\'s not waiting for like 20 minutes for somebody to respond to her chat. We\'re there our average resolution time, Corey is under 10 minutes. So it\'s not like you write us and then you\'ve gotta wait for us to ask four other people.</p>\n\n\n\n<p>We\'re there and we\'re helping you and we fix it. Um, so I would say, you know, even more simplified than all of [00:11:00] that, we\'re probably not gonna be your first host. We\'re gonna be the host that you graduate to when you\'ve experienced support at some other places, or when you\'ve outgrown what their resources can offer you.</p>\n\n\n\n<p>Um, you know, maybe your sites are slow, maybe you\'re experiencing downtime. Um, we have a 100% uptime guarantee, and we\'re able to offer that because we have automatic failover included for free. And because we know that your sites aren\'t gonna go down here, So .</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Tell, tell me more about that. So, a hundred percent guarantee.</p>\n\n\n\n<p>I, I know I\'ve been to hundreds of, you know, hosting sites since like 99.9, and I go, okay, cool. Why does it, why does it, ma, I mean, and, and I\'m not running an e-commerce store that if I, if I\'m down for a minute, I probably lost a thousand dollars, right? Mm-hmm. , tell me why that matters. A hundred percent. And what that means.</p>\n\n\n\n<p>A hundred percent uptime and the automatic.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> You can fit a lot of excuses in 0.1%. Corey[00:12:00]</p>\n\n\n\n<p><strong>Cory Miller:</strong> That\'s good.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> You know, there are a lot of things you can say. Oh, that\'s the 0.1. No, we we\'re a hundred percent up time. We got you. Um, I was just talking with one of our agencies yesterday who\'s been with us for, since 2017, and they\'ve never had a site go down, ever. And they host hundreds of sites with us.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And that matters. You know, you got the 99.999 or whatever, and then a hundred percent. Um, for sure, like I at, at Ithe, I knew when our site went down, we lost money. Now we didn\'t lose thousands of dollars, but we were losing opportunity cost. I mean, there\'s a big value to that. Yeah. Um, tell me, because I just don\'t even know what is automatic, fell over.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Automatic failover means if for some reason there\'s a problem with the mechanics and the systems, we will automatically redirect your traffic to your exact [00:13:00] site on a different server elsewhere. So it\'s kind of like that high availability experience where if it goes wrong here, we got you over here.</p>\n\n\n\n<p>When you\'re using our name servers, we\'ve got you everywhere.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Hat tip. Make sure your name servers are at the host and particularly with Pressable cuz you wanna take advantage of that, that\'s outstanding. Um, okay. Tell me, um, do you wanna show me a little bit of the dashboard and the product itself?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> I do, yeah.</p>\n\n\n\n<p>So you asked like who we\'re for, and you know, one of the things that I\'m super proud of when it comes to Pressable is it is an extremely technical interface, but it can be done. Um, and it can be used in such a way that. Someone who\'s not super technical will also appreciate it. I\'m so sorry. Like myself.</p>\n\n\n\n<p>Yeah. Well you, but also, you know, you are technical. [00:14:00] Um, I would say that there are also some people that just sort of see this, and I\'m so sorry, I\'m having some technical issues. We\'re gonna have to edit this.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yep. We\'ll edit it. Yeah. Lemme start with.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> One of the things that I absolutely love about our interface is that it\'s great for technical people, but it\'s easy to use for people who maybe aren\'t quite as technical. So when you log into your account, this is what you\'re gonna see. Obviously not these sites, this is our demo account. Um, but you know, right off the bat you can see your sites, you know where they all are.</p>\n\n\n\n<p>Um, and you\'ve, we\'ve got a new feature here called collaborators. I\'ll get to that in a. Um, but let\'s dig into a site right now. Demoable . Mm-hmm. . It\'s not a real site, don\'t go to it. Um, but when you get in here, you can immediately get a nice overview. You can see what PHP version you\'re running, what WordPress version you\'re running.</p>\n\n\n\n<p>Um, by the way, we will allow you to be on the [00:15:00] previous release, the current stable, or you can go on beta. Um, that is something that we offer here and we\'re very proud to do that, especially because we know that sometimes you might need a little more time for testing. So, um, we offer you the opportunity to leave notes for your team.</p>\n\n\n\n<p>Let\'s say you\'re working in here with multiple others and you\'re gonna need to just kind of have those admin. Pieces of information that\'s right there within the dashboard. Here\'s where you\'re gonna have your domain information. Um, obviously our name servers, um, and we can also give you IP addresses. Uh, then we have performance.</p>\n\n\n\n<p>Um, if this was a live site, you would see more data here and it\'s just gonna kinda give you that pulse check on what your site\'s doing this month. Um, I could probably spend a long time on this, but I won\'t cause we only have a couple minutes. But you\'re gonna have all of your users for this particular site here, we offer backups 30 days.</p>\n\n\n\n<p>Oh, by the way, our backup storage is complimentary. That does not go [00:16:00] against your total storage that you have for your plan, and then of course, that get integration. What I wanted to show you also was collaborators. So collaborators is gonna give you a way to have multiple people in your account, but not everybody can do everything.</p>\n\n\n\n<p>Um, I know at some other host when you add somebody, you basically get to be an admin or just, you know, a viewer. Uh, here, if you want somebody to be able to get that WordPress access, maybe you\'d never wanna give them the ability to delete or disable. But they\'re also gonna need to be able to get that SFTP access.</p>\n\n\n\n<p>You can fine tune the experience for that one particular person right here. Um, something else that\'s coming up that\'s gonna be super exciting. Uh, we\'re introducing something called the One Press Login. One thing that we\'ve heard from our customers is it\'s kind of annoying to have to enter your credentials every single time you wanna go into your WP admin.</p>\n\n\n\n<p>And [00:17:00] so here on your site details, we\'re going to give you that one press login button, and it\'s going to basically work like a one time password. Automatically and securely log you into your dashboard. No passwords needed. We also offer email through Titan Mail. This is an upsell. Um, we have usage data for you here.</p>\n\n\n\n<p>It\'s really nothing super exciting or sexy. Um, billing is no nothing to write home about . make billing sexy. Um, but you know, we also have site performance reports. We have collaborator reports. If you\'ve got a bunch of collaborators on your site and you\'re. Who all is on this and what do they do? Um, you\'ve got different site usage reports, all of these, you click the report and it\'s gonna send you an email.</p>\n\n\n\n<p>Um, please don\'t spam us there, but basically, we\'re trying to make it easy to manage a whole bunch of sites and [00:18:00] just to keep your finger on the pulse of what all of them are doing.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I can see that collaborator report, especially if you have a team and different hands in the, in the kitchen. Yeah. Um, for sure.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yeah. And then of course, you know, if you wanna build your own API application, you can come here and create your api. And we have all of our documentation published here. Um, this is not behind a paywall, so if you ever wanna see if you could do that here, chances are you can.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Fantastic. I love that. Yeah.</p>\n\n\n\n<p>Well, thanks for that quick overview. Uh, I like to see the pro, you know, the dashboard. Um, I, I\'m sure unlike many people listening that I go to, uh, Page or sales page one day, and then it\'s months, maybe even years before I go back when I have a need. And so I like showing the product because I want people to see the experience.</p>\n\n\n\n<p>And one thing that stuck out just was like, how fast that even the admin side oh, uh, was rocking.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yeah, it\'s super, super fast and it\'s [00:19:00] super fast. Even if you have hundreds of websites as opposed to just one. Um, that\'s something that, you know, obviously I do a lot of testing at our competitors. That\'s not something you get every.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yep. Well, okay, thanks. Now, we talked about the product. We\'ve talked a little bit about what you\'re looking forward to, but I really want to ask that question. What things are you doing? What things are you excited about at Principal?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> I know a lot of people aren\'t comfortable talking about this, but I love talking about what\'s coming soon.</p>\n\n\n\n<p>Um, we have some really fun features coming soon. One of the things is going to include the ability to have kind of a template of your site. Um, Right now, our competitors would call them, you know, templates or, uh, maybe even stencils. It\'s gonna give you a way to just clone your site, but with all of the different settings and plugins attached to it, um, that\'s coming soon.</p>\n\n\n\n<p>Obviously, the One Press login that I mentioned, we are also looking to bring [00:20:00] forward smart plugin updates, so you\'ll be able to update plugins for one site or multiple. Easily in a safe way. And then we also are looking to improve the sinking between staging and live. This is something that honestly, I have not seen anyone do.</p>\n\n\n\n<p>Beautifully. Like there\'s problems everywhere when you\'re trying to do this. Um, one of the things that we are trying to keep an eye on though, is the changes that are happening with full site editing. Um, you know, a lot of other hosts might have an easy button. I shouldn\'t say a lot, but a couple of other hosts have an easy button.</p>\n\n\n\n<p>And basically what that\'s gonna do is just exclude your databases from syncing your staging environment to your production environment. And that would be fine because you obviously don\'t wanna overwrite your W commerce data, comments, all the other dynamic stuff that happens. But with full sight editing, a lot of that data is being stored in those same places that you\'re currently excluding.</p>\n\n\n\n<p>So we\'re trying to [00:21:00] like fine tune. So that you get what you want to have from staging moved over. Um, and just to make it fast and easy too. Ultimately, the, the things that we\'re trying to develop are things that people have directly asked us for. Um, we love hearing from our customers and we love hearing from people who would be customers, but perhaps they\'re held from, you know, for one reason or another.</p>\n\n\n\n<p>Um, One of the cool things about us being small and mighty is we actually act on those. Mm-hmm. . And so if somebody\'s watching this and you\'re not a customer because this or that, please tell me cuz we\'ll build it</p>\n\n\n\n<p><strong>Cory Miller:</strong> And by the way, Jess is in post set of slacks. She can even DM her. Yeah. So I wanna go back to something you talked about the syncing, and there\'s a nuance there that I hadn\'t thought about, which is all the databases. So could you gimme some examples of that? Uh, particular instance? I know you said, uh, full side [00:22:00] editing.</p>\n\n\n\n<p>Uh, But I, I\'m, I\'m, I\'ll just confess to you, I\'m a newbie to staging. I have used, uh, principle staging mm-hmm. to, um, we\'re, we\'re working on a rebrand of, uh, post status.com and I was like, I just want to get a site that I can go do. And I\'ve been using the staging for that, but could you tell me what a little bit more details about, or examples of how that might be really critical for store owners, agencies and developers?</p>\n\n\n\n<p>I\'m sure they know these answers, but I want to.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> So, having worked in hosting for a long time, I can tell you it is shocking how few people actually use staging environments. So high five to you, my friend, for doing an staging environment first. Um, one of the problems is you get your staging site exactly how you want it, and then you need to be able to push it live.</p>\n\n\n\n<p>And for the, the old way to do it was just to completely overwrite your site. The thing is, and like picking on post status, I know you guys have. [00:23:00] I know you even have a store, but I can\'t remember if your store is actually on the, the site or not, or if it\'s external. Um, but you know, if you have that kind of data coming in on the regular, there are a few ways you can go about it.</p>\n\n\n\n<p>Um, the first would be like a two stage migration where you would migrate it. At a single point in time, and then like, kind of do your stuff and then you would bring to date the Delta. Um, so for example, blog vault can actually do that for you. They do a great job with that. Um, and so they\'ll bring over the, the data, but you\'re still gonna have that tiny window where you might miss a pro, a purchase or you know, somebody might be doing something on a membership site and you\'re gonna lose that activity in that moment.</p>\n\n\n\n<p>Um, one way to counter that is to put up a, like. Under maintenance. Interstitial or something that basically lets people know that whatever you\'re doing right now, not gonna count, or you just can\'t do it right now. Um, but the other [00:24:00] option is to create a nuanced tool that does not include that data when they overwrite it.</p>\n\n\n\n<p>Um, because whatever is happening on staging is not going to include all of that purchase data. Something people haven\'t considered a lot of times is when you bring an entire production site over to your staging, you might actually have all of that e-commerce stuff in place. And so heaven forbid you\'ve got a membership site.</p>\n\n\n\n<p>It could be charging subscriptions on. You gotta be real careful of that. And so one of the things that we\'re also working to do is to make sure that that kind of stuff doesn\'t happen in staging. Just a blanket rule that you can\'t be charging for things and you know, running, running different processes that could negatively impact you cuz you didn\'t mean to do that there.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I can see how you just eliminated how critical that is for a w uh, like a W Commerce site, um, with some of those things because you do have this continuum amount of data and storages or staging as a best practice, [00:25:00] and this is a nuance to make sure you\'re capturing those educations. I think that really stands out, particularly in e-commerce, but I think you showed some other ways where I don\'t want that thing.</p>\n\n\n\n<p>To be missed or I don\'t want that thing to be updated. And some of my experience with backups, I kind of, I, I\'m aware of some of those type of nuances and that\'s, I, I ask for my own edification, but also I think it highlights that the person leading the team I knows, knows their stuff. And I love, I love talking with you because you always give me something new to think about.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Well, thank you. That\'s a very nice thing to say.</p>\n\n\n\n<p><strong>Cory Miller:</strong> You bet. Well,</p>\n\n\n\n<p><strong>Jessica Frick:</strong> fortunately I work with some people that are smarter than me too. So , I think I\'m great. You should meet the team.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, my next and close to my last question is I, I just wanna get your thoughts about tech WordPress in general. We talked a lot about hosting nuances, the things that you\'re working on, you\'re already doing, have done, [00:26:00] um, performance and support being some big highlights backed up, but some really good reasons.</p>\n\n\n\n<p>Um, To be able to say we do performance and support extremely well. But I really wanna turn the page and ask you your thoughts about tech and WordPress and what you see coming up and what you\'re excited about with WordPress and then tech overall.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> You know, it\'s, um, This is a really interesting question because we\'re at a strange time right now.</p>\n\n\n\n<p>You know, for a minute, every time you turned around, another WordPress company was getting acquired and I feel like we\'re kind of in a lull for a little bit. That\'s not to say that somebody\'s not gonna get acquired while we\'re on this call, but it could have , but for a minute, there was like every single day.</p>\n\n\n\n<p>Um, but what\'s also interesting is we\'re seeing, you know, different companies tightening up. Um, Be it the market conditions or some other, you know, variable. We\'re, we\'re seeing a lot of companies, you know, really getting into conserve [00:27:00] mode and it\'s been interesting to watch how they\'re doing that. Um, thankfully we\'ve not seen a lot of companies just laying off a whole bunch of people.</p>\n\n\n\n<p>Um, it\'s happened, but it\'s not happening like you\'re seeing with other big tech. And I think part of the reason that WordPress is probably a little more insulated is because I think by and large the WordPress community has perhaps been more stable to grow in the first place. Um, I think it\'s gonna be interesting to see what happens in the hosting world, but also, you know, in the future of plugins, um, and certainly themes, especially with, you know, blocks becoming what they are.</p>\n\n\n\n<p>Um, I\'m really interested to see how that plays out for the community because at the heart of it, I mean core, you know me, I love WordPress. Like I love WordPress, but part of, one of the, part of the reason that I love WordPress so much is because I [00:28:00] love the community. You know, we have a lot of really great, genuine, smart, helpful people.</p>\n\n\n\n<p>You know, if we\'re being honest, yeah, there\'s some jerks, but that\'s. A small percentage. Mm-hmm. , most people would stop what they\'re doing to help you if you needed it. And I think that that\'s also part of why we\'ve become kind of insulated, um, from that toxic growth. I guess if you\'ll let me get kind of spicy.</p>\n\n\n\n<p>Yeah. Um, , I think we know who is Awesome. Generally speaking, and we all kind of look out for each other, and I really, really love that about. Yeah. Um, what I\'m thinking about tech right now, we\'re, we\'re seeing a situation where one of the biggest social networks has been bought by a single individual and love them, hate \'em, or don\'t even care about \'em.</p>\n\n\n\n<p>[00:29:00] It\'s making some pretty big changes to the product itself and the audience that uses it. And one of the things that I love about WordPress is that it\'s open. And you know, a lot of people want to blame one specific person for things. And yeah, of course he\'s influential, but he doesn\'t control the whole project.</p>\n\n\n\n<p>And so I think it\'s made me more grateful, um, seeing how it can go wrong when you have just that one super rich guy that can make all the shots. And then you have WordPress where it really is, you know, power to the people</p>\n\n\n\n<p><strong>Cory Miller:</strong> and you can fork it. I don\'t think you can fork Twitter, but you can\'t fork WordPress and it has been forked.</p>\n\n\n\n<p>It has. So even if there are powerful structures, you can still take the code and and go elsewhere. Yeah. Decentralization is definitely something that I\'ve heard a lot from members and in these interviews because it\'s uh, really key in part of the power [00:30:00] WordPress is that, um, it can power everything from my little blog on my stage inside principle, uh, to you.</p>\n\n\n\n<p>Uh, very big house in Washington DC that happens to be white. Yeah. And so like, it\'s, it\'s crazy. All the applications. I, uh, as I\'ve talked to agency owners and, and technical people, what WordPress is being used for, but at the core, that open source philosophy really resonates and. Powerful. And I think we\'re seeing that, like from what you\'re saying too, is like we\'re seeing that the power that WordPress is and continues to be, it\'s not owned necessarily by one person.</p>\n\n\n\n<p>It can be used, the freedom that we have</p>\n\n\n\n<p><strong>Jessica Frick:</strong> and people are building cool things to go with it. You know, things on top of it. You know, before we started recording, we were talking about the world of podcasting and the things that are built to, you know, work alongside it, you know, pocket casts and various others.</p>\n\n\n\n<p>Um, we were talking about custom applications that people are building. I think WordPress itself is going to [00:31:00] continue as a building block for a lot of other cool technology in the future. And, So excited to see it happen and honestly I hope one of the ideas is mine cuz I feel like you and I would be really good, rich people.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yes, totally. I think we would very generous . Just Rick, thank you so much. Can you tell people, uh, where to find more about you in principal?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yes. Come visit us at pressable.com and if you wanna find me, I am in the post status slack. Um, if you\'re not in post status, let\'s fix that problem first. Uh, but you can also find me at renewable.com if you want.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Awesome. Thanks so much. Yes, for the time today, and I hope you\'ll go check out our principal dot com\'s offerings and see what we\'re talking about.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Thanks, Cory.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2022 21:37:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: #55 – Dennis Dornon on How Partnerships Have Helped Grow His WordPress Plugin Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=140323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/podcast/55-dennis-dornon-on-how-partnerships-have-helped-grow-his-wordpress-plugin-business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47001:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how finding partners might boost your WordPress business?</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m very keen to hear from you and hopefully get you or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Dennis Dormon. Dennis is the founder of MainWP. A WordPress plugin which enables you to manage multiple WordPress websites from a single dashboard. As you&#8217;ll hear, the business has changed over the years, as Dennis has learned more about the plugins&#8217; target audience.</p>\n\n\n\n<p>If you&#8217;re a solo developer, or a working for a small team, bringing your WordPress product into the market can be very rewarding, but it can also be hard. Given the scale of the market, it&#8217;s likely that your product has got an audience. But with the time and resources being limited, it might be hard to break through and be widely discovered.</p>\n\n\n\n<p>Dennis talks today about how, in the recent past, he&#8217;s been trying out working with partners as an effective way to increase the plugins reach. As you&#8217;ll hear, it&#8217;s a strategy that he&#8217;s enamored with, given the right partner.</p>\n\n\n\n<p>We start off by talking about why Dennis built MainWP, and who the plugin was originally aimed at. And it&#8217;s not what you might expect.</p>\n\n\n\n<p>We then get into how Dennis is working out his partnerships as he goes. What is it he&#8217;s looking for in a partner? Not all companies in the WordPress space are going to be a good fit. And so he explains how it&#8217;s important that all partners have some skin in the game, and know what part of the deal they have to uphold. What are the things that need to be considered before the partnership begins? And how do you make sure that all the parties are keeping up their end of the bargain?</p>\n\n\n\n<p>It turns out that MainWP is a business which is in just about the perfect spot for bringing on partners. But if you&#8217;re a developer and have not considered this type of approach with your business, this podcast is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you Dennis Dormon.</p>\n\n\n\n<p>I am joined on the podcast today by Dennis Dornon. Hello, Dennis.</p>\n\n\n\n<p>[00:03:40] <strong>Dennis Dornon:</strong> Hey, Nathan. How are you?</p>\n\n\n\n<p>[00:03:42] <strong>Nathan Wrigley:</strong> Very, very well. Dennis and I have had a little bit of a chat before the podcast began, and it&#8217;s been a pleasure getting to know him. You&#8217;re going to get to know him over the next few minutes. Dennis, we always ask our guests right at the beginning, there&#8217;s some kind of orientation question, just trying to figure out who you are and where you come from.</p>\n\n\n\n<p>I&#8217;m wondering if you&#8217;d spend a few moments just telling us what it is that you do in the WordPress space and how you&#8217;ve become part of the WordPress community. You can take that in any which way you like and go back as far or as near as you wish.</p>\n\n\n\n<p>[00:04:14] <strong>Dennis Dornon:</strong> Hello everyone. I&#8217;m Dennis Dornon with MainWP, WordPress manager plugin that allows you to maintain multiple WordPress sites from one central dashboard. The MainWP plugin allows you to perform most of your daily WordPress maintenance tasks, such as updating your plugins, backups, uptime monitoring things like that.</p>\n\n\n\n<p>And since MainWP is a self hosted WordPress plugin, it allows you to do all that while remaining privacy focused and not relying on any third party solutions like many other WordPress managers.</p>\n\n\n\n<p>[00:04:40] <strong>Nathan Wrigley:</strong> So when did you discover WordPress? How far do we go back?</p>\n\n\n\n<p>[00:04:44] <strong>Dennis Dornon:</strong> I would say probably about 10 years ago is when I really started getting into it. About 10 to 12 years ago I was full-time affiliate marketing and had a few hundred websites, mostly focused on the automotive industry. And at that time I just did real cookie cutter sites that just did PHP changes from a flat file where, like I would change the city name, make model, and just put those out.</p>\n\n\n\n<p>But then Google started changing their algorithm, so you couldn&#8217;t really have the cookie cutter sites anymore if you wanted to continue to rank. That&#8217;s when I started exploring WordPress. Slowly moved those few hundred sites over into WordPress. And then I quickly realized once you have a few hundred sites, I think in my case it was close to 500 sites, that maintaining those could be quite a pain in the neck.</p>\n\n\n\n<p>And that&#8217;s when we started looking to different solutions that were already out there. But none of them gave us the privacy we were really looking for. Both me and the co-founder came from an affiliate background, so we wanted everything to stay completely private and no one to have any of our information.</p>\n\n\n\n<p>Started developing our own solution for WordPress and we actually went with using WordPress as the backbone since we didn&#8217;t have to worry about login, security and making all those things for ourselves and just built it as a plugin itself.</p>\n\n\n\n<p>[00:05:54] <strong>Nathan Wrigley:</strong> That&#8217;s really fascinating. Kind of interesting that it was a scratch your own itch type of product. We&#8217;re here today, we&#8217;re going to talk about a slightly different subject because a little while ago I put out a tweet and I was asking for people to suggest topics that maybe of interest to listeners of this podcast. And Dennis reached out and so we got connected and we&#8217;d settled on the topic of, the idea of partnerships within the WordPress space. So, I&#8217;m just going to map out in broad outline what I think we&#8217;re going to talk about, and then we&#8217;ll see if the conversation goes in that direction or not.</p>\n\n\n\n<p>So, Dennis has a history, or at least I should say MainWP, whether it&#8217;s Dennis or other people, I&#8217;m not entirely sure, has a history of connecting with other WordPress companies to mix up what they&#8217;re doing. So MainWP with partner A and MainWP with partner B. And try to figure out if there&#8217;s ways that they can rub each other&#8217;s backs, and help each other along the journey to growing and what have you.</p>\n\n\n\n<p>So you have a product and you have lots of partnerships. I guess the easiest way to begin this subject is, can you just lay out some examples of people that you have partnered with in the past and how those partnerships have developed. Just to give us a little bit of a picture of how this all works.</p>\n\n\n\n<p>[00:07:14] <strong>Dennis Dornon:</strong> Sure we really just got into partnerships. We have a lot of extensions that work with other plugins, but I wouldn&#8217;t really call those partnerships. Those were more along the lines of what you were saying earlier of kind of scratching our own itch. So we put out our first kind of partnership way back in 2015 with our first third party extensions. So, about a year into our existence, we actually started going out and working with other plugins.</p>\n\n\n\n<p>The problem at that time is we didn&#8217;t tell them we were actually working with them, so we would just go out and build these extensions and then be like, hey, we got an extension for you. And they&#8217;d be like, thank you. That&#8217;d pretty much be the end of the partnership. But it helped our users, especially with our first ones, which was a backup extension, Updraft Plus. And then we, I believe one of our first extensions was also a Yoast extension.</p>\n\n\n\n<p>But these weren&#8217;t true partnerships. It wasn&#8217;t until probably the last year or two that we actually started to get into real partnerships, where we talked to the other company, before we built an extension for them so that we could, uh, grow out from there.</p>\n\n\n\n<p>Some of the current ones that we have out are of course, SEOPress, which we just launched earlier this month. Atarim a couple months ago. Before that WPvivid Backups made their own extension and WP White Hat Security made an activity log extension. Those were more true partnerships where we work together to find a common solution.</p>\n\n\n\n<p>But most of these were just a, I would call them code development partnerships. So we were both kind of working in the development of it. Where I failed at would be the co-marketing portion of it. So even though we had grown and had actually started working with the other companies on building these extensions, instead of just building them ourselves, we still weren&#8217;t getting the word out appropriately that we now had official partnerships with these different companies. So we&#8217;d launch the partnership, announce it for a day or two, and then kind of let it die.</p>\n\n\n\n<p>Die might be the wrong word. We didn&#8217;t do too much with it, we just kind of hoped they would grow on their own if you follow what I&#8217;m saying there. We didn&#8217;t really learn until the, well, I didn&#8217;t learn until the Atarim partnership, how to correctly co-market. And that has really jumped up our actual partnerships. People coming in for partnerships. Partnership requests have all gone up.</p>\n\n\n\n<p>Really from what Vito Peleg showed us with our partnership with Atarim, and how to not only do the co-development, but the co-marketing, and co-marketing is what you generally see from, when you see a partnership in WordPress that&#8217;s, you know, where you&#8217;re on each other&#8217;s mailing list, social, things like that. And you do it for a short amount of time.</p>\n\n\n\n<p>So now we have that perfect combination for a partnership of both co-development and co-marketing. Why co-development helps is it gets the other person to have skin in the game with you. So you both, you both have something to lose if the co-marketing doesn&#8217;t go well.</p>\n\n\n\n<p>[00:09:58] <strong>Nathan Wrigley:</strong> So towards the beginning of your endeavors, you mentioned 2013 or something like that.</p>\n\n\n\n<p>[00:10:03] <strong>Dennis Dornon:</strong> 2015.</p>\n\n\n\n<p>[00:10:03] <strong>Nathan Wrigley:</strong> 2015, Sorry, yeah. You mentioned that the business was growing and, I guess at that point you didn&#8217;t really know that partnerships could be a thing, and so you just looked out into the WordPress ecosystem and thought what would be a good thing for us to build? And how can we help our customer base that exists already? And so you just built it yourself, shipped it, and maybe had some kind of email interaction with the originators of that plugin? Maybe not. It just went out there. But the point was it was all within your silo.</p>\n\n\n\n<p>And more recently, in the last year, as you&#8217;ve described, you figured out that there&#8217;s this model where you get in touch beforehand and potentially you do the work or they do the work, or you partner together and do the work together, I don&#8217;t know what the model there is exactly, but the principle being that it&#8217;s much more of a symbiotic relationship. You&#8217;re in conversation about it. You both are sending out promotional materials once the thing has finally shipped, so it&#8217;s much more of a collaboration. It&#8217;s not as if you&#8217;re merging together. Your business is separate, their business is separate, but there&#8217;s definitely an overlap where you can help each other out.</p>\n\n\n\n<p>[00:11:16] <strong>Dennis Dornon:</strong> Correct, yeah. Everything stays completely separate. It&#8217;s not a partnership in terms of a, you know, giving up any portion of your business. It&#8217;s more of a partnership of helping each other grow from your own base of customers. So if we go back to Atarim. Atarim promotes to their base of customers along with an actual, like I was saying, the code developed.</p>\n\n\n\n<p>So they have something to hand them that they can come back and, MainWP, this is how it works with it, because we&#8217;ve actually built something together. I&#8217;m just not sending you an email blast telling you to go use MainWP. Here&#8217;s an email, here&#8217;s social, here&#8217;s how we&#8217;re working together to make your life easier. And that&#8217;s what we&#8217;re focused on going forward. Both co-development, co-marketing to work nice and smooth.</p>\n\n\n\n<p>[00:11:52] <strong>Nathan Wrigley:</strong> So in the last year, in this time where you&#8217;ve found several companies that you&#8217;ve decided to partner with as opposed to building it yourself. Just describe some of the benefits that you&#8217;ve discovered. You&#8217;ve mentioned things like marketing and what have you, but are there any other unexpected things?</p>\n\n\n\n<p>It might be just that, you know, it saved you a bunch of time. You ended up being friendly with people that you otherwise wouldn&#8217;t have encountered. Whichever way you want to take that.</p>\n\n\n\n<p>[00:12:17] <strong>Dennis Dornon:</strong> I&#8217;ve really learned, we&#8217;ve been doing this, MainWP itself for nine years, and I am just really started talking to people in the last year. And I think a lot of that comes from being in the partnerships and realizing that, when you get out there and you talk to people that they are friendly, most people are friendly.</p>\n\n\n\n<p>Most people just want to work with you. They want to help. You gotta find who you want to work with, if they fit into what you want to do, if they fit into how you want to grow. But really we haven&#8217;t run into too much of people who didn&#8217;t align with what we are looking to do so far. But we are working on documents that we can put on our MainWP.dev site that allow people to see what&#8217;s expected from them, what&#8217;s expected from us in a partnership, so they know before they even contact us, hey, if we want to do a partnership, okay, we need to meet these things, do these things. So it&#8217;s all laid out for everybody.</p>\n\n\n\n<p>[00:13:06] <strong>Nathan Wrigley:</strong> Yeah. That&#8217;s really interesting because, obviously a couple of years ago you didn&#8217;t really have anything to lean back on to say, this is how a partnership may work, and now that you&#8217;ve done it a couple of times, you&#8217;ve taken the step to even create documentation around that so that you can isolate yourself, I guess, from people coming to you and saying, we&#8217;d like to partner with you, and it&#8217;s simply not being a particularly good fit. There&#8217;s bound to be a whole raft of companies, there&#8217;s just really not enough overlap to work with.</p>\n\n\n\n<p>Yeah, I was wondering about that really. Are there any constraints that you&#8217;ve placed upon yourself to say, okay, if it&#8217;s out of this boundary, we probably won&#8217;t be able to work with you, or if it&#8217;s inside this boundary, we will.</p>\n\n\n\n<p>[00:13:47] <strong>Dennis Dornon:</strong> It&#8217;s a hard one cause I haven&#8217;t come across anybody reaching out directly to me that I would be like, oh, I just can&#8217;t, just couldn&#8217;t work with you. There have been some things, where I know if somebody reached out that I didn&#8217;t feel comfortable putting in front of our user base, we&#8217;d be able to say no to. Something that wasn&#8217;t, um, don&#8217;t want to say privacy focused, but something that is completely against the way we feel about privacy.</p>\n\n\n\n<p>Of course, we wouldn&#8217;t work with them. It&#8217;s a hard question to answer because it&#8217;s, until I&#8217;m actually presented with the situation, I&#8217;m not sure who I&#8217;d say no to, who I&#8217;d say yes to. I think everybody&#8217;s gotta be evaluated on their own individual basis.</p>\n\n\n\n<p>[00:14:20] <strong>Nathan Wrigley:</strong> You obviously, when you are creating partnerships like this, you are staking quite a lot. You&#8217;re putting your flag in the sand that we would like to work with this company. Our business aligns with them, and if you start to email your list with logos from other companies and what have you, you are firmly saying, we align, we are trusted partners with each other.</p>\n\n\n\n<p>And so the word that I used there was trust. Now I imagine that we won&#8217;t get into the conversation of any times that trust may have been broken, but I do wonder what that level of trust means. How have you approached that whole subject of, can I trust this company?</p>\n\n\n\n<p>You know, many people rely on their instinctive sense. Maybe there&#8217;s companies that you think if they approach me because I&#8217;ve seen what they do in the past, that isn&#8217;t a good fit for us. How do you establish trust and what does that trust actually mean?</p>\n\n\n\n<p>[00:15:14] <strong>Dennis Dornon:</strong> Well, I can say this year we did have a partnership that I would not do again. Not naming any names. We had terms in and then they, uh, changed the terms once things had been launched, and that was kind of upsetting and I&#8217;m not sure what you can actually do for that.</p>\n\n\n\n<p>So you really do have to put some trust into it. And I think that&#8217;s where combining the co-development along with the co-marketing really makes a difference. This particular partner, we did all the work for the extension for, and they provided the service and then they changed the service after the extension was made.</p>\n\n\n\n<p>So we&#8217;ve kind of moved away from doing where we do all the work in those situations. So we really go for the more of the co-development. Where the other person has the skin in the game, we know they&#8217;re also working for the same end goal we are. And then go into the co-marketing. And usually if you can get that skin in the game from the co-development, they&#8217;re not as, a person isn&#8217;t going to be as easy to do something, to break up that partnership or, make that partnership not profitable for both.</p>\n\n\n\n<p>[00:16:09] <strong>Nathan Wrigley:</strong> When you say co-development, are you talking about, literally you&#8217;ll put people in the same room or on the same Zoom call or whatever. So in other words, MainWP developers are working with company A developers, and together you are building out the solution which bolts into MainWP. Or is it more, you are collaborating on ideas and then somebody goes off and builds this part and MainWP take care of their part? Just give us an idea of what that co-working looks like.</p>\n\n\n\n<p>[00:16:37] <strong>Dennis Dornon:</strong> Yeah. and not to keep going back to Atarim, it&#8217;s just such a good example. In their case, they needed to develop a special API that we could connect to, and we needed to develop a way to connect to their API. So we were both working on APIs, to work with each other&#8217;s system. So we knew they were putting in the same amount of time or almost the same amount of time as we were into the extension. So we knew they were going to be just as dedicated to making sure that the product grew and got better.</p>\n\n\n\n<p>[00:17:02] <strong>Nathan Wrigley:</strong> So it&#8217;s very much a case of, you work out which ways you can scratch each other&#8217;s back, and share out the work accordingly. The hope being that the balance is equal, and it may be that at the beginning, if you&#8217;ve got the skill set to do the coding of a particular thing, then maybe that&#8217;s something that you would do, and maybe they don&#8217;t have the heavy lifting there. But they might have something else that they can contribute later in the journey. You know, marketing clout and so on and so forth.</p>\n\n\n\n<p>[00:17:28] <strong>Dennis Dornon:</strong> One of the things I have noticed, actually Jonathan Wold in one of his blog posts mentions it, and it&#8217;s something I&#8217;ve noticed too, is when you&#8217;re the smaller partner, you usually end up doing most of the work. And for most of this time we have been the smaller partner. So that&#8217;s just one of the things. If you&#8217;re the new guy or you&#8217;re the smaller partner, just be prepared to have to do more than the other partner.</p>\n\n\n\n<p>[00:17:47] <strong>Nathan Wrigley:</strong> Do you go through this in a very formal way? In other words, you mentioned the Atarim example, obviously one you&#8217;re very happy talking about. There&#8217;s a lot of work to be done. There&#8217;s lots of hours to commit to writing the code. There must have been some sort of procedure that was gone through saying, okay, exactly what is the scope of the partnership that we&#8217;re doing here? Exactly what is the scope of what we&#8217;re trying to build on top of MainWP, which will interact with Atarim? Do you spend a long time hammering all that out and deciding, we can&#8217;t do this particular feature, but we&#8217;ll come to that later.</p>\n\n\n\n<p>Because it&#8217;s not like you are selling a particular product at the end here where if the Atarim and MainWP partnership works out, it&#8217;s not like you can count the amount of units that you&#8217;ve sold of that partnership. It really isn&#8217;t like that, it&#8217;s just that you&#8217;ve made customers more happy. So there&#8217;s not revenue to be shared, but there is some benefit.</p>\n\n\n\n<p>[00:18:37] <strong>Dennis Dornon:</strong> Yeah, I think if you boil everything down to profit, what fun is it going to be to actually run the business? So if it helps the user, the end user, then that&#8217;s really what we&#8217;re going to do. I think that&#8217;s shown throughout everything we do as a company, that we just really care about helping the end user.</p>\n\n\n\n<p>Atarim&#8217;s a, just a good example. And the reason I keep coming back to that is because it is the one that taught me, if we go back to your earlier question to kind of calm down, and look at how to actually build the partnership. I keep saying I gotta give Vito credit for that, for, uh, teaching me that.</p>\n\n\n\n<p>Because before I would just get an email and if it looked like it worked from a standpoint of our users where I thought our users could really use something like this. I was all in I&#8217;d jump, we would go from there. It&#8217;d be a very quick process. I&#8217;m talking couple week turnaround time, from something that sounded really cool to actually getting it done, without any plan in place.</p>\n\n\n\n<p>We were running headlong into the fire, because that&#8217;s all I knew at the time. I just wanted to get this new product out. Make sure it works for everybody, make sure our users are happy, and that was my end goal. When it comes to partnerships, I&#8217;m not really too much worried about how many dollars this particular partnership&#8217;s going to bring into me. More of how happy will this make our users and will it get our brand in front of other users to also make them happy. So as long as our markets somehow can be combined, I think that&#8217;s the best way to look at it.</p>\n\n\n\n<p>[00:19:52] <strong>Nathan Wrigley:</strong> It feels like this is a train you in your business could at least get onto. You found a couple of partners, you&#8217;ve worked very happily with them, and you might move on to the next partner and the next partner, and the next partner and so on. I&#8217;m just wondering if that is now the intention for MainWP, you&#8217;ve enjoyed this experience. Is the plan to find new partners and see if there&#8217;s interesting ways that you can swell what your product does by partnering with other people? Or do you intend to have just a few close partners?</p>\n\n\n\n<p>Because that can be a nice model to work through as well. You&#8217;ve got five or six people that you work with very closely. You don&#8217;t have to dilute the work that you&#8217;ve got and try to maintain 50, 60, a hundred different extensions to MainWP, which may lead to, well, difficulty keeping them up to date as things change within their businesses and your business.</p>\n\n\n\n<p>[00:20:39] <strong>Dennis Dornon:</strong> Yeah, we actually are working on a dual model, if you will, of that. We have our extensions that we will build out, such as Atarim, which works through APIs. But we&#8217;re kind of moving away from building plugin based extensions like we had before, and we&#8217;re moving those more to also third parties.</p>\n\n\n\n<p>For example, the SEOPress extension, that was built completely by the SEOPress team. We did help with any development that they needed, but we didn&#8217;t get our hands too dirty in that. And then we worked with promoting them out. And same with the WPvivid backup people. They made their own extensions using our API and our code base, and they&#8217;re just putting those out themselves.</p>\n\n\n\n<p>We&#8217;re real happy with those. And we actually started doing more to help out those third party .org, I would call them, partnerships that kind of came across naturally. Like the WPvivid, I don&#8217;t believe they had much discussion with us at all. They kind of did the partnership the way we used to, where we launched the product and then sent over an email saying that, hey, we got a extension here, we made for you.</p>\n\n\n\n<p>[00:21:38] <strong>Nathan Wrigley:</strong> So do you wish to reach out and find new audiences? Different plugins and different, well, whatever it may be, different services that are out there. Is that the intention in the next one, two years, to find other partners to work with? Or is it very much case by case basis? We&#8217;ll do one at a time. We&#8217;ll take it nice and easy and slow. Or are you racing to get as many as you can?</p>\n\n\n\n<p>[00:22:00] <strong>Dennis Dornon:</strong> We&#8217;re a small team of only seven people. So we can only do, so many and we have to maintain our own. That&#8217;s what I was saying earlier, we&#8217;re really becoming more API focused when it comes to our internal extensions, because they&#8217;re easier for us to maintain as we&#8217;re crossing over into the 40 extensions that we have ourselves.</p>\n\n\n\n<p>Which is why we&#8217;re having the plugin users, or the plugin extensions are starting to be made by the actual plugin company, because they&#8217;re better at keeping those updated on their own, and it kind of takes a little bit off our plate. And then we&#8217;re able to still help co-market them. We&#8217;ve started adding into our actual plugin to make it easier for you to find these new .org partnerships that are coming around.</p>\n\n\n\n<p>But really what I&#8217;m striving for is, like you said, a platform base, similar to WooCommerce. We actually just kind of got lucky in this, because when we started back in 2015 with that first backup extension, it wasn&#8217;t to get along the path of WooCommerce and try and build a platform. It was, we&#8217;re a small, bootstrap company. I think we only had, uh, three people, or four people at the time. And backups were just killing our support and development time. We couldn&#8217;t come up with, didn&#8217;t have time to do anything new and exciting. We were just stuck on backup, month after month after month.</p>\n\n\n\n<p>And that&#8217;s when we decided start making these backup extensions that work with the plugins that were built by people who knew backups. So, we were able to offload that work to people who actually knew how to do it, just by connecting their plugin with our plugin.</p>\n\n\n\n<p>[00:23:27] <strong>Nathan Wrigley:</strong> It feels like you have a business which is really, really wide open to partnerships. And what I mean by that, and it may be difficult for me to describe. You have essentially a platform. You have an architecture, which means that things can be built right on top, so that they can update their own website.</p>\n\n\n\n<p>So, you could help SEO companies. You could help image compression companies. You could help form companies. They&#8217;re all part of the WordPress website ecosystem. So, there&#8217;ll be a lot of companies out there who maybe are thinking, well, yeah, but we&#8217;ve got this one plugin in it just does this one thing. I can&#8217;t see of a way to be partnering with other people. Have you got any advice to give to those people?</p>\n\n\n\n<p>[00:24:10] <strong>Dennis Dornon:</strong> Looking at it from my point of view, as the potential platform that you would build on. If you have a plugin, say a form plugin, something that can be used in multiple places. So you can have your setting set. If you&#8217;re usually like the same settings all the time, you can do that from a dashboard such as ours. Or if you want to get all your forms returned from one place, so you have 50 sites, but you want to see all the forms in one place. You could think of it like that.</p>\n\n\n\n<p>[00:24:37] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s more that you have a platform which enables you to partner with more or less anybody it feels like in the WordPress space. So that&#8217;s a good bit of serendipity. You&#8217;ve got this system which you&#8217;ve built over years. But a lot of people will be thinking, I can&#8217;t partner with other people, I&#8217;ve got this one plugin, which just does one thing. And it may be that partnerships are out of scope for them, and I guess that is just a reality.</p>\n\n\n\n<p>[00:24:58] <strong>Dennis Dornon:</strong> In that case, you probably would just be stuck with the co-marketing form, and then you would have to find somebody whose market aligns with yours that is willing to actually do a mailing for you. So yeah, that might be a tough one if it&#8217;s just a very basic plugin.</p>\n\n\n\n<p>[00:25:11] <strong>Nathan Wrigley:</strong> Yeah. The other thing about partnerships, I suppose, is that you are very much aligning yourself with a particular company. So let&#8217;s imagine that in the WordPress space there are four companies, company A, B, C, and D, and they basically do the same thing. We can imagine who these companies might be and how they are competitive rivals in the marketplace.</p>\n\n\n\n<p>There&#8217;s something there isn&#8217;t there. And what I mean by that is if you decide to partner with one of those and send out emails and you are lording how fabulous product B is. Do you have any fears that you have then cut yourself off from A, C and D? And that they won&#8217;t wish to speak to you because now, well, you know, it&#8217;s pretty clear from the stuff that they&#8217;re marketing over the last year that they&#8217;ve made their decision and we are not a part of that. Is that something that concerns you?</p>\n\n\n\n<p>[00:26:02] <strong>Dennis Dornon:</strong> I wouldn&#8217;t say. So if we just take a look at our backup extension situation. As I mentioned, WPvivid put out their own. And then of course we have some built in house and one of the ones we built in house actually comes from one of our competitors who also put up a backup solution.</p>\n\n\n\n<p>And we just deploy gratitude. Work with them and do your best. The fact they came to us, a competitor comes to us and asks for help with their promoting their backup extension. That just makes me feel good. I don&#8217;t think of it as a competitive atmosphere in that way.</p>\n\n\n\n<p>Just more of, hey, even though they&#8217;re a competitor, they&#8217;re not a competitor with this particular product, and this product will help our users. So yeah, that sounds like a, sounds like a good partnership to us.</p>\n\n\n\n<p>[00:26:41] <strong>Nathan Wrigley:</strong> Do you have any interesting input? We&#8217;re in the middle of November and this is 2022. This podcast episode will air within several weeks of this being recorded. And so with that caveat in mind, is there anything exciting that you have in the pipeline for MainWP users? It may be that the answer to that is no, Nathan, I don&#8217;t. But it may be that the answer is actually, we&#8217;ve got a couple of interesting things that we&#8217;re working on at the moment.</p>\n\n\n\n<p>[00:27:08] <strong>Dennis Dornon:</strong> We have a few interesting things. Um, I&#8217;m not sure which ones I can really talk about depending on when this comes out, so I&#8217;m going to have to keep pretty quiet on that. But, we got an interesting partnership coming up that I&#8217;m very excited about that should be out hopefully by January as long as everything goes smooth and determined by their marketing schedule. And then we also have some core updates, which are going to be pretty exciting.</p>\n\n\n\n<p>[00:27:32] <strong>Nathan Wrigley:</strong> So this is a product that you&#8217;re working on. You are actively working on it. Is this the only thing that you are doing, or do you, Dennis have other fingers in other WordPress pies?</p>\n\n\n\n<p>[00:27:43] <strong>Dennis Dornon:</strong> I strictly focus on MainWP. I like to stay with what I know. Remember we built this for our own use, and it&#8217;s grown from there. This is really kind of my baby. I&#8217;ve looked at other things, but just nothing&#8217;s ever really, you know, really caught my eye. When I wake up in the morning this is, I want to see how we can make MainWP better. I want to see what&#8217;s going on? I still check almost every support ticket, so I have a finger on the pulse of what&#8217;s happening. I may not be the one replying, but I&#8217;m still reviewing almost every support ticket, every forum post every Facebook post, just to really keep my finger on what&#8217;s happening in MainWP. And I figure if I, if I&#8217;m doing three or four other plugins, nothing&#8217;s going to be focused on for the end user.</p>\n\n\n\n<p>[00:28:29] <strong>Nathan Wrigley:</strong> It sounds from what you&#8217;ve said, and I could be misrepresenting this, it sounds like when you began, you were very much walking in the dark. You didn&#8217;t really know how the plugin would develop, how the business would develop. And it feels like you&#8217;ve really found your feet in the last few years, you&#8217;ve had some success.</p>\n\n\n\n<p>Obviously the plugin is selling to the point where you can swell the team to seven as opposed to whatever it was, one, two, or three in the olden days. And it&#8217;s a general question, but I, I do like these questions, the warm and fuzzy question. Are you still happy in the WordPress space. Is this a community that you enjoy being a part of? Are you still enjoying doing the work that you do?</p>\n\n\n\n<p>[00:29:07] <strong>Dennis Dornon:</strong> I would say I enjoy it more now than I did before. I am a private person. So I don&#8217;t like talking. I don&#8217;t like doing podcasts that much, or videos. But I&#8217;m trying to get better at it. And as I&#8217;m doing it, actually enjoying being in the WordPress community more and more. Just being out there instead of, we&#8217;re going on nine years in February, so for eight years, I basically hid behind this computer screen and didn&#8217;t talk to anybody except through email and chat, to actually be out talking to people and, interacting with people in a more personable way has really just made it much more fun for me than it was even in the beginning. And it just grows every day. I wake up wanting to come in. I go to bed wanting to come in. It doesn&#8217;t feel like work any day that I&#8217;m here.</p>\n\n\n\n<p>[00:29:53] <strong>Nathan Wrigley:</strong> Has WordPress itself changed in any way, which has affected your business strategy? Because a lot of companies, you know, if you&#8217;re a theme company at the moment, there must be a lot of introspection. Okay, where&#8217;s WordPress going with all of this? If you were a plugin which is now being overlapped by blocks, that must be an awful lot of anxiety about, okay, where do we need to go with this? We&#8217;re not quite sure how this is going to all settle down.</p>\n\n\n\n<p>It feels like your business inside of WordPress was really insulated from the changes that we&#8217;ve had since WordPress, well let&#8217;s say WordPress five with Gutenberg and everything. Or has there been a lot that you&#8217;ve had to refactor in the background to continue to make it working?</p>\n\n\n\n<p>[00:30:29] <strong>Dennis Dornon:</strong> We&#8217;ve definitely made a shift from where we originally were. If you look at MainWP, in the beginning we were really affiliate focused. I mean, that&#8217;s what we came from. Everything was set for affiliates and to grow affiliates and to make sure, you know, you could be a profitable affiliate. As years have gone by, I would say now we&#8217;re much more agency or creator focused than we are affiliate focused.</p>\n\n\n\n<p>Not that affiliates can&#8217;t find a way to use MainWP. It&#8217;s still going to work great for them, but it&#8217;s not our focus. As you see new extensions come out, they&#8217;re not something doing like a spinner syntax or something like you might have done 9, 10 years ago. Now it&#8217;s focused on different APIs, Atarim, SEOPress, things like that.</p>\n\n\n\n<p>[00:31:08] <strong>Nathan Wrigley:</strong> So, Dennis, you are sticking around in the WordPress space. If we come back in five or six or seven years time, we fully expect to have MainWP still available for us?</p>\n\n\n\n<p>[00:31:19] <strong>Dennis Dornon:</strong> Yeah. And that, that&#8217;s one of the, the great things too about being open source. I&#8217;ve said this from the beginning. If something happens to us, you still have everything. If MainWP as a company goes away, you still have MainWP. Your service is still going to work. It&#8217;s a plugin that doesn&#8217;t need MainWP the website to keep going.</p>\n\n\n\n<p>It&#8217;s going to keep going for you. So you don&#8217;t have to worry about us disappearing because the code is live, out there, anybody can pick it up if something did happen and we disappeared. Which of course, I hope we don&#8217;t, but it&#8217;s there available to people.</p>\n\n\n\n<p>[00:31:51] <strong>Nathan Wrigley:</strong> Is there a sweet spot that you feel, MainWP is now worth it? And what I mean by that is, obviously if you have one WordPress website, I can imagine the argument for getting into the MainWP platform is probably not that strong. You know, it&#8217;s fairly easy to log into your website and do all of the things that you need to do. But once you&#8217;ve got two or three, or four, or five or fifty or a hundred, the numbers begin to swell.</p>\n\n\n\n<p>And I just wonder if you had any thoughts on that. You&#8217;ve obviously got a target market. I know that you don&#8217;t gather much data about them, so maybe you don&#8217;t have a great deal to say in terms of the metrics there.</p>\n\n\n\n<p>[00:32:27] <strong>Dennis Dornon:</strong> it&#8217;s hard to say on who has what. I know we have different users. I would say probably four or five is where it starts to get a little time consuming, and at least the free core, which gives you most of what you&#8217;re going to need for that level would be a great place to start. Our average user based on the.org statistics, show that we average about 60 child sites per dashboards. So, dot org is saying we have 10,000 active dashboards out there with 600,000 active child sites. So I would say the jumping endpoint should be much closer to five than 60, but the average user has 60.</p>\n\n\n\n<p>[00:33:02] <strong>Nathan Wrigley:</strong> Always surprises me how there&#8217;s a tool for just about everything in the WordPress space, and much of it is open source. There&#8217;s a lot of SaaS platforms which do what you do, but it is nice to have an option that you can put on your own dedicated website.</p>\n\n\n\n<p>Do give us a little bit of intel, because I imagine quite a few people in the audience are interested in the privacy part. You spoke to me just before we hit record about the lack of data that you can bring to bear. And on the one hand, that might be frustrating for you, but on the other hand, it might be incredibly nice for listeners to the podcast to know how much data you collect, or quite the opposite, how much data you don&#8217;t collect.</p>\n\n\n\n<p>[00:33:40] <strong>Dennis Dornon:</strong> We really don&#8217;t collect anything. If you look on MainWP.com, if I can send people there, and you&#8217;ll notice at very top of the page we&#8217;re one of the only plugins that I know of that has their own private plugin policy. And that was actually a written by Donata Stroink-Skillrud of Agency Attorneys. And that&#8217;s a privacy policy for your plugins telling you exactly what information we&#8217;re gathering or in our case not gathering. We really don&#8217;t record anything of any personal nature.</p>\n\n\n\n<p>[00:34:10] <strong>Nathan Wrigley:</strong> And in terms of the support that you offer, a platform like this will become quickly part of the backbone of your business. You know, it may be that you log in once a day and update sites and you want to know that that&#8217;s possible and you want to know that should there be any problems, you can reach out to MainWP and get those problems fixed quickly. How do you handle support? Is it email? Have you got chats? Are you 24 7? Are you throughout the globe? How does that work?</p>\n\n\n\n<p>[00:34:36] <strong>Dennis Dornon:</strong> We have multiple people throughout the globe. We&#8217;re not 24 7. We are basically eastern standard time, 7:00 AM to about 4:00 PM. We have support both in a support forum at managers dot MainWP, and people can send in tickets. One of the things I&#8217;m proud of, we don&#8217;t charge for support. So if you&#8217;re a free user, or a pro-level user, we&#8217;re providing the same support for both levels.</p>\n\n\n\n<p>So nobody&#8217;s ostracized to just forum support or just this or just that. Somebody can send in a ticket or they can go to the forum or they can post on wordpress.org. We&#8217;re going to answer you however we can in any way we can. And support has been very strong from the beginning for us. We want to make sure everybody can get the answers that they need when they need it. Always keeping an updated knowledge base for users so they don&#8217;t have to ask because you know, who really wants to put in a ticket when you can just look at the knowledge base to find the answer. So we try and keep that as up to date as possible.</p>\n\n\n\n<p>[00:35:31] <strong>Nathan Wrigley:</strong> You mentioned before that you are just getting into the idea of making public appearances, so podcasts and videos that you&#8217;re making and so on. So this question may fall on deaf ears for you. But ,do you encourage people to reach out to you? Do you have any social platforms? Do you have an email address that you&#8217;d like to share? The answer to that can be no. But, uh, if do and you do like chatting to people on email and giving them into some intel into what it is that you&#8217;ve been working on, will be working on, you could share that now.</p>\n\n\n\n<p>[00:36:01] <strong>Dennis Dornon:</strong> Really, if you want to reach out to me, just go to dennisdornon.com. That&#8217;s my full name dot com. And it has a calendar on there. And I, I just put this site really updated last month with a calendar on there. Just got my calendly. Started have to actually uh, mark things on a calendar because they&#8217;re happening so fast lately.</p>\n\n\n\n<p>You can hop in over there and I&#8217;ll be glad to chat over Zoom with whoever wants to chat with over Zoom. Going to actually try and start to do a little more AMAs. It sounds like people in the community want to do that too. So you&#8217;ll have chances to reach out to me live on different ask me anything type videos.</p>\n\n\n\n<p>[00:36:31] <strong>Nathan Wrigley:</strong> Dennis Dornon and thank you for chatting to me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:36:36] <strong>Dennis Dornon:</strong> Glad to be here. Thank you very much.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://twitter.com/dennisdornon\">Dennis Dornon</a>.</p>\n\n\n\n<p>Dennis is the founder of <a href=\"https://mainwp.com/\">MainWP.</a> A WordPress plugin which enables you to manage multiple WordPress websites from a single dashboard. As you&#8217;ll hear, the business has changed over the years, as Dennis has learned more about the plugins&#8217; target audience.</p>\n\n\n\n<p>If you&#8217;re a solo developer, or a working for a small team, bringing your WordPress product into the market can be very rewarding, but it can also be hard. Given the scale of the market, it&#8217;s likely that your product has got an audience, but with the time and resources being limited, it might be hard to break through and be widely discovered.</p>\n\n\n\n<p>Dennis talks today about how, in the recent past, he&#8217;s been trying out working with partners as an effective way to increase the plugins reach. As you&#8217;ll hear, it&#8217;s a strategy that he&#8217;s enamored with, given the right partner.</p>\n\n\n\n<p>We start off by talking about why Dennis built MainWP, and who the plugin was originally aimed at. And it&#8217;s not what you might expect.</p>\n\n\n\n<p>We then get into how Dennis is working out his partnerships as he goes. What is it he&#8217;s looking for in a partner? Not all companies in the WordPress space are going to be a good fit. And so he explains how it&#8217;s important that all partners have some skin in the game, and know what part of the deal they have to uphold. What are the things that need to be considered before the partnership begins? And how do you make sure that all the parties are keeping up their end of the bargain?</p>\n\n\n\n<p>It turns out that MainWP is a business which is in just about the perfect spot for bringing on partners. But if you&#8217;re a developer and have not considered this type of approach with your business, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://mainwp.com/\">MainWP website</a></p>\n\n\n\n<p><a href=\"https://jonathanwold.com/partnerships-in-portugal/\">Partnerships in Portugal</a> by Jonathan Wold</p>\n\n\n\n<p><a href=\"https://mainwp.com/seopress-partnership/\">Introducing “SEOPress for MainWP” Extension</a></p>\n\n\n\n<p><a href=\"https://mainwp.com/atarim-partnership/\">Introducing Atarim Inside MainWP &amp; Vice Versa</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2022 15:20:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: Acquisitions Are Not a Goal of Building a Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/acquisitions-not-a-goal-of-building-a-product/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:414:\"<p>There are paths to choose from and other considerations when preparing your WooCommerce product business for acquisition. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/acquisitions-not-a-goal-of-building-a-product/\">Acquisitions Are Not a Goal of Building a Product</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2022 12:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Do The Woo Community: Building an Agency Team and Culture for Success with Marius Vetrici\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://dothewoo.io/building-an-agency-team-and-culture-for-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"<p>Marius Vetrici from WPRiders shares his insights into running an agency and building a WooCommerce subscription plugin.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-an-agency-team-and-culture-for-success/\">Building an Agency Team and Culture for Success with Marius Vetrici</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2022 10:49:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Mailchimp for WordPress Plugin for Sale in the Ballpark of €1.6M\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140295\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/mailchimp-for-wordpress-plugin-for-sale-in-the-ballpark-of-e1-6m\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3896:\"<p><a href=\"https://www.dannyvankooten.com/\">Danny van Kooten</a>, creator of the <a href=\"https://wordpress.org/plugins/mailchimp-for-wp/\">Mailchimp for WordPress</a> plugin, has indicated that he is interested in selling his plugin for somewhere in the ballpark of €1.6M. It is the most popular Mailchimp solution for WordPress, although it is &#8220;unofficial&#8221; in that it is not developed by or affiliated with Mailchimp in any way. It has more than 2 million active installs and has been downloaded more than 42 million times.</p>\n\n\n\n<p>In a <a href=\"https://news.ycombinator.com/item?id=33931627\">comment</a> on a popular Hacker News post that asks, &#8220;<a href=\"https://news.ycombinator.com/item?id=33923137\">What is the best income stream you have created till date?</a>&#8221; van Kooten dropped the hint that he is willing to sell the nearly ten-year-old plugin: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>It’s definitely not my passion but in 2013 I built a WordPress plugin around the API of a popular newsletter service and it’s been paying my bills ever since.</p>\n\n\n\n<p>Still going strong at €36K per month excluding VAT.</p>\n\n\n\n<p>There was (and still is) a huge market where non-technical people are looking for a GUI around something a programmer would find very simple (and usually too boring to work on). More so if the tech surrounding it is not particularly sexy, as is the case for WordPress and PHP.</p>\n\n\n\n<p>Ps. In case anyone is reading this, I am open to selling. I spent about 4 hours a week on it and the rest is handled by 2 freelance people costing about €1K / month each. Contact me for details if interested and willing to pay in the ballpark of €1.6M.</p>\n</blockquote>\n\n\n\n<p>van Kooten developed Mailchimp for WordPress when he was hospitalized in Vietnam due to acute appendicitis with extra time on his hands during his recovery. He identifies himself as an &#8220;accidental entrepreneur&#8221; in his Hacker News bio. In 2021, he was <a href=\"https://www.wired.com/story/sustainable-software-design-climate-change/\">featured in Wired</a> for his efforts in reducing his carbon output as a plugin developer. He refactored the plugin to send 20kb less data, and, due to its large user base, he estimates these changes reduced  the world&#8217;s monthly CO<sub>2</sub> output by 59,000 kilograms, which Wired estimated is &#8220;roughly the equivalent to flying from New York to Amsterdam and back 85 times.&#8221;</p>\n\n\n\n<p>Mailchimp for WordPress has commercial upgrades ranging from $59 &#8211;  $149 per year, and 1% of the plugin&#8217;s revenue goes towards environmental projects.</p>\n\n\n\n<p>Although Mailchimp recommends WordPress.com&#8217;s &#8220;<a href=\"https://mailchimp.com/integrations/wordpress/\">Mailchimp block</a>&#8221; as the official WordPress integration (also available in Jetpack 7.1+), van Kooten&#8217;s plugin is far more flexible. Mailchimp for WordPress integrates with other popular plugins like WooCommerce, Contact Form 7, Gravity Forms, Ninja Forms 3, BuddyPress, MemberPress, and Events Manager, allowing visitors to subscribe via the checkout or comments form.</p>\n\n\n\n<p>Several commenters on van Kooten&#8217;s Hacker News response indicated interest in his offer for sale. His comment offers a a rare, transparent look into a popular plugin&#8217;s revenue and potential sale price, as most companies that acquire WordPress plugins are almost never willing to reveal how much they paid for them. As Substack moves to <a href=\"https://twitter.com/cjgbest/status/1602370307884318720\">add compatibility for Ghost themes</a> and other third-parties, and newsletters become even more critical with people leaving Twitter, it will be interesting to see more movement in the newsletter support space. van Kooten may be setting out at just the right time to find a buyer for Mailchimp for WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2022 04:30:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"WPTavern: Gutenberg 14.7 Introduces Color Coding for Template Parts and Reusable Blocks, Adds Media Tab to Inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140270\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/gutenberg-14-7-introduces-color-coding-for-template-parts-and-reusable-blocks-adds-media-tab-to-inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2734:\"<p>Sometimes Gutenberg introduces features that you never knew you needed. Such is the case with the new color coding system in the Site Editor. The latest <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">14.7 release</a> adds color to template parts and reusable blocks in the list view, block toolbar, and block selection outlines. The colorization is intended to help users differentiate between the different block types as they edit their designs.</p>\n\n\n\nvideo source: <a href=\"https://github.com/WordPress/gutenberg/issues/32163\">Gutenberg PR #32163</a>\n\n\n\n<p>Another UI enhancement in version 14.7 is a new, experimental split control for block settings. It splits the block inspector sidebar to separate the settings controls from the appearance controls, giving the appearance side the same half-moon icon used for styles in the Site Editor. The intention is to make it easier to manage blocks with many controls, such as Group or Navigation blocks, that would end up having the settings scrolling down the page. </p>\n\n\n\n<img />image source: <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">Gutenberg 14.7 release post</a>\n\n\n\n<p>The split control enhancement isn&#8217;t set in stone yet, as it must be enabled as an experimental feature in the Gutenberg > Experiments admin menu. It seems helpful but could prove to be more confusing for users, so further testing is needed before it moves out of experiments. </p>\n\n\n\n<img />\n\n\n\n<p>The inserter is getting a major change in 14.7 with the addition of a Media tab, making it faster to add images, video, and audio. Users can select the new tab and select a media type to see the ten most recent items. There&#8217;s also an &#8220;Open Media Library&#8221; button at the bottom of the panel.</p>\n\n\n\n<img />\n\n\n\n<p>Other notable updates in 14.7 include the following: </p>\n\n\n\n<ul>\n<li>Page List block can now expand inside the List View to see the hierarchy of pages (<a href=\"https://github.com/WordPress/gutenberg/pull/45776\">45776</a>)</li>\n\n\n\n<li>Layout controls added to children of flex layout blocks (width for row and height for stack are now available for child Row and Stack blocks) (<a href=\"https://github.com/WordPress/gutenberg/pull/45364\">45364</a>)</li>\n\n\n\n<li>Significant load time performance improvements from caching the results of querying settings from theme.json. (<a href=\"https://github.com/WordPress/gutenberg/pull/45372\">45372</a>)</li>\n</ul>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">changelog</a> to get a more detailed look at the dozens of improvements and bug fixes included in 14.7.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2022 03:17:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Gutenberg Times: Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=22971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45870:\"<p>Daisy Olsen and Birgit Pauli-Haack discuss Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January and much more.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h3>Announcements</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2022/12/07/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\">Leveraging theme.json and per-block styles for more performant themes</a> by Justin Tadlock</li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/oaknut/\">Oaknut</a> by Anders Noren</li>\n\n\n\n<li><a href=\"https://wptavern.com/anders-noren-releases-oaknut-a-new-profile-block-theme-with-23-style-variations\">Anders Norén Releases Oaknut, a New Profile Block Theme with 23 Style Variations</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2022/11/29/a-php-developers-guide-to-getting-started-with-block-development/\">A PHP developer’s guide to getting started with block development</a> by Michael Burridge</li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">Developers Guide to Block Themes (Part 1)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">Developers Guide to Block Themes (Part 2)</a></li>\n</ul>\n\n\n\n<h3>Community Contributions</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/plugins/lang-attribute/\">Lang Attribute for the Block Editor</a>  </li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/abbreviation-button-for-the-block-editor/\">Abbreviation Button for the Block Editor</a></li>\n</ul>\n\n\n\n<h3>What&#8217;s released</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">What’s new in Gutenberg 14.7? (7 December)</a></li>\n\n\n\n<li><a href=\"https://wordpress.github.io/gutenberg/?path=/docs/docs-introduction--page\">Storybook</a></li>\n</ul>\n\n\n\n<h3>What&#8217;s worked on</h3>\n\n\n\n<ul>\n<li><a href=\"https://github.com/wordpress/gutenberg/issues/45371\">Global Styles: Allow saving, importing, exporting, copying from another theme without switching to it</a></li>\n\n\n\n<li><a href=\"https://github.com/wordpress/gutenberg/issues/29577\">FSE: Create more robust autosaving including UI&nbsp;</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2022/12/05/design-share-nov-21-dec-2/\">Design Share: Nov 21–Dec 2</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcrip</strong>t</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello </p>\n\n\n\n<p>and welcome to our 77th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about Gutenberg 14.7, what&#8217;s next for Block Themes and an upcoming Live Q&amp;A in January and so much more. My name is Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate and core contributor on the WordPress Open-Source Project. Today we are recording the last show of 2022, and we are all in for a special treat. I&#8217;m thrilled to welcome Daisy Olsen to the show, a master educator on Block Themes, fellow developer advocate, and first-time release lead of the latest Gutenberg plugin release 14.7. Good morning, Daisy. Thank you for making the time and join me on the show. How are you?</p>\n\n\n\n<p><em>Daisy Olsen</em>: I&#8217;m doing really well. Thanks so much for having me today.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re so welcome. It&#8217;s a special pleasure for me. So, for the last year, you have been working on various educational material around the Block Themes. Your workshop at Word Camp Europe was standing room only. And then you gave an updated version three months later on Word Camp US. You also worked with a training team on online workshops. If someone knows about Block Theme, it&#8217;s you. So, what are some of the most asked questions you hear from participants about Block Themes, or what are they&#8217;re most struggling with when building Block Themes?</p>\n\n\n\n<p><em>Daisy Olsen</em>: So, I think that people come from a lot of different places in their development career or path. I&#8217;m not sure if I have any specific most asked questions at the top of my mind. But I do think that the move to more low-code or even no-code options for creating themes is a paradigm shift and it&#8217;s going to take some time for everyone to get used to it. Given how quickly the number of block themes has increased, I heard like 250 or more potentially in the theme directory there&#8217;s certainly some energy building. I would say that one thing that I&#8217;ve heard in general is that there&#8217;s sometimes some worry around how existing theme functionality will work as we move towards a block theme first ideal. And the short answer is that the old waste will still work. We&#8217;re not replacing the PHP-based theme engine. We&#8217;re expanding on it and making it much easier for developers, and users alike to participate in the theme creation process. But change can be hard, and this is a process that will happen over time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you for that. What I see that it&#8217;s also what the last bit, that it&#8217;s actually not a replacement, it&#8217;s actually an expansion of the existing theme hierarchy framework is a little hard to hear overall. This is the new things doing things what happens with the old and I think that&#8217;s part of the problem that we have, and we are all working on it. And I know that Matias also said that, there&#8217;s nothing&#8217;s going to go away or get obsolete. It&#8217;s just that the user no code, creating a theme with the site editor is actually kind of expanding the user base of it and not shrinking it. And if the pie gets bigger, I think we all really profit from that.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I would just add that as we think about the way that WordPress themes are created as an expansion. It will open up the opportunity for people to come in with a different skill set that maybe would not have been able to create theming in the WordPress, they mentioned the way that it has existed. And one of my very favorite things about WordPress theming is that you can take a theme created for version 1.2 and install it today and it&#8217;ll still work. You can&#8217;t go the other direction because new features have been at a new functionality. But you can take something as old as so many years ago and still basically use it today. I don&#8217;t know that anybody is going to do that necessarily. But the fact that backwards compatibility is such a big part of the culture of WordPress is a huge comfort if you&#8217;re thinking about the future.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Totally and that&#8217;s also what made WordPress so big is almost a 20-year backwards compatibility. And I&#8217;m really amazed, and every release party that I participate on beta releases or release candidate releases when we upgrade 4.0 something themes to the new theme, the upgrade is just seamless. Everybody who worked on the core releases has made sure that older versions upgrade to the new versions and the same happens with the classic themes that the workers will always work for classic themes. It&#8217;s not, sometimes things change, but it&#8217;s also, there&#8217;s a lot of effort also in the developer. Good work developer could not develop, a community where the effort is to make part of the block theme features available for classic themes. An example was that all the block-based template parts that can be used for classic themes, and they had that came with 6.1. Do you have seen a lot of adoption of those or what people are doing with them?</p>\n\n\n\n<p><em>Daisy Olsen</em>: We have more to do to encourage people to adopt those gradual adoption pathways, but the fact that they exist is really a great thing that we&#8217;re not expecting. The project is not expecting people to go in headfirst and change everything that they know and all of their workflows and everything. But there are ways that you can take legacy code because the truth is that not every client is going to be ready for a full redesign and some never are. But the pathways that we have to take legacy code and expand it to adopt some of these new features is really powerful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s not a really good business case to make to say, &#8220;Okay, now I start using the new thing for new client project.&#8221; Unless when you have a tested and proven workflow to get new clients online very easily for the last six or seven years, you are not going to change your workflow as the same available or agency freelancer to change that from today, from tomorrow. So, it definitely takes some time to adjust to that. We have seen this with other new features in WordPress they take about two to three years. All right. But I digress or we digress a little bit, but I think we always kind of need to talk out about a few things.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>But we are ready for our announcements. And as I mentioned in the intro, we have a great good work time live Q&amp;A planned. It&#8217;s in preparation for working with Asia. The title is layouts, layouts, layouts, and Layouts of fundamental part of how Block Themes work. And it allows you to define the width of your post content, arrange the blocks horizontally, as well as vertically. And left or right aligned and inside container blocks. And in terms of block styling, layout is a complex feature because it affects not only the container but also the child blocks in ways that go beyond the cascading style sheets inheritance.</p>\n\n\n\n<p>In the show, we will have Isabel Bryson, Andrew Serong, Justin Tadlock, and we will discuss the opportunities and challenges for this layout feature and for site builders. Both or all three of them, and I&#8217;m two but only minimally available for your questions to answer them. And Isabel Bryson will also give us a little demo of the various layout scenarios, which is kind of flex and fluid and constrained. And there&#8217;s certainly some more development being done in the few, in the couple of weeks that are until we have that, it&#8217;s going to happen on January 11 at 5:00 p.m. Eastern. That&#8217;s 10:00 UTC, 2200 UTC. And it&#8217;s a little bit of a different timeframe than other because Isabel and Andrew are in Australia. So, we have a little Pacific, an Asia Pacific kind of timeframe there. And Isabel is also a speaker at Word Camp Asia, so it&#8217;s going to be a great show.&nbsp;</p>\n\n\n\n<p><em>Daisy Olsen</em>: All right. Sounds great. Another thing that has come up recently is that the WordPress support forums are now including, rather than the WYSIWYG formatter or text format block. We have the embedded block editor. So, we&#8217;re going to see the ability to add blocks and support forms. So, it&#8217;s going to be interesting to see how that is received for by the user base and if it helps to move the support questions forward in a way. But anytime we see the Gutenberg project, the block editor as we know it outside of WordPress. Outside of the WordPress administrative area, it&#8217;s really neat because it shows how the power of this contained thing that can be dropped into another environment and used in a different way, so&#8230;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: We have in the show notes where we have the post from Alvaro Gameiro, I&#8217;m just checking the name, Alvaro Gomez. I had all letters write, and right now it&#8217;s in testing, but it won&#8217;t be in testing for long, so if you follow the post, there&#8217;s also a link for the test site, so you can try it out and see how you feel about it and also share your feedback on the make blog support post in the comments. We also have new posts on the new developer block. So, for five years I have now the trouble that is block and blog with the pronunciation so that the new developer blog is two new articles: One is Leveraging theme.json and the Per-Block Styles for More Performance Themes by Justin Tadlock.</p>\n\n\n\n<p>And he outlines how using the theme.json two style, all your elements, the blocks, the individual blocks, as well as some of the elements centrally through the theme.Json file saves you quite a bit on CSS file length. And also code I&#8217;m a fan of Anders Noren themes and he has done some great work on the block themes and he just released his theme Oaknut, which gives you a kind of link tree way to create your page and has, he says a really small CSS file, and it comes in less than 150 lines and 120 of those are lines for the custom block styles that he includes in the theme.</p>\n\n\n\n<p>So, he does not style the main thing and all the other styles that come with WordPress theme classic theme. So, I think that&#8217;s also another reason to maybe use the theme.json funnel for classic themes, which is possible. Any comments on that, Daisy?</p>\n\n\n\n<p><em>Daisy Olsen</em>: Just that it&#8217;s exciting to see that our CSS starts to get smaller and by moving things into theme.json we are paving the pathway to make more performant sites because we&#8217;ll be able to build up more tooling to only use the CSS in line when we need it. And that hasn&#8217;t always been the case. So, trying to keep things small and concise where possible is going to take things a long way. So, I think we&#8217;ll see a lot more improvement. And it&#8217;s great to see people trying to push the boundaries of small, can you make your custom CSS and still get a really beautiful design out there? That can be distributed out to a lot of people. Anders puts his themes out to the community through the theme directory quite often, and I think that he&#8217;s right on the front edge of where things will be in a couple of years.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And as Anders also opened up his GitHub repost for the theme, so you can actually learn from his coding and kind of inspect them a little bit closer if you want to. So, the second post on the developer blog is a PHP developer&#8217;s guide to getting started with Block Development by Michael Burridge, and he practically gives you a roadmap of what you need to learn or what you need as tooling and also some shortcuts and tips. If you are new to modern JavaScript development, it&#8217;s all in one place so you don&#8217;t have to chase other sources. You might need to read up a few things, but also have some great links for you to study more.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I love the approach of moving into trying to help PHP developers because so many of us are coming from that side of things as WordPress-focused developers. And sometimes the JavaScript is especially modern. JavaScript is, it&#8217;s kind of daunting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: If you start researching yourself if you don&#8217;t know where to focus. So having a curated guide is really valuable and cuts down a lot of the time that you would need to do your own research. Still and he says it in his post as well. There are some hurdles or learning curves to overcome, especially with react. But there&#8217;s also some great abstraction in Gutenberg that you can get quite a long way adopting the blocks without actually touching JavaScript. What comes to mind is block styles, block patterns with new locking features. I can see that a few agencies might say, &#8220;Okay, we are not creating new blocks because now with the block patterns.&#8221; We can style them and we can lock them down for our users to use, and we don&#8217;t have to create new JavaScript for that. That&#8217;s also a great approach is to kind of think about when do I actually have to start developing for my own custom blocks.</p>\n\n\n\n<p>A while ago, must have been maybe a year and a half ago, Victor Ramirez and I, we had a little live Q&amp;A on that approach to kind of see what an agency approach could be in a gradual adopting, here&#8217;s the word again, gradual adopting the new things. When do you really need a developer where designers and content creators actually can go a long way. So, I&#8217;ll put the link to that video and all the resources there into the show notes, so you can look up about it as well. So, the training team published two-part courses talking about block themes. It&#8217;s the developers Guide to block themes, part one and part two. So that is definitely a great resource if you want to go from Zero to Hero and get all the latest features in there. And of course, the links are in the show notes developer&#8217;s guide to. But they&#8217;re all published on learn.wordpress.org. That&#8217;s a fabulous site. And I know that some of your events that you did on online education Daisy are also available through the site.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I have some workshops published there, and also, I will occasionally run online workshops through the Learn WordPress Meetup group, which is also part of the training team&#8217;s efforts.</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. All right. We&#8217;re coming to Community Contributions and then we are for the release. I just wanted to give a shout-out to Jean-Baptist Audras address from the Whodunit Agency and is also outgoing team rep of the WordPress court team. And he tweeted that his agency released two new plug-ins mini micro plugins with creating accessible content. One is called Lang Attribute for the Block Editor. When you change in your writing the language that you can add a Lang attribute to your paragraph tag or whatever block that is, which makes you then also compact or compliant with accessibility standards for language of parts.&nbsp;</p>\n\n\n\n<p>And then, the second plugin is the abbreviation button for the block editor. Which helps you provide definitions for abbreviations using the tag the HTML tag, &lt;abbr&gt; element. And it&#8217;s quite neat because then you get a little, if there is an abbreviation, you get a little on the front end, a little squiggly line or something like that where you can point to it with your mouse and then get the long content for the abbreviation, which is actually quite neat.</p>\n\n\n\n<p>He also tweeted that worth noting that indicating language changes in content is mandatory for the WCAG or CWE compliance. And there is currently no way to do this in the block editor except for adding the code manually, editing the code manually. And this features, he says, continues this feature should be implemented natively into Gutenberg. And I just did a little digging and there has been an open issue and it&#8217;s actually goes back to the accessibility audit and there has been some movement, but not we need some developer to kind of get it on it and fix it or put it into a core. All right.</p>\n\n\n\n<h3><strong>What’s Released &#8211; Gutenberg 14.7</strong></h3>\n\n\n\n<p><em>Daisy Olsen</em>: So, let&#8217;s move on to the Changelog for Gutenberg 14.7. Gutenberg 14.7 was released this week with 165 merch PRs by 48 contributors, nine of which were first timers. And it&#8217;s packed with quite a few features, some of which are pretty experimental. And you would need to enable them through the experiment settings. And namely, that is a tabbed sidebar that splits out your block control settings between appearance, tools, styles, and other settings. Hopefully the hope there is to make it a little easier to navigate big improvements to the navigation block media selection from the inserter and more controls for the inner blocks of flex layout blocks. Other core blocks receive some small refinements that make the overall experience more consistent. There are also 19 bug fixes for accessibility improvements and quite a few documentation and code quality updates.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And congratulations, Daisy, for your first Gutenberg plug-in release. How was that experience?</p>\n\n\n\n<p><em>Daisy Olsen</em>: It was exciting and I learned a lot about how the release post comes together quite a bit that goes into it and I hope that I have another opportunity to go through this process again.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I found it when I did. So, mine was actually 13.7 yours were 14.7 so it&#8217;s kind of a bookend kind of there. And I really learned quite a bit how the whole thing comes together and about PRs and about all the processes that there are quite a few automations happening and how to handle between release candidate and stable, how to handle updates that need to get into the release. Everybody who wants to be should start reading about the release process and see if you want to volunteer for that. That definitely needs some technology background on that. That&#8217;s not something for a fly-by contributor of course, but you get help from others.&nbsp;</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>All right let&#8217;s dive into the changelog as mentioned, the block library, some standard core blocks got some refinements. The first one is that the heading block now has a class name of WP/block/heading, which means that you can target any heading with your CSS, and now that that&#8217;s in place. And it&#8217;s kind of a prototype of getting other blocks, also having a specific class name so you can target again, that was some in and out from the team that it was in there at the beginning and then they were moved around a bit and now they&#8217;re coming back.&nbsp;</p>\n\n\n\n<p>I see how that&#8217;s kind of going to work out the navigation block, I think we&#8217;re going to talk about the navigation a little later in quite some detail because it has a revamp and it&#8217;s in the experiment. We&#8217;re going to talk about that a little later. The template part block has now you now see in the site editor the colorized template parts, what is ahead of, or what&#8217;s a reusable block when you go down the list view on the left-hand side, you see some color coding there. Your eyes and your brain can better disseminate the different pieces of your page.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I really like that. I find visual cues to be very helpful. Things like if I were on a staging site, I might change the theme on it to be some obnoxious color on the admin side. I know that I&#8217;m in staging, but this is a small improvement just to give you a visual cue of what is a bigger piece of your list view rather than the individual blocks that are within the content.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And your reusable block, I don&#8217;t know if you said it, but the reusable blocks also have this colorized outline. The page list block hasn&#8217;t been touched for a while, but it gets on refinements that it actually expands in the list view, and you can change the starting page. If you are on a page that&#8217;s kind of the beginning of a set of other pages here, like a hierarchy, you can add links to the subpages in the page list block that you can add to the side of your page. So, you can outline the subpages as well. That was still missing. It was available in the other editor, in the menus, but the list block now has that, too. And the table block now, there are a lot of things that can be done to improve the table block. But now, it supports the colspan attribute so you can merge cells from the same column into one place in the table HTML and you have some listed tables if you want to. But that was definitely important when you copy-paste tables from another page or another text editor into the block editor that you keep the colspan attribute aligned so the columns and rows align correctly.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I&#8217;d say that, just in general, anytime we improve the ability to paste content in from another place is a good thing. Because the truth is that we don&#8217;t always start our writing within WordPress or we&#8217;re using something that was collaborated on some other location. So, trying to keep things aligned with how they might exist in other places is super helpful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Really. Well, really, we use Google Docs quite a bit, or I use Google Docs quite a bit. And from the beginning of the block editor, I was so amazed how seamless the copy and paste works from Google Docs to block editor, if you are sparse with your design on Google Docs. The layout you have to do on the other side, but it brought over the headings, the list, the indented list, and all that. It&#8217;s a really good place. But now, we can also do the tables, yes.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Another thing that I use is to pull in markdown, and I love that it just magically turns into HTML.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. There are actually markdown shortcuts that you can use on the block editor, yeah. That&#8217;s really cool. I need to do more markdown. When you paste markdown into GitHub, it kind of ceases that code and you cannot&#8230; It was weird. But post it into WordPress, and you can all read it. So, there was quite a few changes to the components, mostly adding a new opt-in for background color and for opt-in props. So, you can actually use that component.</p>\n\n\n\n<p>The global styles component got a new on-change action. So, when the color to the color palette, so when you click on the color palette on the&#8230; So, on the right-hand side, you see the color palettes and you see, every time you change the color, the little circle next to the property takes on the color. But when you click on it, it always went back to the default setting of the color palette.</p>\n\n\n\n<p>Now, when you click on it, you see the color that was in there before also in that little window in the color palette. So, if you just want to change the view of a color, then you don&#8217;t have to navigate to the color again and then change the views. You really see, okay, this was before and this is&#8230; So, it&#8217;s a really good improvement for changing colors. And yeah, I really love it. That&#8217;s why I pointed it out.</p>\n\n\n\n<p>The others are more like code quality improvements there. And then, now, the block editor gets the insert of the block editor. It gets a new media tap. So, now, you will be able to add pictures right from the inserter instead of going to go to the media library selected, come back to the editor. It&#8217;s now very seamless, which means that there are additional tabs. There&#8217;s one additional tab. And it gets a little crowded. So, you have the blocks, then you have the patterns, then the media tab. And your reusable block are still there, but they are replaced by an icon. And that&#8217;s the icon that you see on other reusable block references. So, I really like it. You get also some preview to the pictures. And so, it&#8217;s tested out. It&#8217;s quite amazing.</p>\n\n\n\n<p><em>Daisy Olsen</em>: And then at the bottom of the area, you still get an option to load up the old media library modal overlay. So, if you prefer that, it&#8217;s still there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, good point. Because the media library view gives you a lot more pictures to look at to select from. Because the other pictures in that view, you see one at a time in a little preview and you have to scroll through them. But if it&#8217;s just an image that you uploaded the last week or the last two weeks, depending on how much content you provide, it&#8217;s a really neat shortcut.</p>\n\n\n\n<p><em>Daisy Olsen</em>: So, the layouts control has been added to flex layout blocks, notably the row and the stack, so that you can fit. What is it? Fit, flex, and contain. Basically, those are not the right words. I wish I have to cover.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Fluid.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Yes. So, it gives you more control over how those two group block types will display the blocks or how the inner blocks or child blocks will be structured.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You also get now a minimum height block support under dimensions for the container block. Container block is like a group block or the cover block. Because it&#8217;s hard to fill something when it&#8217;s in it, it doesn&#8217;t have a maximum height thing or minimum height to put an image that fills up the whole block. So, that&#8217;s also something in there. And you can also resize the children or inner blocks. Resizing children is really hard. That&#8217;s why I try to find a different. Because the parent-child relationship, that&#8217;s more like a developer thing. It&#8217;s not for, yeah&#8230; But, yeah, that&#8217;s a great addition to that. Scrolling down to the experiments. And then, there&#8217;s a whole lot of things for the navigation block.</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p><em>Daisy Olsen</em>: So, there&#8217;s a new experiment flag that you can enable or opt into by going to Gutenberg experiments and checking the box. And what this is going to add is, in the sidebar controls for your blocks, where you would normally set your appearance settings or any other settings that are part of that block, it&#8217;s going to split out the appearance items from everything else. So, there will be a new tab interface in that sidebar, so that you can minimize the amount of scrolling that you need to do. So, it&#8217;s an experiment. And feedback, obviously, welcome. I don&#8217;t know how much it&#8217;ll change, but it&#8217;s a cool idea. I like anything that we can do to make the interface less overwhelming will be beneficial. But that is a new experiment. And I look forward to seeing how it evolves.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The navigation block also uses that space in the sidebar to actually have an off-canvas editor. That&#8217;s how it&#8217;s used now that, in the sidebar, so you get a list of your pages or the menu items that are in the navigation block. So, you have a little bit more space to edit them and rearrange them and, also, add new pages to it, because the little place that you had in the navigation block, if it&#8217;s in the header, you have overlapping issues with links and setting block tube settings. And it was a total chaos, I would say. Yeah, if you really wanted to get in there.</p>\n\n\n\n<p>And it was hard to actually add sub menus. And this feature makes it really, really easy to create sub menus. And it&#8217;s almost like a mini-version of the old menu navigator from the WP admin, the old menu settings there. And you can add and remove pages or links quite easily now, in addition to the being able to add other blocks to the navigation bar, like a search block or a site logo block like that. So, yeah, test out the new navigation block, because it&#8217;s a test that has gotten quite a few revamps from the original features, and if you like it better.</p>\n\n\n\n<p>So, the experimental settings that you see now in that menu item, one is the zoomed-out view where you can see all your template ports and all your themes all in one place in thumbnails. And then, the off-canvas navigation editor. And then, there&#8217;s also a&#8230; I haven&#8217;t tried it yet, but I heard about it yesterday on the hallway hangout for the FSE project. There is a global styles color randomizer. So, if you are not very good in color combinations, you can select one color, or the randomizer gives you a full palette for your styles. It&#8217;s a really interesting thing. It&#8217;s more a gimmick, but it&#8217;s like the dual tone or the gradient.</p>\n\n\n\n<p>But the people who want to work with colors, it&#8217;s definitely an improvement. And then, the fourth one is the block inspector tabs would be with the settings and the appearance controls changed. So, for experience, it&#8217;s been a while that we had four experiments happening in the block editor. I think it was the early days of full-site editing, had quite a few experiments. But that was back in 2020, early 2020. And now, two years later, almost three years later, we have new experiments, also.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I think that&#8217;s a great thing because it shows we&#8217;re feeling confident with what&#8217;s not experimental anymore enough to go out into new territory again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Sometimes, it&#8217;s also hard to isolate a feature into a separate place that it&#8217;s turned on and off. But yeah, it definitely has&#8230; But you need testers. So, if you are in the get the new version, check it out and let your feedback be known. It&#8217;s really important that those things are tested very early and feedback comes in, even if it&#8217;s not testing or if you don&#8217;t find a bug, but you say something is quirky or, &#8220;I don&#8217;t understand things, yet,&#8221; it&#8217;s very, very helpful when you let the team know. The document there were&#8230; Do you have anything else that you wanted to add to that?</p>\n\n\n\n<p><em>Daisy Olsen</em>: No, all good.</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: There are a few documentation edits happening there. And I only want to point out that the storybook site that&#8217;s online or that you also can get locally with the Gutenberg thing has now a link to the component folder on GitHub. When you look at a component with all the isolated, with all the features or features, attributes, on and off switches, different color scheme, you can test it on the storybook site. But when you want to check out the component, you get a direct link to the place in the Gutenberg report for the source code, so you can really double-check certain things. So, it&#8217;s a really good tool when you get down to the component level on whatever you want to build and use the storyboard to test your code.</p>\n\n\n\n<h3><strong>What is Active Development or Discussed</strong></h3>\n\n\n\n<p>So, this was the Gutenberg 14.7 change log. Well, thank you for going over it with me, Daisy. We are now in the section what&#8217;s in active development. And I have a few things there. One of them is that the team is working on making style variations theme-agnostic. What I understood with that is that you can use theme style variations that you selected even with a different theme.</p>\n\n\n\n<p><em>Daisy Olsen</em>: There are a few parts of it, the way that I&#8217;ve seen it in the design panels. And one is the other installed themes that may not be active on your site. The variations will be available, also, to be able to edit them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Cool.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Which is very cool. And then, to be able to import and export style variations from other places is another piece of it. So, I think that just a general expansion of the way that we can work with style variations is going to be really interesting. But, yes, theme agnostic is a great way to put it, because really, with the right base for how those style variations are created, particularly in terms of how things are named for color palettes and such, you should be able to take a style variation and put it onto any site that&#8217;s using a theme.JSON. So, I think that it&#8217;s been a really great thing with the way that 2023 default theme was created. And it spearheaded this idea that we should be able to use these in more than one way. But this is one piece of making it easier to switch themes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And even if that&#8217;s not a one-on-one good fit, you definitely get 80% there when you switch a theme to use the same styles that you had and then adopt what is missing. Because, you mentioned in the sentences, if the color scheme is not standardized from one style variation to the other, it might be a little bit wonky at first, but you can certainly adjust it. And I also can see one feature that could be used someplace else or in some other way is to just import style variations from other places. Like, if a theme developer has a website where have additional style variations that he doesn&#8217;t want to package with his or her theme, it certainly would make it available, just download it and add it to it. I can also see the 2023 theme as a community-wide effort. And there were 38 style variations that were submitted to be included, and 10 of those were selected. But now, there might come a way where you can actually add some of the others into your site, at least.</p>\n\n\n\n<p>All right. So, Joen Asmussen, he&#8217;s on the design team and one of the early design leads on Gutenberg, has started quite a while ago, every two weeks, posting on the design team&#8217;s make blog his design shares. And the one from last week had a few things in there that I want to point out. So, wordpress.org is in a huge site overhaul. And in the post, you see the markups of the dev hub, which is the developer site, and the job site. And there&#8217;s some great visuals. Sorry, I can&#8217;t show them to you in the podcast. But, of course, I share the link in the show notes. But you see the updates of the dev hub pages as well as the jobs pages on the org, on how they are designed and worked on right now by the meta team. Have you seen those designs?</p>\n\n\n\n<p><em>Daisy Olsen</em>: Some of them. I haven&#8217;t seen the post, but I saw some of the designs other places, the meta team.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The design process is quite a long one. There&#8217;s a second round of feedback now through the docs team because they are the owner of the sites. So, maybe I should find that as well and put it in the show notes. Another one is that the design team created the designs for a future style block. No, style book, not a block, style book. The name is still not final, but what it is, is actually a neat feature where you can see on a screen for each block how it&#8217;ll appear on your site. That&#8217;s not new. You had this with any of the themes that you got a page where you can look through how my heading&#8217;s going to be looking at. But now it&#8217;s for every block. And you can now, also, on the right-hand side, see when you check a different style variation, see how the blocks change with that.</p>\n\n\n\n<p>And that is a fabulous feature. It really makes that coming up with new things or checking out new things like a new style variation, or so. It comes really handy. There is no surprise. There is no, &#8220;Oh, Don, we didn&#8217;t look at it beforehand, but there are two things wrong with the table block,&#8221; or something like that. You see it before you do it. And then, you can do some fixes, if you want to. But you see how the site really works, not only on the front page but with every block that you put in there.</p>\n\n\n\n<p>And when I tested it, what I also saw is that it also includes the third-party blocks. So, if you have from JetBag or from Jost or from Coblocks, all those blocks will also show up in that and you see how they will change with a change of the style variations, which is, I find that particularly important because many of those block suites came out in the early days of the block editor, and some of them have not been updated. And you will see it there, too, and see which ones are actually a little bit that needs some more TLC there.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I think of this as like a unit testing feature. But rolled in, instead of having to be imported, it&#8217;s available. Once it gets in, it would be available all the time. So, you can always double-check how things are looking without importing content or some of the other ways that we&#8217;ve had to do this kind of unit testing in the past.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The feature is merged into the code base. And it&#8217;ll be released in the 14.8 release. But it&#8217;s also available, it&#8217;s already available in the Gutenberg Nightly version, if you want to download that and get an early look at it. I really loved it. And then the last one from that post is the&#8230; Is it in any post? There is a video in the design post on the reorganization of the editor.</p>\n\n\n\n<p>It&#8217;s also coming or slated for 14.8, is that the editor screens receive some reorganization that it&#8217;s better positioned for the future enhancements like the browse mode. And the poster design post has a short video for the new way of things. So, it&#8217;s more like an organized version. Right now, when you click on the appearance editor link in the WP admin, where you get your right into the editor of your homepage, which is a little bit confusing, now, when you click on it, you get the menu on the left-hand side.</p>\n\n\n\n<p>And what you see in the canvas is actually just a view. There&#8217;s an edit button where you can start the editing, but you are not going to edit by accident. Or, you can then navigate to the other template parts much easier instead of getting out of the canvas. There are all these little things where little annoying things are taken care of. And I&#8217;m looking forward to that. Some of the UI experiments, new UI is already in the experiments, but that gives them a new home, so to speak. Any comments on that?</p>\n\n\n\n<p><em>Daisy Olsen</em>: No, I look forward to seeing more about what&#8217;s coming.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s really cool. I think there&#8217;s so much more coming. And I&#8217;m looking forward to 6.2 because some of it is definitely slated. We don&#8217;t have any plans yet on the 6.2 release cycle. That&#8217;s a very shortening&#8230; It&#8217;s a nice shortening of things. Instead of release cycle, you say recycle. Well, the state of the word is coming up. And I&#8217;m sure we hear a little bit about what&#8217;s coming in 2023, a review of 2022. It&#8217;s on December 15th at 1:00 p.m. Eastern 1800 DTC. I always need to check my calculations on the time zones. That&#8217;s just a shout-out for don&#8217;t miss it. It will be recorded, of course, for anybody who has no time at 1:00 p.m. or in the evening. So, Daisy, is there anything? How can people reach you if they wanted to connect with you? And what is in store on the online meetup?</p>\n\n\n\n<p><em>Daisy Olsen</em>: Let&#8217;s see. So, nothing scheduled for online meetup, as we&#8217;re coming into the holiday season. If you&#8217;d like to get in touch with me, I am Daisy O, the letter &#8220;O,&#8221; on mixed Slack. And also, that&#8217;s my WordPress profile. Most other places, Twitter, Facebook, LinkedIn, I&#8217;m DaisyOlsen, all one word.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So, so we&#8217;re coming to the end of the show, and I will thank you very much for spending the time with me here and going through the change log. Good work on all the good educational pieces that you do. And if you have any questions, still listening about block themes, you can contact me. But I will point you to Daisy, in shortcut, unless we find, of course, already material online. She also has one post in the developer blog. What is that about?</p>\n\n\n\n<p><em>Daisy Olsen</em>: It was about the various ways you can use the home template and post template options and theming.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. As always, the show notes will be published on the gutenbergtimes.com/podcast. This is episode 77. And if you have questions and suggestions or news that you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. Yes, that&#8217;s an email address. No slack, no Twitter. Well, of course, you can always follow us on @gutenbergtimes on Twitter. We also have pinned on the profile page our place on Mastodon. If you have left Twitter, just go there. It&#8217;s a public page. You can still see it and link it. Thank you all for listening. Thank you, Daisy. Wishing everyone wonderful holidays and a happy new year. And I&#8217;ll see you on the other side until 2023. Goodbye.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Thanks so much for having me, Birgit. And happy holidays to everyone.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Dec 2022 02:40:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Gutenberg Times: State of the Word, Gutenberg 14.7, Box Shadow and more – Weekend Edition 238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=22914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://gutenbergtimes.com/state-of-the-word-gutenberg-14-7-box-shadow-and-more-weekend-edition-238/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24888:\"<p>Howdy,</p>\n\n\n\n<p>Going through the latest Gutenberg release, and seeing what is in store for the next one, I feel, fantastic progress has been made on Phase 2 of the block editor. WordPress will be in great shape to start the next phase: collaborative editing.  If you are keen to learn more, I suggest you watch <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">next week&#8217;s State of the Word</a>.  As always, it will be recorded, and you can watch it at your leisure. </p>\n\n\n\n<a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\"><img /></a>\n\n\n\n<p>I&#8217;d be interested in your take of the keynote as well as the Q &amp; A that will be held afterwards. I hope you write with your thoughts.</p>\n\n\n\n<p>Until next week, be well! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<h2 id=\"0-strong-a-href-https-us-02-web-zoom-us-webinar-register-7616700808432-wn-ig-f-xjz-c-qym-tk-62-c-v-9-ocw-layout-layout-layout-a-strong\">Layout. Layout. Layout</h2>\n\n\n\n<p><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Reserve your seats!</a></strong> The next <strong>Gutenberg Live Q &amp; A</strong> will take place on January 11th, 2023 at 5pm ET / 22:00 UTC . </p>\n\n\n\n<p>Layouts are a fundamental part of how block themes work: Layout allows us to define the width of our post content, and arrange blocks horizontally or vertically, right or left aligned, inside container blocks. In terms of block styling, Layout is a complex feature because it affects child blocks in ways that go beyond CSS inheritance.</p>\n\n\n\n<p>In this show, <strong>Isabel Brison</strong>, <strong>Andrew Serong</strong> and <strong>Justin Tadlock</strong> will discuss the opportunities and challenges of the Layout features for site builders, and they will be available to answer your questions. Isabel Brison will also give us a demo of various layout scenarios. <strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Join us! </a></strong></p>\n\n\n\n<p><em>This is also a preview on <a href=\"https://asia.wordcamp.org/2023/session/layout-layout-layout/\">Isabel Brison&#8217;s talk at WordCamp Asia</a></em> i<em>n February 2023</em></p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\"><img /></a>\n\n\n\n\n\n<p><strong>Lana Miro</strong> collected <a href=\"https://crocoblock.com/blog/best-wordpress-podcasts-to-listen/\"><strong>16 Best WordPress Podcasts to Listen To (Top Selection)</strong></a>. She wrote about the Gutenberg Changelog: &#8220;This podcast is not just about WordPress in general but specifically about the Gutenberg block editor. In each episode, host Birgit Pauli-Haack and a guest discuss the latest version of Gutenberg and any related issues. They do all the hard work of curating news of Gutenberg’s development and then present it with infectious enthusiasm.&#8221; Thank you, Lana &nbsp;💞</p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-strong-a-href-https-us-02-web-zoom-us-webinar-register-7616700808432-wn-ig-f-xjz-c-qym-tk-62-c-v-9-ocw-layout-layout-layout-a-strong\">Layout. Layout. Layout</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-14-7-released\">Gutenberg 14.7 release</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-new-videos\"> New videos </a><ul><li><a href=\"https://gutenbergtimes.com/feed/#7-word-press-tv\">WordPressTV</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 id=\"2-gutenberg-14-7-released\">Gutenberg 14.7 release</h3>\n\n\n\n<p><strong>Gutenberg 14.7 </strong>was released this week, with 165 merged PRs by 48 Contributors, 9 were first timers! And it’s packed with quite a few features, some of them still experimental. You see big improvements to the navigation block, a media selection from the inserter and more controls for the inner blocks of flex layout blocks. Other core blocks received some small refinements that make the overall experience more consistent.</p>\n\n\n\n<p><strong>Daisy Olsen</strong>, lead for Gutenberg 14.7 plugin release, wrote in the post. <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>What’s new in Gutenberg 14.7? (7 December)</strong></a>,  &#8220;It introduces a new experimental tabbed&nbsp;sidebar, colors to help identify some&nbsp;block&nbsp;types in list view, and improvements to the Page List block to make it easier to manage page links in your content.&#8221; </p>\n\n\n\n<p>Olsen highlighted the following features:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#improved-organization-of-block-settings-with-split-control\">Improved organization of block settings with split control</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#quickly-identify-template-parts-and-reusable-blocks-by-color\">Quickly identify Template Parts and Reusable Blocks by color</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#add-media-to-your-content-directly-from-the-inserter\">Add media to your content directly from the inserter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#see-all-pages-in-list-view-for-the-page-list-block\">See all pages in List View for the Page List block&nbsp;</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#layout-controls-added-to-children-of-flex-layout-blocks\">Layout controls added to children of flex layout blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#improved-load-times-by-caching-the-results-of-querying-settings-from-theme-json\">Improved load times by caching the results of querying settings from theme.json</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Yesterday, <strong>Daisy Olsen</strong> and I recorded the 77th Episode of the Gutenberg Changelog. It was such a great pleasure to discuss the release and what&#8217;s coming next for the block editor. The episode will arrive at your favorite podcast app over the weekend. </p>\n\n\n\n<a href=\"https://gutenbergtimes.com/podcast/\"><img /></a>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\">Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January</a> with special guest, Daisy Olsen and host Birgit Pauli-Haack. </p>\n</div></div>\n\n\n\n<p><strong>Anne McCarthy</strong>, who runs the FSE Outreach program held this week&#8217;s <a href=\"https://make.wordpress.org/test/2022/12/08/hallway-hangout-lets-chat-about-the-future-of-custom-css-with-block-themes/\"><strong>Hallway Hangout: Let’s chat about the Future of Custom CSS with block themes</strong></a> and posted the recording and a summary. </p>\n\n\n\n<p>In another update from the FSE Program, Anne McCarthy is<a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\"><strong> seeking volunteers to use Replay.io for capturing bugs</strong></a> . After using Instant WP for spinning up test site for call for testings, Anne McCarthy will expand the program to pilot using Replay.io. Volunteers will  &#8220;help determine how it can be used to better WordPress’ bug finding and fixing feedback&nbsp;loop.&#8221;</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p>The <strong><a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a></strong> is still in beta. The editorial group is working on getting more posts published. If you want to write a blog post that would help WordPress developer be successful building themes or plugins or bespoke site for client, browse through the <a href=\"https://github.com/WordPress/developer-blog-content/discussions/categories/topic-ideas\">topic Ideas, that have already been submitted</a>.  </p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/how-to-contribute/\">How to contribute</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/tips-and-guidelines-for-writers/\">Tips and guidelines for writers</a></li>\n</ul>\n</div></div>\n\n\n\n<p><strong>Alvaro Gómez</strong> posted about <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\"><strong>Introducing the Block Editor in the Support Forums</strong></a>; only a few core-block will be allowed. &#8220;Users will be able to easily insert links, share code or embed screenshots. Using Blocks will also enable new possibilities, such as using patterns for common responses to allow for faster answers.&nbsp;&#8221; he wrote.  If I read it right and the current editor in use &#8220;predates TinyMCE&#8221;, then this might be the first update to the forums editor since the start of the website in 2003. </p>\n\n\n\n<p>For now, it&#8217;s available via a test site, and you are invited to try it and share your feedback on the <a href=\"https://meta.trac.wordpress.org/ticket/6608\">meta trac ticket. </a></p>\n\n\n\n<p><strong>Sarah Gooding</strong> also reported on this update: <a href=\"https://wptavern.com/the-block-editor-is-coming-to-wordpress-support-forums\"><strong>The Block Editor Is Coming to WordPress’ Support Forums</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In her article <strong><a href=\"https://wptavern.com/woocommerce-blocks-9-1-0-introduces-products-block-in-beta\">WooCommerce Blocks 9.1.0 Introduces Products Block in Beta</a> Sarah Gooding</strong> reports on the latest release of WooCommerce Blocks. &#8220;The plugin serves as a place to iterate and test new blocks, and this release introduces the new Product Query-powered Products block in beta. (&#8230;) The new Products block is based on the core Query Loop block. WooCommerce Blocks contributors are aiming to replace all the plugin’s current product-displaying blocks with this one.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rich Tabor</strong>, theme and plugin developer, was <a href=\"https://richtabor.com/wordpress-design-tool/\"><strong>exploring WordPress as a design tool</strong></a>. It&#8217;s the story of how he challenged himself to take one pattern,&nbsp;from one theme, and morph it multiple times — only using the design controls of the block editor.  &#8220;Every font family/size, color, border, radius, image, video, and spacing value were all added in-editor.&#8221; And he also challenges you to give this a try: </p>\n\n\n\n<ul>\n<li><em>Use only the&nbsp;<a href=\"https://wordpress.org/themes/twenty-twenty-three\">Twenty Twenty-Three&nbsp;</a><a href=\"https://wordpress.org/themes/twentytwentythree\">theme</a>.&nbsp;</em></li>\n\n\n\n<li>Design a section of a page, then </li>\n\n\n\n<li>morph it a couple of times using only the design tooling within the editor.&nbsp;</li>\n</ul>\n\n\n\n<a href=\"https://richtabor.com/wordpress-design-tool/\"><img /></a>\n\n\n\n<p><strong>Automattic&#8217;s Sensei LMS</strong> has <a href=\"https://senseilms.com/meet-course-a-new-free-block-theme-by-sensei/\"><strong>released a new free block theme called &#8220;Course.&#8221;</strong></a> It is designed for creators and is built to work perfectly with all Sensei LMS features, including course lists, sales pages, and learning mode course templates. It is also open-source and <a href=\"https://wordpress.org/themes/course/\">available on WordPress.org</a>, making it ideal for course creators, bloggers, coaches, small businesses, and even those using competitor LMS WordPress plugins. The theme is mobile-optimized and allows for customization to match your brand.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://jetpack.com/blog/jetpack-11-6-update-to-the-form-block-and-more/\">Jetpack 11.6 release</a></strong> added new features to its forms and SEO capabilities. It now has block pattern support for forms, making it easier to create them, and new SEO features allowing users to specify that certain posts or pages should not be indexed by search engines, and to set custom SEO titles for individual posts and pages.</p>\n\n\n\n<a href=\"https://jetpack.com/blog/jetpack-11-6-update-to-the-form-block-and-more/\"><img /></a>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/54-steve-burge-on-where-were-at-with-multi-author-collaboration-in-wordpress\" target=\"_blank\" rel=\"noreferrer noopener\">#54 – </a><strong><a href=\"https://wptavern.com/podcast/54-steve-burge-on-where-were-at-with-multi-author-collaboration-in-wordpress\" target=\"_blank\" rel=\"noreferrer noopener\">Steve Burge on Where We’re at With Multi-Author Collaboration in WordPress</a> </strong>with Nathan Wrigley. On this episode of the Jukebox podcast from WP Tavern, the topic is multi-author collaboration in WordPress. Steve Burge discusses the current state of collaboration in WordPress, the challenges that come with it, and what the future holds for the platform. Burge also elaborates on the site editing phase of the Gutenberg project and how it relates to collaboration.</p>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> just published a new post on the WordPress Developer Blog:  <a href=\"https://developer.wordpress.org/news/2022/12/07/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\"><strong>Leveraging theme.json and per-block styles for more performant themes</strong></a>. I<a href=\"https://twitter.com/justintadlock/status/1600623143558828034\">n a tweet</a> he wrote: &#8220;This post dives into how to primarily lean into theme.json when styling your theme, taking advantage of the built-in performance enhancements that WordPress offers out of the box, such as only outputting CSS when it&#8217;s needed. All theme authors know that theme.json isn&#8217;t quite enough for every project. However, you can benefit from those same enhancements by loading per-block stylesheets. This is also great for integrating with third-party blocks without bulking up your CSS.&#8221; </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p>In his article on the CSS Tricks, <a href=\"https://css-tricks.com/adding-box-shadows-to-wordpress-blocks-and-elements/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Adding Box Shadows to WordPress Blocks and Elements</strong></a>, <strong>Ganesh Dahal</strong> provides you with a tutorial and an example of how to add a `box-shadow` to the hover state of a button in `theme.json`. ICYMI: As of WordPress 6.1, it is possible to add styles to elements and blocks using `theme.json`, including pseudo-classes such as `:hover`. Ben Dwyer wrote the corresponding Dev Note: <a href=\"https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/\">Styling elements in block themes</a></p>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In his post, <a href=\"https://fluffyandflakey.blog/2022/12/06/access-all-block-attributes-structurally-with-the-gutenberg-block-editor/\"><strong>Access all block attributes structurally with the Gutenberg block editor</strong></a>, <strong>Dennis Snell</strong> wrote &#8220;about a small experiment to eliminate sourced attributes in Gutenberg posts. If you want to build a custom block editor, and you wish to avoid parsing HTML to get the full set of attributes, then it’s strikingly easy to do so: all it takes is disabling a few properties of each block’s attribute definitions.&#8221; Let him tell you more! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"6-new-videos\"> New videos </h2>\n\n\n\n<p><a href=\"https://torquemag.io/2022/12/torque-social-hour-learning-to-use-the-site-editor/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Torque Social Hour: Learning to use the Site Editor</strong></a> with <strong>Brian Gardner.</strong> On this week’s episode, Brian Gardner teaches Doc the fundamentals of editing a block-based WordPress theme with the new Site Editor. Brian designed one of the Style Variations that came in the new Twenty Twenty Three theme.</p>\n\n\n\n<h3 id=\"7-word-press-tv\">WordPressTV</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/09/builder-basics-demystifying-theme-json-and-global-styles/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Builder Basics: Demystifying theme.json and Global Styles</strong></a> (Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/09/manage-your-block-theme-fonts-with-create-block-theme/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Manage your block theme fonts with Create Block Theme</strong></a> (Learn WordPress)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/08/the-key-to-locking-blocks/\" target=\"_blank\" rel=\"noreferrer noopener\">The key to locking blocks</a> </strong>(Learn WordPress)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/08/content-creators-are-users-too-the-crucial-importance-of-carefully-crafted-editorial-experiences/\" target=\"_blank\" rel=\"noreferrer noopener\">Content creators are users too: the crucial Importance of carefully crafted editorial experiences</a> </strong>(WCUs)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/07/using-the-navigation-block-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Using the navigation block</a> </strong>(Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/02/hallway-hangout-future-of-css-in-block-themes/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Hallway Hangout: the future of CSS in block themes</strong></a> (Learn WordPress)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/02/builder-basics-building-with-columns-groups-rows-and-stacks/\" target=\"_blank\" rel=\"noreferrer noopener\">Builder basics: building with columns, groups, rows and stacks</a> </strong>(Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/02/lets-code-developing-blocks-without-react-controls/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Let’s code: developing blocks without React! – Controls</strong></a> (Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/30/using-page-templates/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Using page templates</strong></a> (Learn WordPress)</li>\n</ul>\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p><strong>December 12, 2022 &#8211; 10 am &#8211; 1:30 pm ET / 15:00 &#8211; 18:30 UTC </strong><br /><a href=\"https://bluehostawards.com/\"><strong>WP CreatorCon</strong>  </a>&#8211;  a virtual event curated by Bluehost to bring together all WordPress creators of the world. It&#8217;s an event that will culminate the Bluehost Creators Awards. </p>\n\n\n\n<p><strong>December 15, 2022 – 1 pm ET / 18:00 UTC</strong><br /><strong><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a></strong>&nbsp;– Matt Mullenweg’s annual keynote.</p>\n\n\n\n<p><strong>January 11, 2023 &#8211; 5 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: Layout, layout, layout</a></strong><br />Panel discussion with Isabel Brison, Andrew Serong, Justing Tadlock and Birgit Pauli-Haack</p>\n\n\n\n<p><strong>February 17 – 19, 2023</strong><br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>December 12, 2022 – 3 pm ET / 22:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/289957641/\"><strong>Creating a Call To Action with the Block Editor</strong></a></p>\n\n\n\n<p>December 14, 2022 &#8211; 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170169/\"><strong>Exploring Category Templates and the Query Loop Block Session 1</strong></a></p>\n\n\n\n<p>December 15, 2022 &#8211;  9 am ET / 14:00 UTC<br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290237910/\">Let&#8217;s code: Developing Blocks without React! &#8211; Review</a></strong></p>\n\n\n\n<p>December 21, 2022 &#8211;  7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170454/\"><strong>Creating a Theme with the Create Block Theme Plugin Session 1</strong></a></p>\n\n\n\n<p>December 21, 2022 &#8211; 3 am ET / 8 am UTC<br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170469/\">Creating a Theme with the Create Block Theme Plugin Session 2</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: &#8220;Galleria Vittorio Emanuele II&#8221; in Milan by Dennis Hipp via <a href=\"https://wordpress.org/photos/photo/6136384d1b/\">WordPress Photos</a> </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Dec 2022 13:57:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 10 Jan 2023 03:57:40 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Tue, 10 Jan 2023 03:30:28 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211221080300\";}','no'),(11538,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1673366259','no'),(11539,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1673323059','no'),(150,'recently_activated','a:3:{s:49:\"tenweb-speed-optimizer/tenweb_speed_optimizer.php\";i:1673215647;s:31:\"photo-gallery/photo-gallery.php\";i:1673205345;s:45:\"custom-facebook-feed/custom-facebook-feed.php\";i:1673204630;}','yes'),(151,'can_compress_scripts','1','no'),(155,'finished_updating_comment_type','1','yes'),(159,'current_theme','Avada Child','yes'),(160,'theme_mods_Avada-Child-Theme','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:15:\"main_navigation\";i:31;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(161,'theme_switched','','yes'),(162,'avada_version','7.9.1','yes'),(178,'avada_disable_builder','1','yes'),(179,'avada_disable_encoding','1','yes'),(168,'_transient_timeout_avada_demos','1661385832','no'),(1237,'recovery_mode_email_last_sent','1673244565','yes'),(1148,'tribe_last_save_post','1661314702.8666','yes'),(1149,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1152,'fs_active_plugins','O:8:\"stdClass\":0:{}','yes'),(1153,'fs_debug_mode','','yes'),(1154,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:3069;a:2:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";}}s:11:\"plugin_data\";a:1:{s:19:\"the-events-calendar\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:9:\"prev_path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1661314612;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:6:\"5.16.4\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:23:\"test-site.wlvrotary.org\";s:9:\"server_ip\";s:14:\"192.145.80.124\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1661314612;s:7:\"version\";s:6:\"5.16.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1661314628;s:7:\"version\";s:6:\"5.16.4\";}s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"13\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}}}s:13:\"file_slug_map\";a:1:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";}s:7:\"plugins\";a:1:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:6:\"5.16.4\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"54fd833cfa7c68832a3162951fbc5384\";s:13:\"admin_notices\";a:1:{s:19:\"the-events-calendar\";a:0:{}}}','yes'),(1155,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(8599,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;}','yes'),(170,'shop_catalog_image_size','a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(171,'shop_single_image_size','a:3:{s:5:\"width\";i:700;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(172,'shop_thumbnail_image_size','a:3:{s:5:\"width\";i:120;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(173,'woocommerce_single_image_width','700','yes'),(174,'woocommerce_thumbnail_image_width','500','yes'),(175,'woocommerce_thumbnail_cropping','uncropped','yes'),(176,'fusion_dynamic_css_posts','a:2:{i:1700;b:1;s:6:\"global\";b:1;}','yes'),(177,'fusion_dynamic_css_ids','a:2:{i:1700;s:32:\"67e2dc08dddc56ecfa40d341dcbb0c8f\";i:336;s:32:\"5aeed4f7bbb2ac8bc8b4d45e5994f3e1\";}','yes'),(6275,'event_type_2_children','a:0:{}','yes'),(11989,'_transient_timeout_avada_dashboard_data','1673371605','no'),(11990,'_transient_avada_dashboard_data','a:5:{s:7:\"on_sale\";b:0;s:5:\"price\";s:3:\"$69\";s:9:\"video_url\";s:43:\"https://www.youtube.com/watch?v=voUH7paWJg8\";s:13:\"avada_version\";s:5:\"7.9.1\";s:13:\"bypass_active\";b:0;}','no'),(11529,'_transient_timeout_feed_mod_2a09f5c5cc681cffa13dc8f7a0998b4c','1673366251','no'),(11530,'_transient_feed_mod_2a09f5c5cc681cffa13dc8f7a0998b4c','1673323051','no'),(365,'fusion_options-transients','a:2:{s:14:\"changed_values\";a:2:{s:31:\"button_gradient_top_color_hover\";s:17:\"var(--awb-color8)\";s:34:\"button_gradient_bottom_color_hover\";s:17:\"var(--awb-color8)\";}s:9:\"last_save\";i:1673243992;}','yes'),(1766,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:35:\"subscriptions@goodcausepartners.com\";s:7:\"version\";s:5:\"6.1.1\";s:9:\"timestamp\";i:1668550313;}','no'),(8415,'_site_transient_timeout_browser_2bc01f0d80605455598bb57e5e6f931e','1673473004','no'),(8416,'_site_transient_browser_2bc01f0d80605455598bb57e5e6f931e','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"108.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(8417,'_site_transient_timeout_php_check_c9dd5cfbc4fa9554c7110a759bca4ee5','1673473004','no'),(8418,'_site_transient_php_check_c9dd5cfbc4fa9554c7110a759bca4ee5','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(9456,'tenweb_themes_list','a:4:{i:0;a:28:{s:10:\"product_id\";i:173;s:4:\"slug\";s:28:\"tenweb-website-builder-theme\";s:5:\"title\";s:13:\"Builder Theme\";s:11:\"description\";s:27:\"10Web Website Builder Theme\";s:4:\"type\";s:5:\"theme\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:32:\"tenweb-website-builder-theme.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:125:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/tenweb-website-builder-theme-2019-04-17.png\";s:9:\"info_link\";s:16:\"http://10web.io/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:16:\"http://10web.io/\";s:11:\"review_link\";s:16:\"http://10web.io/\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:0;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"2.0.0\";s:4:\"paid\";s:6:\"2.0.15\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-08-26 12:27:02\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.0\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:1;a:28:{s:10:\"product_id\";i:185;s:4:\"slug\";s:11:\"10web-theme\";s:5:\"title\";s:11:\"10Web Theme\";s:11:\"description\";s:11:\"10Web Theme\";s:4:\"type\";s:5:\"theme\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:15:\"10web-theme.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:108:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/10web-theme-2020-06-17.png\";s:9:\"info_link\";s:16:\"http://10web.io/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:16:\"http://10web.io/\";s:11:\"review_link\";s:16:\"http://10web.io/\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:0;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"1.0.0\";s:4:\"paid\";s:8:\"23.01.07\";}s:7:\"is_paid\";i:0;s:20:\"is_hosting_available\";i:0;s:12:\"last_updated\";s:19:\"2023-01-05 04:41:57\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.0\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:2;a:28:{s:10:\"product_id\";i:187;s:4:\"slug\";s:10:\"10web-blog\";s:5:\"title\";s:10:\"10Web Blog\";s:11:\"description\";s:10:\"10Web Blog\";s:4:\"type\";s:5:\"theme\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:14:\"10web-blog.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:107:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/10web-blog-2020-06-17.png\";s:9:\"info_link\";s:16:\"http://10web.io/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:16:\"http://10web.io/\";s:11:\"review_link\";s:16:\"http://10web.io/\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:0;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"1.0.0\";s:4:\"paid\";s:8:\"22.12.02\";}s:7:\"is_paid\";i:0;s:20:\"is_hosting_available\";i:0;s:12:\"last_updated\";s:19:\"2022-12-15 12:27:29\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.0\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:3;a:28:{s:10:\"product_id\";i:200;s:4:\"slug\";s:13:\"experts-theme\";s:5:\"title\";s:13:\"Experts Theme\";s:11:\"description\";s:13:\"Experts Theme\";s:4:\"type\";s:5:\"theme\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:17:\"experts-theme.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:0:\"\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:17:\"https://10web.io/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:0;s:6:\"rating\";s:0:\"\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:0;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"1.0.0\";s:4:\"paid\";s:9:\"22.05.001\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-09-15 08:08:22\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.0\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}}','no'),(9457,'tenweb_addons_list','a:35:{i:0;a:28:{s:10:\"product_id\";i:27;s:4:\"slug\";s:14:\"ecwd-subscribe\";s:5:\"title\";s:9:\"Subscribe\";s:11:\"description\";s:153:\"A great tool which allows your users to subscribe to events based on category, tag, organizer, venue and get important updates in their personal calendar\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:18:\"ecwd-subscribe.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:111:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-subscribe-2017-12-14.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:123;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.8\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2020-08-04 12:14:25\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:1;a:28:{s:10:\"product_id\";i:29;s:4:\"slug\";s:14:\"ecwd-ticketing\";s:5:\"title\";s:13:\"Event Tickets\";s:11:\"description\";s:140:\"Event Tickets Add-on allows your visitors to purchase tickets to your events in a simple and straightforward way directly from your website.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:18:\"ecwd-ticketing.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:111:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-ticketing-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:133;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.5\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-12-24 07:16:11\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:2;a:28:{s:10:\"product_id\";i:33;s:4:\"slug\";s:30:\"ecwd-frontend-event-management\";s:5:\"title\";s:25:\"Frontend Event Management\";s:11:\"description\";s:103:\"This add-on is designed for allowing the users/guests to add events to the calendar from the front end.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:34:\"ecwd-frontend-event-management.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:122:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/frontend-event-management-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:120;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.0.20\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-03-02 10:15:39\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:3;a:28:{s:10:\"product_id\";i:35;s:4:\"slug\";s:21:\"ecwd.countdown.widget\";s:5:\"title\";s:15:\"Event Countdown\";s:11:\"description\";s:38:\"Add an elegant countdown to your site.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:25:\"ecwd.countdown.widget.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:118:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd.countdown.widget-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:32:\"https://demo.10web.io/countdown/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:127;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.9\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2019-09-06 07:03:09\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:4;a:28:{s:10:\"product_id\";i:37;s:4:\"slug\";s:9:\"ecwd.ical\";s:5:\"title\";s:16:\"iCAL Integration\";s:11:\"description\";s:149:\"This add-on integrates the calendar plugin with your iCAL Calendar and gives functionality to import events or just display events without importing.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:13:\"ecwd.ical.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:106:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd.ical-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:132;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.8\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2018-09-20 12:57:51\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:5;a:28:{s:10:\"product_id\";i:39;s:4:\"slug\";s:9:\"ecwd-gcal\";s:5:\"title\";s:27:\"Google Calendar Integration\";s:11:\"description\";s:135:\"This addon integrates ECWD with your Google Calendar and gives functionality to import events or just display events without importing.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:13:\"ecwd-gcal.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:106:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-gcal-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:131;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.7\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2018-09-20 15:12:07\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:6;a:28:{s:10:\"product_id\";i:41;s:4:\"slug\";s:10:\"ecwd-views\";s:5:\"title\";s:5:\"Views\";s:11:\"description\";s:107:\"The Views is a convenient add-on for displaying one of the additional Pro views within the pages and posts.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:14:\"ecwd-views.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:107:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-views-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:129;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.4\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2018-09-20 13:29:25\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:7;a:28:{s:10:\"product_id\";i:73;s:4:\"slug\";s:11:\"ecwd.import\";s:5:\"title\";s:13:\"Import/Export\";s:11:\"description\";s:92:\"Event Calendar WD allows exporting and importing of events, categories, organizers and more.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:15:\"ecwd.import.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:108:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd.import-2017-12-21.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:100;s:6:\"rating\";s:3:\"100\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:121;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.0.11\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2019-02-14 14:53:14\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:8;a:28:{s:10:\"product_id\";i:75;s:4:\"slug\";s:20:\"ecwd-upcoming-events\";s:5:\"title\";s:15:\"Upcoming Events\";s:11:\"description\";s:108:\"Choose events within a certain time frame or specific events and display them on site front-end as a widget.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:24:\"ecwd-upcoming-events.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:117:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-upcoming-events-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:100;s:6:\"rating\";s:3:\"100\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:128;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.8\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2019-04-29 11:54:01\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:9;a:28:{s:10:\"product_id\";i:77;s:4:\"slug\";s:12:\"ecwd-filters\";s:5:\"title\";s:6:\"Filter\";s:11:\"description\";s:63:\"This add-on is designed for advanced event filter and browsing.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:16:\"ecwd-filters.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:109:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-filters-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:100;s:6:\"rating\";s:3:\"100\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:126;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.8\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-08-09 12:49:58\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:10;a:28:{s:10:\"product_id\";i:79;s:4:\"slug\";s:11:\"ecwd-export\";s:5:\"title\";s:27:\"Export to GCal/iCal/Outlook\";s:11:\"description\";s:120:\"Export single or whole month events in CSV and ICS formats and import to their iCalendars, Google and Outlook calendars.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:15:\"ecwd-export.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:108:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-export-2017-12-21.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:100;s:6:\"rating\";s:3:\"100\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:124;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.8\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2018-09-20 15:13:13\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:11;a:28:{s:10:\"product_id\";i:81;s:4:\"slug\";s:10:\"ecwd-embed\";s:5:\"title\";s:5:\"Embed\";s:11:\"description\";s:79:\"Display any of your calendars on any other website using the simple embed code.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:14:\"ecwd-embed.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:107:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-embed-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:100;s:6:\"rating\";s:3:\"100\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:125;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.3\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2018-09-20 13:31:07\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:12;a:28:{s:10:\"product_id\";i:83;s:4:\"slug\";s:22:\"ecwd-additional-fields\";s:5:\"title\";s:13:\"Custom Fields\";s:11:\"description\";s:98:\"Custom Fields Add-On will enable you to have more fields for more detailed and structured content.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:26:\"ecwd-additional-fields.zip\";s:9:\"parent_id\";i:25;s:4:\"logo\";s:119:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecwd-additional-fields-2017-12-14.svg\";s:9:\"info_link\";s:49:\"https://10web.io/addons/wordpress-event-calendar/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:0:\"\";s:9:\"downloads\";i:100;s:6:\"rating\";s:3:\"100\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:122;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.4\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2018-09-20 13:53:49\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:13;a:28:{s:10:\"product_id\";i:107;s:4:\"slug\";s:20:\"photo-gallery-export\";s:5:\"title\";s:27:\"Photo Gallery Export/Import\";s:11:\"description\";s:111:\"Export/Import add-on of Photo Gallery plugin allows you to export all gallery data and import it to a new site.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:24:\"photo-gallery-export.zip\";s:9:\"parent_id\";i:101;s:4:\"logo\";s:117:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/photo-gallery-export-2017-12-13.svg\";s:9:\"info_link\";s:49:\"https://10web.io/plugins/wordpress-photo-gallery/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.1.7\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-03-11 08:16:34\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:14;a:28:{s:10:\"product_id\";i:113;s:4:\"slug\";s:31:\"ecommerce-wd-top-rated-products\";s:5:\"title\";s:31:\"Ecommerce WD Top Rated Products\";s:11:\"description\";s:106:\"This add-on will allow displaying top rated items of single or multiple categories, depending on the setup\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:35:\"ecommerce-wd-top-rated-products.zip\";s:9:\"parent_id\";i:103;s:4:\"logo\";s:128:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecommerce-wd-top-rated-products-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.1\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2017-12-22 11:20:19\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:15;a:28:{s:10:\"product_id\";i:115;s:4:\"slug\";s:24:\"ecommerce-wd-bestsellers\";s:5:\"title\";s:24:\"Ecommerce WD Bestsellers\";s:11:\"description\";s:120:\"Ecommerce Bestsellers add-on will allow you to display best-selling items and products in demand in a featured position.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:28:\"ecommerce-wd-bestsellers.zip\";s:9:\"parent_id\";i:103;s:4:\"logo\";s:121:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecommerce-wd-bestsellers-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:14;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.0\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2017-12-22 11:20:13\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:16;a:28:{s:10:\"product_id\";i:117;s:4:\"slug\";s:19:\"ecommerce-wd-stripe\";s:5:\"title\";s:19:\"Ecommerce WD Stripe\";s:11:\"description\";s:101:\"Stripe add-on is a tool for adding Stripe as a payment method for purchasing items from Ecommerce WD.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:23:\"ecommerce-wd-stripe.zip\";s:9:\"parent_id\";i:103;s:4:\"logo\";s:116:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecommerce-wd-stripe-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.1\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2017-12-25 11:48:17\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:17;a:28:{s:10:\"product_id\";i:119;s:4:\"slug\";s:22:\"ecommerce-wd-mini-cart\";s:5:\"title\";s:22:\"Ecommerce WD Mini Cart\";s:11:\"description\";s:117:\"This add-on is designed for displaying shopping cart information including products and their details to widget area.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:26:\"ecommerce-wd-mini-cart.zip\";s:9:\"parent_id\";i:103;s:4:\"logo\";s:119:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecommerce-wd-mini-cart-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.5\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2017-12-22 11:20:00\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:18;a:28:{s:10:\"product_id\";i:121;s:4:\"slug\";s:28:\"ecommerce-wd-latest_products\";s:5:\"title\";s:25:\"Ecommerce Latest Products\";s:11:\"description\";s:128:\"Ecommerce Latest Products add-on allows displaying latest products based on a single item or multiple categories of your choice.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:32:\"ecommerce-wd-latest_products.zip\";s:9:\"parent_id\";i:103;s:4:\"logo\";s:125:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecommerce-wd-latest_products-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.2\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2017-12-22 11:19:54\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:19;a:28:{s:10:\"product_id\";i:123;s:4:\"slug\";s:20:\"ecommerce-wd-filters\";s:5:\"title\";s:20:\"Ecommerce WD Filters\";s:11:\"description\";s:169:\"This add-on is designed for advanced product filter and browsing. It will display multiple filters, which will make it easier for the user to find the relevant products.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:24:\"ecommerce-wd-filters.zip\";s:9:\"parent_id\";i:103;s:4:\"logo\";s:117:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ecommerce-wd-filters-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.4\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2017-12-22 11:19:48\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:20;a:28:{s:10:\"product_id\";i:125;s:4:\"slug\";s:24:\"form-maker-save-progress\";s:5:\"title\";s:24:\"Form Maker Save Progress\";s:11:\"description\";s:190:\"Need to save partially completed forms? Then this add-on will come in handy. Save Progress Add-on allows you to save the incomplete forms, return later and pick up right where they left off.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:28:\"form-maker-save-progress.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:121:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-save-progress-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.1.15\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-06-27 07:39:06\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:21;a:28:{s:10:\"product_id\";i:127;s:4:\"slug\";s:19:\"form-maker-pushover\";s:5:\"title\";s:19:\"Form Maker Pushover\";s:11:\"description\";s:189:\"Form Maker Pushover integration allows to receive real-time notifications when a user submits a new form. This means messages can be pushed to Android and Apple devices, as well as desktop.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:23:\"form-maker-pushover.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:116:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-pushover-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.1.8\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-06-28 13:09:53\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:22;a:28:{s:10:\"product_id\";i:129;s:4:\"slug\";s:21:\"form-maker-calculator\";s:5:\"title\";s:21:\"Form Maker Calculator\";s:11:\"description\";s:90:\"The Form Maker Calculator add-on allows creating forms with dynamically calculated fields.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:25:\"form-maker-calculator.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:118:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-calculator-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.1.11\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-12-14 10:40:25\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:23;a:28:{s:10:\"product_id\";i:131;s:4:\"slug\";s:29:\"form-maker-conditional-emails\";s:5:\"title\";s:29:\"Form Maker Conditional Emails\";s:11:\"description\";s:175:\"Conditional Emails Add-on makes your forms more powerful by allowing you to send multiple, custom email notifications to different recipients depending on the forms submitted.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:33:\"form-maker-conditional-emails.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:126:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-conditional-emails-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.1.11\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-03-23 12:47:41\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:24;a:28:{s:10:\"product_id\";i:133;s:4:\"slug\";s:24:\"form-maker-export-import\";s:5:\"title\";s:24:\"Form Maker Export/Import\";s:11:\"description\";s:102:\"Moving your form submissions to a different location doesn’t have to be complicated and frustrating.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:28:\"form-maker-export-import.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:121:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-export-import-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"2.1.14\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-10-20 10:57:41\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:25;a:28:{s:10:\"product_id\";i:135;s:4:\"slug\";s:29:\"form-maker-gdrive-integration\";s:5:\"title\";s:23:\"Form Maker Google Drive\";s:11:\"description\";s:190:\"The Google Drive Integration add-on integrates Form Maker with Google Drive and makes your work process more efficient by storing data to Google Drive’s cloud storage instead of your site.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:33:\"form-maker-gdrive-integration.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:126:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-gdrive-integration-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.2.0\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-10-26 14:22:51\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:26;a:28:{s:10:\"product_id\";i:137;s:4:\"slug\";s:20:\"form-maker-mailchimp\";s:5:\"title\";s:20:\"Form Maker Mailchimp\";s:11:\"description\";s:82:\"The add-on allows to add contacts to your subscription lists from submitted forms.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:24:\"form-maker-mailchimp.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:117:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-mailchimp-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.1.12\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-03-11 08:38:27\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:27;a:28:{s:10:\"product_id\";i:139;s:4:\"slug\";s:26:\"form-maker-pdf-integration\";s:5:\"title\";s:14:\"Form Maker PDF\";s:11:\"description\";s:76:\"Generate files in PDF format with the data captured through submitted forms.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:30:\"form-maker-pdf-integration.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:123:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-pdf-integration-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.1.14\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-08-24 06:26:43\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:28;a:28:{s:10:\"product_id\";i:141;s:4:\"slug\";s:26:\"form-maker-post-generation\";s:5:\"title\";s:26:\"Form Maker Post Generation\";s:11:\"description\";s:95:\"Post Generation add-on allows creating a post, page or custom post based on the submitted data.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:30:\"form-maker-post-generation.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:123:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-post-generation-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.1.11\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-03-11 08:43:18\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:29;a:28:{s:10:\"product_id\";i:143;s:4:\"slug\";s:14:\"form-maker-reg\";s:5:\"title\";s:23:\"Form Maker Registration\";s:11:\"description\";s:120:\"User Registration Add-On easily integrates with the Form Maker plugin allowing users to create accounts on your website.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:18:\"form-maker-reg.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:111:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-reg-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.2.12\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-06-28 15:20:09\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:30;a:28:{s:10:\"product_id\";i:145;s:4:\"slug\";s:17:\"form-maker-stripe\";s:5:\"title\";s:17:\"Form Maker Stripe\";s:11:\"description\";s:92:\"Form Maker Stripe is convenient add-on if you have plans to integrate Stripe payment method.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:21:\"form-maker-stripe.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:114:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-stripe-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:0;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.2.11\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-09-22 13:52:10\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:31;a:28:{s:10:\"product_id\";i:147;s:4:\"slug\";s:30:\"form-maker-dropbox-integration\";s:5:\"title\";s:18:\"Form Maker Dropbox\";s:11:\"description\";s:85:\"Use the Dropbox Integration Add-on to link Form Maker plugin to your Dropbox account.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:34:\"form-maker-dropbox-integration.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:127:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-dropbox-integration-2017-12-13.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.2.9\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-07-04 06:24:33\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:32;a:28:{s:10:\"product_id\";i:151;s:4:\"slug\";s:22:\"gmwd-marker-clustering\";s:5:\"title\";s:22:\"GMWD Marker Clustering\";s:11:\"description\";s:106:\"GMWD Marker Clustering is designed for grouping close markers for more user-friendly display over the map.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:26:\"gmwd-marker-clustering.zip\";s:9:\"parent_id\";i:89;s:4:\"logo\";s:119:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/gmwd-marker-clustering-2017-12-25.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:17:\"https://10web.io/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.2\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2017-12-25 14:32:08\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:33;a:28:{s:10:\"product_id\";i:175;s:4:\"slug\";s:27:\"photo-gallery-google-photos\";s:5:\"title\";s:39:\"Photo Gallery Google Photos Integration\";s:11:\"description\";s:56:\"Link and display your Google Photos albums in one click.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:31:\"photo-gallery-google-photos.zip\";s:9:\"parent_id\";i:101;s:4:\"logo\";s:124:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/photo-gallery-google-photos-2019-10-08.svg\";s:9:\"info_link\";s:49:\"https://10web.io/plugins/wordpress-photo-gallery/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:43:\"https://help.10web.io/hc/en-us/requests/new\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"1\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.9\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-12-22 09:37:57\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:34;a:28:{s:10:\"product_id\";i:179;s:4:\"slug\";s:19:\"form-maker-webhooks\";s:5:\"title\";s:19:\"Form Maker Webhooks\";s:11:\"description\";s:203:\"Form Maker Webhooks add-on lets you integrate a third-party service with your form and save the submitted data externally. Connect your forms to a CRM system or an email marketing service with this tool.\";s:4:\"type\";s:5:\"addon\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:23:\"form-maker-webhooks.zip\";s:9:\"parent_id\";i:95;s:4:\"logo\";s:116:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-webhooks-2019-10-11.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:1:\"5\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:1;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:5:\"1.0.6\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-06-24 15:32:10\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}}','no'),(236,'fusion_form_cleanup_datetime','1673408063','yes'),(269,'avada_setup_wizard_done','1','yes'),(270,'fusion_tb_layout_default','{\\\"conditions\\\":[],\\\"template_terms\\\":{\\\"footer\\\":\\\"51\\\",\\\"header\\\":\\\"690\\\"}}','yes'),(290,'fusion_applied_patches','a:4:{i:0;i:420688;i:1;i:420731;i:2;i:420819;i:3;i:421012;}','no'),(510,'_transient_timeout_fusion_dynamic_css_1a2a1b17fb08d4f5da130fd0696e95a9','1661306124','no'),(9451,'two_settings','{\"no_optimize_pages\":false,\"two_bg_lazyload\":\"\",\"two_lazyload\":\"on\",\"two_lazyload_slider_images\":\"\",\"two_iframe_lazyload\":\"on\",\"two_elemrntor_video_iframe\":\"\",\"two_youtube_vimeo_iframe_lazyload\":\"\",\"two_video_lazyload\":\"on\",\"two_gzip\":\"\",\"two_page_cache\":\"on\",\"two_page_cache_life_time\":\"604800\",\"two_disable_jetpack_optimization\":\"\",\"two_include_inline_css\":\"on\",\"two_include_inline_js\":\"on\",\"two_use_extended_exception_list_js\":\"\",\"two_dequeue_jquery_migrate\":\"\",\"two_delayed_js_execution_list\":\"getbutton.io,\\/\\/a.omappapi.com\\/app\\/js\\/api.min.js,feedbackcompany.com\\/includes\\/widgets\\/feedback-company-widget.min.js,snap.licdn.com\\/li.lms-analytics\\/insight.min.js,static.ads-twitter.com\\/uwt.js,platform.twitter.com\\/widgets.js,twq(,\\/sdk.js#xfbml,static.leadpages.net\\/leadbars\\/current\\/embed.js,translate.google.com\\/translate_a\\/element.js,widget.manychat.com,xfbml.customerchat.js,static.hotjar.com\\/c\\/hotjar-,smartsuppchat.com\\/loader.js,grecaptcha.execute,Tawk_API,shareaholic,sharethis,simple-share-buttons-adder,addtoany,font-awesome,wpdiscuz,cookie-law-info,pinit.js,\\/gtag\\/js,gtag(,\\/gtm.js,\\/gtm-,fbevents.js,fbq(,google-analytics.com\\/analytics.js,ga( \',ga(\',adsbygoogle,ShopifyBuy,widget.trustpilot.com\\/bootstrap,ft.sdk.min.js,apps.elfsight.com\\/p\\/platform.js,livechatinc.com\\/tracking.js,LiveChatWidget,\\/busting\\/facebook-tracking\\/,olark,pixel-caffeine\\/build\\/frontend.js,wp-emoji-release.min.js\",\"two_disabled_delay_all_js_pages\":\"\",\"two_exclude_delay_js\":\"\",\"two_delay_custom_js\":\"\",\"two_delay_js_execution\":\"on\",\"two_delay_all_js_execution\":\"on\",\"two_timeout_js_load\":\"\",\"two_load_excluded_js_via_worker\":\"\",\"two_exclude_rev\":\"\",\"two_exclude_owl\":\"\",\"two_exclude_slick\":\"\",\"two_exclude_slider_by_10web\":\"\",\"two_exclude_elementor_scripts\":\"\",\"two_delayed_js_load_libs_first\":\"\",\"two_exclude_js\":\"wp-content\\/cache\\/, wp-includes\\/js\\/dist\\/, wp-includes\\/js\\/tinymce\\/, jquery.js, jquery.min.js, jquery-migrate.min.js, jquery-migrate.js, jquery.mobile, jquery-mobile\",\"two_exclude_css\":\"wp-content\\/cache\\/, admin-bar.min.css\",\"two_async_css\":\"elementor-icons-css, elementor-animations-css, elementor-icons-shared-0-css, elementor-icons-fa-brands-css, elementor-icons-fa-solid-css ,elementor-icons-fa-regular-css, tenweb-website-builder-theme-style-css, open-sans-css, font-awesome-css, bwg_googlefonts-css, bwg_fonts-css, elementor-global-css, google-fonts-1-css, elementor-common-css, wc-block-style-css, wp-block-library-css\",\"two_async_all\":\"\",\"two_disable_wp_dashicons\":\"\",\"two_disable_css\":\"\",\"two_fonts_to_preload\":\"\",\"two_fonts_to_preconnect\":\"\",\"two_disabled_speed_optimizer_pages\":\"robots.txt,.well-known\",\"two_exclude_lazyload\":\"\",\"two_do_not_optimize_images\":\"\",\"two_enable_use_srcset\":\"on\",\"two_enable_nginx_webp_delivery\":\"\",\"two_enable_htaccess_webp_delivery\":\"on\",\"two_enable_picture_webp_delivery\":\"\",\"two_exclude_images_for_optimize\":\"\",\"two_async_font\":\"on\",\"two_merge_google_font_faces\":\"\",\"two_load_fonts_via_webfont\":\"\",\"two_serve_optimized_bg_image\":\"on\",\"two_test_mode\":\"\",\"two_files_cache\":\"on\",\"two_all_pages_are_optimizable\":\"\",\"two_minify_js\":\"on\",\"two_minify_css\":\"on\",\"two_split_css\":\"\",\"lazy_load_type\":\"vanilla\",\"two_async_page\":\"\",\"two_disable_page\":\"\",\"two_change_minify\":\"\",\"two_aggregate_js\":\"on\",\"two_aggregate_css\":\"on\",\"two_defer_plugin_js\":\"\",\"two_critical_pages\":[],\"two_critical_sizes\":{\"two_1617650538215\":{\"width\":\"1920\",\"height\":\"800\",\"media\":\"@media screen and (min-width: 1920px)\",\"uid\":\"two_1617650538215\"},\"two_1617650549855\":{\"width\":\"1500\",\"height\":\"800\",\"media\":\"@media screen and (min-width: 1500px) and (max-width: 1920px)\",\"uid\":\"two_1617650549855\"},\"two_1617650561871\":{\"width\":\"1280\",\"height\":\"700\",\"media\":\"@media screen and (min-width: 1280px) and (max-width: 1500px)\",\"uid\":\"two_1617650561871\"},\"two_1617650582190\":{\"width\":\"1024\",\"height\":\"600\",\"media\":\"@media screen and (min-width: 1024px) and (max-width: 1280px)\",\"uid\":\"two_1617650582190\"},\"two_1617650596079\":{\"width\":\"768\",\"height\":\"500\",\"media\":\"@media screen and (min-width: 767px) and (max-width: 1024px)\",\"uid\":\"two_1617650596079\"},\"two_1617650611968\":{\"width\":\"320\",\"height\":\"400\",\"media\":\"@media screen and (max-width: 767px)\",\"uid\":\"two_1617650611968\"}},\"two_critical_url_args\":\"PageSpeed=off&two_nooptimize=1&two_action=generating_critical_css\",\"two_critical_status\":\"true\",\"two_critical_font_status\":\"true\",\"two_use_font_ready\":\"\",\"two_connected\":\"0\",\"cloudflare_cache_status\":\"off\",\"two_webp_delivery_working\":\"1\",\"two_clear_cache_date\":\"1673215647\",\"tenweb_so_version\":\"2.11.43\"}','yes'),(9452,'two_delayed_js_execution_list_updated','1','yes'),(9462,'tenweb_plugins_state_hash','b3e9039c3bc62c6351b138344ab55932','yes'),(9463,'tenweb_themes_state_hash','6ffdff1e4cee37a5124e757d65ad7516','yes'),(9455,'tenweb_plugins_list','a:21:{i:0;a:28:{s:10:\"product_id\";i:9;s:4:\"slug\";s:10:\"wd-youtube\";s:5:\"title\";s:16:\"YouTube by 10Web\";s:11:\"description\";s:74:\"Make your WordPress website more interactive with awesome video galleries.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:14:\"wd-youtube.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:107:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/wd-youtube-2017-12-12.svg\";s:9:\"info_link\";s:43:\"https://10web.io/plugins/wordpress-youtube/\";s:9:\"demo_link\";s:33:\"https://demo.10web.io/youtube-wd/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:56:\"https://wordpress.org/support/plugin/wd-youtube/reviews/\";s:9:\"downloads\";i:2000;s:6:\"rating\";s:2:\"90\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:29;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.0.36\";s:4:\"paid\";s:6:\"5.0.36\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-09-11 00:00:02\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:2:{i:0;i:5;i:1;i:1;}s:23:\"force_required_products\";a:1:{i:0;i:2;}s:16:\"required_service\";a:1:{i:0;i:2;}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:1;a:28:{s:10:\"product_id\";i:25;s:4:\"slug\";s:17:\"event-calendar-wd\";s:5:\"title\";s:23:\"Event calendar by 10Web\";s:11:\"description\";s:104:\"Organize and showcase your events through this easy-to-use and advanced WordPress Event Calendar plugin.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10WEB\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:1;s:8:\"zip_name\";s:21:\"event-calendar-wd.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:114:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/event-calendar-wd-2017-12-21.svg\";s:9:\"info_link\";s:50:\"https://10web.io/plugins/wordpress-event-calendar/\";s:9:\"demo_link\";s:40:\"https://demo.10web.io/event-calendar-wd/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:63:\"https://wordpress.org/support/plugin/event-calendar-wd/reviews/\";s:9:\"downloads\";i:20000;s:6:\"rating\";s:2:\"92\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:3;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.1.55\";s:4:\"paid\";s:6:\"5.1.56\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-06-29 07:24:38\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:2;a:28:{s:10:\"product_id\";i:43;s:4:\"slug\";s:17:\"wd-instagram-feed\";s:5:\"title\";s:14:\"Instagram Feed\";s:11:\"description\";s:90:\"Display Instagram posts, photos & videos on your WordPress website in a matter of minutes.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:21:\"wd-instagram-feed.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:114:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/wd-instagram-feed-2017-12-20.svg\";s:9:\"info_link\";s:50:\"https://10web.io/plugins/wordpress-instagram-feed/\";s:9:\"demo_link\";s:35:\"https://demo.10web.io/instagram-wd/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:63:\"https://wordpress.org/support/plugin/wd-instagram-feed/reviews/\";s:9:\"downloads\";i:40000;s:6:\"rating\";s:2:\"92\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:5;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.4.34\";s:4:\"paid\";s:6:\"2.4.33\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-10-01 00:00:17\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:3;a:28:{s:10:\"product_id\";i:45;s:4:\"slug\";s:19:\"wd-google-analytics\";s:5:\"title\";s:25:\"Google Analytics by 10Web\";s:11:\"description\";s:76:\"View all your Google Analytics reports directly in your WordPress dashboard.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:23:\"wd-google-analytics.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:90:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/gawd.svg\";s:9:\"info_link\";s:52:\"https://10web.io/plugins/wordpress-google-analytics/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:65:\"https://wordpress.org/support/plugin/wd-google-analytics/reviews/\";s:9:\"downloads\";i:7000;s:6:\"rating\";s:2:\"90\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:9;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.2.12\";s:4:\"paid\";s:6:\"5.2.12\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-09-16 00:00:09\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:4;a:28:{s:10:\"product_id\";i:47;s:4:\"slug\";s:10:\"staff-team\";s:5:\"title\";s:13:\"Team by 10Web\";s:11:\"description\";s:96:\"Display the details of your team on your WordPress Website with the best team management plugin.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:14:\"staff-team.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:107:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/staff-team-2017-12-12.svg\";s:9:\"info_link\";s:40:\"https://10web.io/plugins/wordpress-team/\";s:9:\"demo_link\";s:30:\"https://demo.10web.io/team-wd/\";s:12:\"support_link\";s:30:\"https://help.10web.io/hc/en-us\";s:11:\"review_link\";s:56:\"https://wordpress.org/support/plugin/staff-team/reviews/\";s:9:\"downloads\";i:1000;s:6:\"rating\";s:2:\"94\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:22;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:6:\"v1.1.7\";s:4:\"paid\";s:5:\"5.1.7\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-07-16 00:00:03\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:5;a:28:{s:10:\"product_id\";i:49;s:4:\"slug\";s:6:\"faq-wd\";s:5:\"title\";s:6:\"FAQ WD\";s:11:\"description\";s:75:\"Add a simple, responsive, fully customizable FAQ to your WordPress website.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:10:\"faq-wd.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:103:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/faq-wd-2017-12-12.svg\";s:9:\"info_link\";s:39:\"https://10web.io/plugins/wordpress-faq/\";s:9:\"demo_link\";s:28:\"https://demo.10web.io/faq-2/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:52:\"https://wordpress.org/support/plugin/faq-wd/reviews/\";s:9:\"downloads\";i:1000;s:6:\"rating\";s:2:\"86\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:26;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.0.41\";s:4:\"paid\";s:6:\"5.0.41\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-03-13 00:00:02\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:6;a:28:{s:10:\"product_id\";i:51;s:4:\"slug\";s:13:\"10web-manager\";s:5:\"title\";s:13:\"10Web Manager\";s:11:\"description\";s:102:\"Connect and manage all your WordPress websites in 10Web dashboard with the help of our Manager plugin.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:17:\"10web-manager.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:0:\"\";s:9:\"info_link\";s:16:\"http://10web.io/\";s:9:\"demo_link\";s:16:\"http://10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:28:\"https://10web.io/contact-us/\";s:9:\"downloads\";i:10000;s:6:\"rating\";s:2:\"82\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:100;s:13:\"download_link\";s:112:\"https://s3-us-west-2.amazonaws.com/10web-products-production/10web-manager/10web-manager/1.8.3/10web-manager.zip\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.3.22\";s:4:\"paid\";s:5:\"1.8.3\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-12-08 11:52:30\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.0\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:7;a:28:{s:10:\"product_id\";i:69;s:4:\"slug\";s:18:\"image-optimizer-wd\";s:5:\"title\";s:15:\"Image Optimizer\";s:11:\"description\";s:122:\"Significantly improve load time of your WordPress website by optimizing your image files with the image optimizer service.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:20:\"http://dev.10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:22:\"image-optimizer-wd.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:115:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/image-optimizer-wd-2017-12-12.svg\";s:9:\"info_link\";s:42:\"https://10web.io/services/image-optimizer/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:64:\"https://wordpress.org/support/plugin/image-optimizer-wd/reviews/\";s:9:\"downloads\";i:10000;s:6:\"rating\";s:2:\"90\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:10;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.0.25\";s:4:\"paid\";s:5:\"6.0.5\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-09-27 07:20:47\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:2:{i:0;i:5;i:1;i:1;}s:23:\"force_required_products\";a:1:{i:0;i:2;}s:16:\"required_service\";a:1:{i:0;i:2;}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:9:\"optimizer\";}i:8;a:28:{s:10:\"product_id\";i:71;s:4:\"slug\";s:9:\"backup-wd\";s:5:\"title\";s:9:\"Backup WD\";s:11:\"description\";s:101:\"Securely backup your WordPress site files and database with the simple, yet powerful backup solution.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:16:\"https://10web.io\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:13:\"backup-wd.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:106:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/backup-wd-2017-12-12.svg\";s:9:\"info_link\";s:33:\"https://10web.io/services/backup/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:55:\"https://wordpress.org/support/plugin/backup-wd/reviews/\";s:9:\"downloads\";i:7000;s:6:\"rating\";s:2:\"76\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:8;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.0.20\";s:4:\"paid\";s:6:\"5.0.74\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-08-03 13:44:28\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:2:{i:0;i:5;i:1;i:1;}s:23:\"force_required_products\";a:1:{i:0;i:2;}s:16:\"required_service\";a:1:{i:0;i:2;}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:6:\"Backup\";}i:9;a:28:{s:10:\"product_id\";i:89;s:4:\"slug\";s:14:\"wd-google-maps\";s:5:\"title\";s:11:\"Google Maps\";s:11:\"description\";s:111:\"Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:1;s:8:\"zip_name\";s:18:\"wd-google-maps.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:111:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/wd-google-maps-2017-12-20.svg\";s:9:\"info_link\";s:47:\"https://10web.io/plugins/wordpress-google-maps/\";s:9:\"demo_link\";s:37:\"https://demo.10web.io/google-maps-wd/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:60:\"https://wordpress.org/support/plugin/wd-google-maps/reviews/\";s:9:\"downloads\";i:10000;s:6:\"rating\";s:2:\"90\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:6;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.0.72\";s:4:\"paid\";s:6:\"5.0.72\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-12-29 00:00:07\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:2:{i:0;i:5;i:1;i:1;}s:23:\"force_required_products\";a:1:{i:0;i:2;}s:16:\"required_service\";a:1:{i:0;i:2;}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:10;a:28:{s:10:\"product_id\";i:91;s:4:\"slug\";s:13:\"ad-manager-wd\";s:5:\"title\";s:19:\"AD Manager by 10Web\";s:11:\"description\";s:80:\"Monetize your WordPress website by displaying ads on any page with Ad Manager WD\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:16:\"http://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:17:\"ad-manager-wd.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:110:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/ad-manager-wd-2017-12-12.svg\";s:9:\"info_link\";s:46:\"https://10web.io/plugins/wordpress-ad-manager/\";s:9:\"demo_link\";s:0:\"\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:59:\"https://wordpress.org/support/plugin/ad-manager-wd/reviews/\";s:9:\"downloads\";i:200;s:6:\"rating\";s:2:\"64\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:30;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.0.14\";s:4:\"paid\";s:6:\"5.0.14\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-06-16 00:00:04\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:2:{i:0;i:5;i:1;i:1;}s:23:\"force_required_products\";a:1:{i:0;i:2;}s:16:\"required_service\";a:1:{i:0;i:2;}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:11;a:28:{s:10:\"product_id\";i:93;s:4:\"slug\";s:16:\"wd-facebook-feed\";s:5:\"title\";s:22:\"Facebook Feed by 10Web\";s:11:\"description\";s:103:\"Add multiple Facebook feeds to your WordPress website with customized views and filtered content types.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:20:\"wd-facebook-feed.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:113:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/wd-facebook-feed-2017-12-20.svg\";s:9:\"info_link\";s:49:\"https://10web.io/plugins/wordpress-facebook-feed/\";s:9:\"demo_link\";s:36:\"https://demo.10web.io/facebook-feed/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:62:\"https://wordpress.org/support/plugin/wd-facebook-feed/reviews/\";s:9:\"downloads\";i:20000;s:6:\"rating\";s:2:\"86\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:7;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:6:\"v1.2.7\";s:4:\"paid\";s:5:\"5.2.7\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-07-23 00:00:06\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:2:{i:0;i:5;i:1;i:1;}s:23:\"force_required_products\";a:1:{i:0;i:2;}s:16:\"required_service\";a:1:{i:0;i:2;}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:12;a:28:{s:10:\"product_id\";i:95;s:4:\"slug\";s:10:\"form-maker\";s:5:\"title\";s:10:\"Form Maker\";s:11:\"description\";s:141:\"Form Maker is a user-friendly plugin to create highly customizable and responsive forms in a few minutes with simple drag and drop interface.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:1;s:8:\"zip_name\";s:14:\"form-maker.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:107:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/form-maker-2017-12-20.svg\";s:9:\"info_link\";s:46:\"https://10web.io/plugins/wordpress-form-maker/\";s:9:\"demo_link\";s:22:\"https://demo.10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:56:\"https://wordpress.org/support/plugin/form-maker/reviews/\";s:9:\"downloads\";i:70000;s:6:\"rating\";s:2:\"90\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:1;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.15.7\";s:4:\"paid\";s:6:\"2.15.7\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-12-14 00:00:09\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:13;a:28:{s:10:\"product_id\";i:97;s:4:\"slug\";s:9:\"slider-wd\";s:5:\"title\";s:15:\"Slider by 10Web\";s:11:\"description\";s:131:\"The responsive, SEO-friendly plugin allows to display your visual content in the form of dynamic and intuitive multi-layer sliders.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:13:\"slider-wd.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:106:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/slider-wd-2017-12-12.svg\";s:9:\"info_link\";s:35:\"https://10web.io/plugins/slider-wd/\";s:9:\"demo_link\";s:29:\"https://demo.10web.io/slider/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:55:\"https://wordpress.org/support/plugin/slider-wd/reviews/\";s:9:\"downloads\";i:30000;s:6:\"rating\";s:2:\"90\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:4;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.2.53\";s:4:\"paid\";s:6:\"2.2.53\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-12-07 00:00:06\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:14;a:28:{s:10:\"product_id\";i:99;s:4:\"slug\";s:14:\"post-slider-wd\";s:5:\"title\";s:20:\"Post Slider by 10Web\";s:11:\"description\";s:91:\"Show off the selected posts of your website in a slider using WordPress Post Slider plugin.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:18:\"post-slider-wd.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:111:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/post-slider-wd-2017-12-12.svg\";s:9:\"info_link\";s:47:\"https://10web.io/plugins/wordpress-post-slider/\";s:9:\"demo_link\";s:37:\"https://demo.10web.io/post-slider-wd/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:60:\"https://wordpress.org/support/plugin/post-slider-wd/reviews/\";s:9:\"downloads\";i:2000;s:6:\"rating\";s:2:\"94\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:21;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:7:\"v1.0.60\";s:4:\"paid\";s:6:\"2.0.60\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-11-02 00:00:05\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:15;a:28:{s:10:\"product_id\";i:101;s:4:\"slug\";s:13:\"photo-gallery\";s:5:\"title\";s:13:\"Photo Gallery\";s:11:\"description\";s:89:\"Photo Gallery is a fully responsive WordPress gallery plugin with advanced functionality.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:1;s:8:\"zip_name\";s:17:\"photo-gallery.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:110:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/photo-gallery-2017-12-20.svg\";s:9:\"info_link\";s:49:\"https://10web.io/plugins/wordpress-photo-gallery/\";s:9:\"demo_link\";s:30:\"https://demo.10web.io/gallery/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:59:\"https://wordpress.org/support/plugin/photo-gallery/reviews/\";s:9:\"downloads\";i:200000;s:6:\"rating\";s:2:\"92\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:2;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:6:\"v1.8.9\";s:4:\"paid\";s:5:\"2.8.9\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2023-01-08 00:00:07\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:16;a:28:{s:10:\"product_id\";i:163;s:4:\"slug\";s:12:\"wd-mailchimp\";s:5:\"title\";s:18:\"MailChimp by 10Web\";s:11:\"description\";s:103:\"Integrate MailChimp into your WordPress website and create fully configurable opt-in and opt-out forms.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:16:\"wd-mailchimp.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:109:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/wd-mailchimp-2017-12-20.svg\";s:9:\"info_link\";s:45:\"https://10web.io/plugins/wordpress-mailchimp/\";s:9:\"demo_link\";s:32:\"https://demo.10web.io/mailchimp/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:58:\"https://wordpress.org/support/plugin/wd-mailchimp/reviews/\";s:9:\"downloads\";i:2000;s:6:\"rating\";s:2:\"76\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:28;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:6:\"v1.1.3\";s:4:\"paid\";s:5:\"5.1.3\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2019-08-07 00:00:05\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:17;a:28:{s:10:\"product_id\";i:165;s:4:\"slug\";s:12:\"seo-by-10web\";s:5:\"title\";s:12:\"SEO by 10Web\";s:11:\"description\";s:84:\"Authenticate your Google account and let WordPress SEO by 10Web plugin do the trick.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:16:\"seo-by-10web.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:109:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/seo-by-10web-2018-04-03.svg\";s:9:\"info_link\";s:17:\"https://10web.io/\";s:9:\"demo_link\";s:17:\"https://10web.io/\";s:12:\"support_link\";s:17:\"https://10web.io/\";s:11:\"review_link\";s:17:\"https://10web.io/\";s:9:\"downloads\";i:3000;s:6:\"rating\";s:2:\"74\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:1;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:6:\"v1.2.5\";s:4:\"paid\";s:5:\"2.2.5\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-12-22 00:00:08\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:3:\"seo\";}i:18;a:28:{s:10:\"product_id\";i:167;s:4:\"slug\";s:14:\"10web-security\";s:5:\"title\";s:14:\"10Web Security\";s:11:\"description\";s:14:\"10Web Security\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:18:\"10web-security.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:0:\"\";s:9:\"info_link\";s:35:\"https://10web.io/services/security/\";s:9:\"demo_link\";s:35:\"https://10web.io/services/security/\";s:12:\"support_link\";s:35:\"https://10web.io/services/security/\";s:11:\"review_link\";s:35:\"https://10web.io/services/security/\";s:9:\"downloads\";i:0;s:6:\"rating\";s:1:\"0\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:0;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"1.0.1\";s:4:\"paid\";s:6:\"5.0.23\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2021-09-29 16:33:19\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:2:{i:0;i:5;i:1;i:1;}s:23:\"force_required_products\";a:1:{i:0;i:2;}s:16:\"required_service\";a:1:{i:0;i:2;}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:8:\"Security\";}i:19;a:28:{s:10:\"product_id\";i:169;s:4:\"slug\";s:14:\"tenweb-builder\";s:5:\"title\";s:13:\"10Web Builder\";s:11:\"description\";s:104:\"10Web Builder is an ultimate premium tool, based on Elementor,  to create websites with stunning design.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:18:\"tenweb-builder.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:111:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/tenweb-builder-2019-08-08.png\";s:9:\"info_link\";s:30:\"https://10web.io/site-builder/\";s:9:\"demo_link\";s:22:\"https://demo.10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:28:\"https://10web.io/contact-us/\";s:9:\"downloads\";i:1;s:6:\"rating\";s:3:\"100\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:2;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:5:\"0.0.0\";s:4:\"paid\";s:6:\"1.3.13\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2022-11-16 07:12:09\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}i:20;a:28:{s:10:\"product_id\";i:177;s:4:\"slug\";s:22:\"tenweb-speed-optimizer\";s:5:\"title\";s:13:\"10Web Booster\";s:11:\"description\";s:105:\"Optimize your website speed and performance with 10Web Speed Optimizer by compressing CSS and JavaScript.\";s:4:\"type\";s:6:\"plugin\";s:6:\"author\";s:5:\"10Web\";s:10:\"author_url\";s:17:\"https://10web.io/\";s:11:\"with_addons\";i:0;s:8:\"zip_name\";s:26:\"tenweb-speed-optimizer.zip\";s:9:\"parent_id\";i:0;s:4:\"logo\";s:119:\"https://10web-storage-production.s3.us-west-2.amazonaws.com/public/product_images/tenweb-speed-optimizer-2019-10-02.svg\";s:9:\"info_link\";s:28:\"https://10web.io/contact-us/\";s:9:\"demo_link\";s:22:\"https://demo.10web.io/\";s:12:\"support_link\";s:28:\"https://10web.io/contact-us/\";s:11:\"review_link\";s:28:\"https://10web.io/contact-us/\";s:9:\"downloads\";i:20000;s:6:\"rating\";s:2:\"92\";s:7:\"reviews\";a:0:{}s:12:\"popular_rank\";i:2;s:13:\"download_link\";s:0:\"\";s:15:\"current_version\";a:2:{s:4:\"free\";s:8:\"v2.11.43\";s:4:\"paid\";s:7:\"2.11.43\";}s:7:\"is_paid\";i:1;s:20:\"is_hosting_available\";i:1;s:12:\"last_updated\";s:19:\"2023-01-05 00:00:09\";s:8:\"requires\";a:4:{s:17:\"required_products\";a:0:{}s:23:\"force_required_products\";a:0:{}s:16:\"required_service\";a:0:{}s:14:\"required_specs\";a:1:{s:9:\"wordpress\";s:5:\"4.4.1\";}}s:8:\"featured\";b:1;s:7:\"enabled\";i:1;s:7:\"service\";s:0:\"\";}}','no'),(11995,'_transient_timeout_global_styles_Avada-Child-Theme','1673383234','no'),(11996,'_transient_global_styles_Avada-Child-Theme','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 12px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 24px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--normal: 16px;--wp--preset--font-size--xlarge: 32px;--wp--preset--font-size--huge: 48px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(1140,'tribe_last_updated_option','1661314702.8662','yes'),(1160,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1144,'tribe_events_calendar_options','a:13:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:1:{i:0;s:1:\"0\";}s:18:\"latest_ecp_version\";s:6:\"5.16.4\";s:16:\"views_v2_enabled\";b:1;s:12:\"postsPerPage\";i:12;s:16:\"monthEventAmount\";i:3;s:39:\"last-update-message-the-events-calendar\";s:6:\"5.16.4\";s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";}','yes'),(1145,'fusion_supported_plugins_active','a:0:{}','yes'),(11311,'fusion_builder_settings','a:1:{s:16:\"awb_layout_order\";s:40:\"global,39,41,61,63,229,336,689,1403,1442\";}','yes'),(199,'fusion_core_version','5.9.1','yes'),(200,'widget_ad_125_125-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(201,'widget_fusion_author-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(202,'widget_contact_info-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(203,'widget_pyre_tabs-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(204,'widget_recent_works-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(205,'widget_tweets-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(206,'widget_flickr-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(207,'widget_social_links-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(208,'widget_facebook-like-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(209,'widget_menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(210,'widget_avada-vertical-menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(211,'widget_form-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(8545,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1672869238;}s:5:\"queue\";a:2:{s:32:\"7de3619981caadc55f30a002bfb299f6\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1672869238;s:6:\"sticky\";b:1;}s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1673474038;}}s:4:\"done\";a:0:{}}','no'),(8546,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1672869238;}}','no'),(8548,'wp-smush-lazy_load','a:9:{s:6:\"format\";a:6:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:4:\"webp\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;s:6:\"native\";b:0;s:8:\"noscript\";b:0;}','yes'),(8549,'skip-smush-setup','1','yes'),(8550,'smush_global_stats','a:9:{s:11:\"size_before\";i:13630340;s:10:\"size_after\";i:6978152;s:7:\"percent\";d:48.7999999999999971578290569595992565155029296875;s:5:\"human\";s:6:\"6.3 MB\";s:5:\"bytes\";i:6652188;s:12:\"total_images\";i:205;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(8551,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(8552,'wp_smush_bulk_smush_background_process_status','a:6:{s:13:\"in_processing\";b:0;s:12:\"is_cancelled\";b:0;s:12:\"is_completed\";b:1;s:11:\"total_items\";i:40;s:15:\"processed_items\";i:40;s:12:\"failed_items\";i:0;}','no'),(9176,'cff_usage_tracking','a:2:{s:7:\"enabled\";b:0;s:9:\"last_send\";i:0;}','no'),(9177,'cff_style_settings','a:21:{s:19:\"cff_show_links_type\";b:1;s:19:\"cff_show_event_type\";b:1;s:19:\"cff_show_video_type\";b:1;s:20:\"cff_show_photos_type\";b:1;s:20:\"cff_show_status_type\";b:1;s:20:\"cff_show_albums_type\";b:1;s:15:\"cff_show_author\";b:1;s:13:\"cff_show_text\";b:1;s:13:\"cff_show_desc\";b:1;s:21:\"cff_show_shared_links\";b:1;s:13:\"cff_show_date\";b:1;s:14:\"cff_show_media\";b:1;s:19:\"cff_show_media_link\";b:1;s:20:\"cff_show_event_title\";b:1;s:22:\"cff_show_event_details\";b:1;s:13:\"cff_show_meta\";b:1;s:13:\"cff_show_link\";b:1;s:17:\"cff_show_like_box\";b:1;s:22:\"cff_show_facebook_link\";b:1;s:23:\"cff_show_facebook_share\";b:1;s:20:\"cff_event_title_link\";b:1;}','yes'),(9178,'cff_show_access_token','1','yes'),(9181,'cff_usage_tracking_config','a:6:{s:3:\"day\";i:2;s:4:\"hour\";i:6;s:6:\"minute\";i:22;s:6:\"second\";i:14;s:6:\"offset\";i:195734;s:8:\"initsend\";i:1673331734;}','yes'),(9182,'_transient_timeout_custom_facebook_rating_notice_waiting','1674090034','no'),(9183,'_transient_custom_facebook_rating_notice_waiting','waiting','no'),(9184,'cff_rating_notice','pending','no'),(9185,'cff_statuses','a:5:{s:13:\"first_install\";i:1672880434;s:17:\"legacy_onboarding\";a:2:{s:6:\"active\";b:0;s:4:\"type\";s:6:\"single\";}s:24:\"support_legacy_shortcode\";b:0;s:12:\"data_manager\";a:1:{s:14:\"num_db_updates\";i:31;}s:18:\"groups_need_update\";b:0;}','no'),(9186,'cff_db_version','2.4','yes'),(9188,'cff_notifications','a:4:{s:6:\"update\";i:1673204332;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(9189,'cff_newuser_notifications','a:4:{s:6:\"update\";i:1672880465;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:22:\"Could you help us out?\";s:7:\"content\";s:273:\"It\'s great to see that you\'ve been using the <strong><span>{plugin}</span></strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"cff-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:31:\"cff_notice_dismiss cff_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"cff_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"cff_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"cff_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"cff_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"cff_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"cff_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:221:\"<strong><span>Exclusive offer!</span></strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong><span>{amount} off</span></strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"cff-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"cff_notice_dismiss cff_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"cff_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"cff_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(9190,'cff_legacy_feed_settings','{\"accesstoken\":\"\",\"id\":false,\"pagetype\":false,\"num\":false,\"limit\":false,\"others\":\"\",\"showpostsby\":false,\"cachetime\":false,\"cacheunit\":false,\"locale\":false,\"ajax\":false,\"offset\":\"\",\"account\":\"\",\"cff_enqueue_with_shortcode\":false,\"width\":\"\",\"widthresp\":\"\",\"height\":\"\",\"padding\":\"\",\"bgcolor\":\"\",\"showauthor\":\"\",\"showauthornew\":true,\"class\":\"\",\"layout\":\"\",\"include\":[\"author\",\"text\",\"desc\",\"sharedlinks\",\"date\",\"media\",\"medialink\",\"eventtitle\",\"eventdetails\",\"social\",\"link\",\"likebox\",\"\"],\"exclude\":[\"\"],\"gdpr\":\"auto\",\"cols\":\"\",\"colsmobile\":\"\",\"colsjs\":true,\"nummobile\":\"\",\"poststyle\":\"\",\"postbgcolor\":\"\",\"postcorners\":\"\",\"boxshadow\":\"\",\"textformat\":\"\",\"textsize\":\"\",\"textweight\":\"\",\"textcolor\":\"\",\"textlinkcolor\":\"\",\"textlink\":\"\",\"posttags\":\"\",\"linkhashtags\":\"\",\"descsize\":\"\",\"descweight\":\"\",\"desccolor\":\"\",\"linktitleformat\":\"\",\"linktitlesize\":\"\",\"linkdescsize\":\"\",\"linkurlsize\":\"\",\"linkdesccolor\":\"\",\"linktitlecolor\":\"\",\"linkurlcolor\":\"\",\"linkbgcolor\":\"\",\"linkbordercolor\":\"\",\"disablelinkbox\":\"\",\"authorsize\":\"\",\"authorcolor\":\"\",\"eventtitleformat\":\"\",\"eventtitlesize\":\"\",\"eventtitleweight\":\"\",\"eventtitlecolor\":\"\",\"eventtitlelink\":true,\"eventdatesize\":\"\",\"eventdateweight\":\"\",\"eventdatecolor\":\"\",\"eventdatepos\":\"\",\"eventdateformat\":\"\",\"eventdatecustom\":\"\",\"eventdetailssize\":\"\",\"eventdetailsweight\":\"\",\"eventdetailscolor\":\"\",\"eventlinkcolor\":\"\",\"datepos\":\"\",\"datesize\":\"\",\"dateweight\":\"\",\"datecolor\":\"\",\"dateformat\":\"\",\"datecustom\":\"\",\"beforedate\":\"\",\"afterdate\":\"\",\"timezone\":\"America\\/Chicago\",\"linksize\":\"\",\"linkweight\":\"\",\"linkcolor\":\"\",\"viewlinktext\":\"\",\"linktotimeline\":\"\",\"iconstyle\":\"\",\"socialtextcolor\":\"\",\"socialbgcolor\":\"\",\"textlength\":\"400\",\"desclength\":\"200\",\"likeboxpos\":\"\",\"likeboxoutside\":\"\",\"likeboxcolor\":\"\",\"likeboxtextcolor\":\"\",\"likeboxwidth\":\"\",\"likeboxheight\":\"\",\"likeboxfaces\":\"\",\"likeboxborder\":\"\",\"likeboxcover\":\"\",\"likeboxsmallheader\":\"\",\"likeboxhidebtn\":\"\",\"credit\":\"\",\"nofollow\":\"true\",\"disablestyles\":\"\",\"textissue\":\"\",\"restrictedpage\":\"\",\"salesposts\":\"false\",\"storytags\":\"false\",\"showheader\":\"\",\"headeroutside\":\"\",\"headertype\":\"\",\"headercover\":\"\",\"headeravatar\":\"\",\"headername\":\"\",\"headerbio\":\"\",\"headercoverheight\":\"\",\"headertext\":\"\",\"headerbg\":\"\",\"headerpadding\":\"\",\"headertextsize\":\"\",\"headertextweight\":\"\",\"headertextcolor\":\"\",\"headericon\":\"\",\"headericoncolor\":\"\",\"headericonsize\":\"\",\"headerinc\":\"\",\"headerexclude\":\"\",\"videoheight\":\"\",\"videoaction\":\"\",\"sepcolor\":\"\",\"sepsize\":\"\",\"seemoretext\":\"\",\"seelesstext\":\"\",\"photostext\":\"\",\"phototext\":\"\",\"videotext\":\"\",\"learnmoretext\":\"\",\"shopnowtext\":\"\",\"messagepage\":\"\",\"facebooklinktext\":\"\",\"sharelinktext\":\"\",\"showfacebooklink\":\"on\",\"showsharelink\":\"on\",\"secondtext\":\"second\",\"secondstext\":\"seconds\",\"minutetext\":\"minute\",\"minutestext\":\"minutes\",\"hourtext\":\"hour\",\"hourstext\":\"hours\",\"daytext\":\"day\",\"daystext\":\"days\",\"weektext\":\"week\",\"weekstext\":\"weeks\",\"monthtext\":\"month\",\"monthstext\":\"months\",\"yeartext\":\"year\",\"yearstext\":\"years\",\"agotext\":\"ago\",\"feedlayout\":\"list\",\"feedtype\":\"timeline\"}','yes'),(9191,'cff_theme_styles','a:3:{s:4:\"file\";s:77:\"https://test-site.wlvrotary.org/wp-content/themes/Avada-Child-Theme/style.css\";s:12:\"last_checked\";i:1672880515;s:6:\"styles\";N;}','no'),(9192,'_transient_timeout_facebook_feed_dismiss_lite','1673485404','no'),(9193,'_transient_facebook_feed_dismiss_lite','dismiss','no'),(1212,'widget_evcalwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1213,'widget_evcalwidget_sc','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1214,'widget_evcalwidget_next_month','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1215,'widget_evcalwidget_three','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1216,'widget_evcalwidget_four','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1217,'eventon_plugin_version','4.2.2','no'),(1218,'evo_data_log','a:1:{s:7:\"general\";a:12:{s:15:\"1661315498-3109\";s:52:\"Evo Lite version update: (eventon) - from   to 1.0.4\";s:15:\"1663540740-8529\";s:57:\"Evo version update: (eventon) - from 1.0.4 1.0.4 to 4.1.3\";s:15:\"1663540881-1859\";s:54:\"Checked for remote updates: (all) - Received 1 updates\";s:15:\"1663540881-2043\";s:106:\"Remotely activated: (eventon) - KEY: 8fb23133-c282-4f2b-af2a-04d9b968f00d - Validation status return good.\";s:15:\"1663541056-5671\";s:105:\"Remotely activated: (eventon) - KEY:8fb23133-c282-4f2b-af2a-04d9b968f00d - Validation status return good.\";s:15:\"1664914091-4080\";s:54:\"Checked for remote updates: (all) - Received 1 updates\";s:15:\"1666220122-3259\";s:54:\"Checked for remote updates: (all) - Received 1 updates\";s:15:\"1672259563-6949\";s:54:\"Checked for remote updates: (all) - Received 1 updates\";s:15:\"1672259576-3565\";s:57:\"Evo version update: (eventon) - from 4.1.3 4.1.3 to 4.2.2\";s:15:\"1672868213-6835\";s:54:\"Checked for remote updates: (all) - Received 1 updates\";s:15:\"1673204346-1188\";s:54:\"Checked for remote updates: (all) - Received 1 updates\";s:15:\"1673279629-8873\";s:54:\"Checked for remote updates: (all) - Received 1 updates\";}}','yes'),(2470,'evo_tax_meta','a:1:{s:14:\"event_location\";a:7:{i:34;a:3:{s:12:\"location_lon\";N;s:12:\"location_lat\";N;s:16:\"location_address\";s:6:\"Social\";}i:35;a:3:{s:12:\"location_lon\";N;s:12:\"location_lat\";N;s:16:\"location_address\";s:17:\"Los Robles Greens\";}i:36;a:3:{s:12:\"location_lon\";N;s:12:\"location_lat\";N;s:16:\"location_address\";s:4:\"Zoom\";}i:37;a:3:{s:12:\"location_lon\";N;s:12:\"location_lat\";N;s:16:\"location_address\";s:76:\"Goebel Adult Community Center, 1385 E Janss Rd, Thousand Oaks, CA 91362, USA\";}i:38;a:3:{s:12:\"location_lon\";N;s:12:\"location_lat\";N;s:16:\"location_address\";s:58:\"Los Robles Greens\n299 S Moorpark Rd\nThousand Oaks CA 91361\";}i:39;a:3:{s:12:\"location_lon\";N;s:12:\"location_lat\";N;s:16:\"location_address\";s:68:\"America&#039;s Teaching Zoo, 7075 Campus Rd, Moorpark, CA 93021, USA\";}i:40;a:3:{s:12:\"location_lon\";N;s:12:\"location_lat\";N;s:16:\"location_address\";s:73:\"Julio&#039;s Agave Grill, 2809 Agoura Rd, Westlake Village, CA 91361, USA\";}}}','yes'),(2471,'evo_cron_logs','a:1:{s:6:\"evoics\";a:118:{i:0;a:2:{s:4:\"time\";i:1663542103;s:7:\"details\";s:23:\"Imported: 32 Failed: 12\";}i:1;a:2:{s:4:\"time\";i:1663543265;s:7:\"details\";s:22:\"Imported: 1 Failed: 43\";}i:2;a:2:{s:4:\"time\";i:1663543655;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:3;a:2:{s:4:\"time\";i:1663556905;s:7:\"details\";s:22:\"Imported: 1 Failed: 41\";}i:4;a:2:{s:4:\"time\";i:1663643347;s:7:\"details\";s:22:\"Imported: 1 Failed: 41\";}i:5;a:2:{s:4:\"time\";i:1663734498;s:7:\"details\";s:22:\"Imported: 1 Failed: 41\";}i:6;a:2:{s:4:\"time\";i:1663822112;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:7;a:2:{s:4:\"time\";i:1663907198;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:8;a:2:{s:4:\"time\";i:1663993431;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:9;a:2:{s:4:\"time\";i:1664079755;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:10;a:2:{s:4:\"time\";i:1664166174;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:11;a:2:{s:4:\"time\";i:1664248119;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:12;a:2:{s:4:\"time\";i:1664339044;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:13;a:2:{s:4:\"time\";i:1664425601;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:14;a:2:{s:4:\"time\";i:1664511508;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:15;a:2:{s:4:\"time\";i:1664598185;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:16;a:2:{s:4:\"time\";i:1664682640;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:17;a:2:{s:4:\"time\";i:1664770995;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:18;a:2:{s:4:\"time\";i:1664853297;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:19;a:2:{s:4:\"time\";i:1664943969;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:20;a:2:{s:4:\"time\";i:1665030692;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:21;a:2:{s:4:\"time\";i:1665116742;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:22;a:2:{s:4:\"time\";i:1665203017;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:23;a:2:{s:4:\"time\";i:1665289399;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:24;a:2:{s:4:\"time\";i:1665375780;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:25;a:2:{s:4:\"time\";i:1665462207;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:26;a:2:{s:4:\"time\";i:1665548919;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:27;a:2:{s:4:\"time\";i:1665635061;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:28;a:2:{s:4:\"time\";i:1665745918;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:29;a:2:{s:4:\"time\";i:1665815944;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:30;a:2:{s:4:\"time\";i:1665951281;s:7:\"details\";s:22:\"Imported: 0 Failed: 42\";}i:31;a:2:{s:4:\"time\";i:1665988997;s:7:\"details\";s:22:\"Imported: 1 Failed: 42\";}i:32;a:2:{s:4:\"time\";i:1666094120;s:7:\"details\";s:22:\"Imported: 0 Failed: 43\";}i:33;a:2:{s:4:\"time\";i:1666158836;s:7:\"details\";s:22:\"Imported: 0 Failed: 43\";}i:34;a:2:{s:4:\"time\";i:1666296872;s:7:\"details\";s:22:\"Imported: 0 Failed: 43\";}i:35;a:2:{s:4:\"time\";i:1666337522;s:7:\"details\";s:22:\"Imported: 0 Failed: 43\";}i:36;a:2:{s:4:\"time\";i:1666414550;s:7:\"details\";s:22:\"Imported: 0 Failed: 43\";}i:37;a:2:{s:4:\"time\";i:1666505043;s:7:\"details\";s:22:\"Imported: 0 Failed: 43\";}i:38;a:2:{s:4:\"time\";i:1666587951;s:7:\"details\";s:22:\"Imported: 1 Failed: 42\";}i:39;a:2:{s:4:\"time\";i:1666693633;s:7:\"details\";s:22:\"Imported: 2 Failed: 43\";}i:40;a:2:{s:4:\"time\";i:1666815441;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:41;a:2:{s:4:\"time\";i:1666865529;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:42;a:2:{s:4:\"time\";i:1666941110;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:43;a:2:{s:4:\"time\";i:1667026166;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:44;a:2:{s:4:\"time\";i:1667108502;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:45;a:2:{s:4:\"time\";i:1667197467;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:46;a:2:{s:4:\"time\";i:1667285331;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:47;a:2:{s:4:\"time\";i:1667420788;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:48;a:2:{s:4:\"time\";i:1667473747;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:49;a:2:{s:4:\"time\";i:1667592913;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:50;a:2:{s:4:\"time\";i:1667645209;s:7:\"details\";s:22:\"Imported: 0 Failed: 45\";}i:51;a:2:{s:4:\"time\";i:1667769245;s:7:\"details\";s:22:\"Imported: 1 Failed: 45\";}i:52;a:2:{s:4:\"time\";i:1667813684;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:53;a:2:{s:4:\"time\";i:1667878558;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:54;a:2:{s:4:\"time\";i:1667976227;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:55;a:2:{s:4:\"time\";i:1668114861;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:56;a:2:{s:4:\"time\";i:1668148325;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:57;a:2:{s:4:\"time\";i:1668287621;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:58;a:2:{s:4:\"time\";i:1668332190;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:59;a:2:{s:4:\"time\";i:1668460476;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:60;a:2:{s:4:\"time\";i:1668550317;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:61;a:2:{s:4:\"time\";i:1668639457;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:62;a:2:{s:4:\"time\";i:1668670058;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:63;a:2:{s:4:\"time\";i:1668743674;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:64;a:2:{s:4:\"time\";i:1668840059;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:65;a:2:{s:4:\"time\";i:1668928896;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:66;a:2:{s:4:\"time\";i:1669013499;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:67;a:2:{s:4:\"time\";i:1669100333;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:68;a:2:{s:4:\"time\";i:1669185145;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:69;a:2:{s:4:\"time\";i:1669297554;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:70;a:2:{s:4:\"time\";i:1669349825;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:71;a:2:{s:4:\"time\";i:1669437208;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:72;a:2:{s:4:\"time\";i:1669533109;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:73;a:2:{s:4:\"time\";i:1669676257;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:74;a:2:{s:4:\"time\";i:1669714193;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:75;a:2:{s:4:\"time\";i:1669806465;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:76;a:2:{s:4:\"time\";i:1669890722;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:77;a:2:{s:4:\"time\";i:1669988669;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:78;a:2:{s:4:\"time\";i:1670046500;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:79;a:2:{s:4:\"time\";i:1670126652;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:80;a:2:{s:4:\"time\";i:1670222362;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:81;a:2:{s:4:\"time\";i:1670333888;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:82;a:2:{s:4:\"time\";i:1670395251;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:83;a:2:{s:4:\"time\";i:1670470523;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:84;a:2:{s:4:\"time\";i:1670564007;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:85;a:2:{s:4:\"time\";i:1670644992;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:86;a:2:{s:4:\"time\";i:1670752296;s:7:\"details\";s:22:\"Imported: 1 Failed: 46\";}i:87;a:2:{s:4:\"time\";i:1670850174;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:88;a:2:{s:4:\"time\";i:1670914610;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:89;a:2:{s:4:\"time\";i:1670988669;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:90;a:2:{s:4:\"time\";i:1671074338;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:91;a:2:{s:4:\"time\";i:1671172778;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:92;a:2:{s:4:\"time\";i:1671269659;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:93;a:2:{s:4:\"time\";i:1671347286;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:94;a:2:{s:4:\"time\";i:1671422510;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:95;a:2:{s:4:\"time\";i:1671521630;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:96;a:2:{s:4:\"time\";i:1671593221;s:7:\"details\";s:22:\"Imported: 0 Failed: 47\";}i:97;a:2:{s:4:\"time\";i:1671703187;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:98;a:2:{s:4:\"time\";i:1671765576;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:99;a:2:{s:4:\"time\";i:1671855508;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:100;a:2:{s:4:\"time\";i:1671947774;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:101;a:2:{s:4:\"time\";i:1672095402;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:102;a:2:{s:4:\"time\";i:1672127888;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:103;a:2:{s:4:\"time\";i:1672201221;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:104;a:2:{s:4:\"time\";i:1672301714;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:105;a:2:{s:4:\"time\";i:1672370331;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:106;a:2:{s:4:\"time\";i:1672468642;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:107;a:2:{s:4:\"time\";i:1672555027;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:108;a:2:{s:4:\"time\";i:1672684122;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:109;a:2:{s:4:\"time\";i:1672727986;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:110;a:2:{s:4:\"time\";i:1672831894;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:111;a:2:{s:4:\"time\";i:1672888201;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:112;a:2:{s:4:\"time\";i:1673000040;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:113;a:2:{s:4:\"time\";i:1673073838;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:114;a:2:{s:4:\"time\";i:1673189907;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:115;a:2:{s:4:\"time\";i:1673217098;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:116;a:2:{s:4:\"time\";i:1673233797;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}i:117;a:2:{s:4:\"time\";i:1673321663;s:7:\"details\";s:22:\"Imported: 0 Failed: 46\";}}}','yes'),(11991,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1673368006;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:13:{s:49:\"tenweb-speed-optimizer/tenweb_speed_optimizer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/tenweb-speed-optimizer\";s:4:\"slug\";s:22:\"tenweb-speed-optimizer\";s:6:\"plugin\";s:49:\"tenweb-speed-optimizer/tenweb_speed_optimizer.php\";s:11:\"new_version\";s:7:\"2.12.15\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/tenweb-speed-optimizer/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/tenweb-speed-optimizer.2.12.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/tenweb-speed-optimizer/assets/icon-256x256.png?rev=2753401\";s:2:\"1x\";s:75:\"https://ps.w.org/tenweb-speed-optimizer/assets/icon-128x128.png?rev=2753401\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/tenweb-speed-optimizer/assets/banner-1544x500.png?rev=2757096\";s:2:\"1x\";s:77:\"https://ps.w.org/tenweb-speed-optimizer/assets/banner-772x250.png?rev=2757096\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:37:\"paypal-donations/paypal-donations.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/paypal-donations\";s:4:\"slug\";s:16:\"paypal-donations\";s:6:\"plugin\";s:37:\"paypal-donations/paypal-donations.php\";s:11:\"new_version\";s:5:\"1.9.9\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/paypal-donations/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/paypal-donations.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/paypal-donations/assets/icon-256x256.png?rev=994081\";s:2:\"1x\";s:60:\"https://ps.w.org/paypal-donations/assets/icon.svg?rev=994082\";s:3:\"svg\";s:60:\"https://ps.w.org/paypal-donations/assets/icon.svg?rev=994082\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/paypal-donations/assets/banner-1544x500.png?rev=994083\";s:2:\"1x\";s:71:\"https://ps.w.org/paypal-donations/assets/banner-772x250.png?rev=2722516\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:21:\"photonic/photonic.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:22:\"w.org/plugins/photonic\";s:4:\"slug\";s:8:\"photonic\";s:6:\"plugin\";s:21:\"photonic/photonic.php\";s:11:\"new_version\";s:4:\"2.83\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/photonic/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/photonic.2.83.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:61:\"https://ps.w.org/photonic/assets/icon-256x256.png?rev=1972449\";s:2:\"1x\";s:53:\"https://ps.w.org/photonic/assets/icon.svg?rev=1972449\";s:3:\"svg\";s:53:\"https://ps.w.org/photonic/assets/icon.svg?rev=1972449\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/photonic/assets/banner-1544x500.png?rev=1972449\";s:2:\"1x\";s:63:\"https://ps.w.org/photonic/assets/banner-772x250.png?rev=1972449\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:45:\"custom-facebook-feed/custom-facebook-feed.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/custom-facebook-feed\";s:4:\"slug\";s:20:\"custom-facebook-feed\";s:6:\"plugin\";s:45:\"custom-facebook-feed/custom-facebook-feed.php\";s:11:\"new_version\";s:5:\"4.1.6\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/custom-facebook-feed/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/custom-facebook-feed.4.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/custom-facebook-feed/assets/icon-256x256.png?rev=2700775\";s:2:\"1x\";s:73:\"https://ps.w.org/custom-facebook-feed/assets/icon-128x128.png?rev=2700775\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/custom-facebook-feed/assets/banner-1544x500.png?rev=2679356\";s:2:\"1x\";s:75:\"https://ps.w.org/custom-facebook-feed/assets/banner-772x250.png?rev=2679356\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.12.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.12.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/svg-support.2.5.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:64:\"https://ps.w.org/svg-support/assets/icon-256x256.png?rev=1417738\";s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:7:\"6.0.6.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.8.6\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"19.14\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.14.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.0\";}s:33:\"fusion-builder/fusion-builder.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:33:\"fusion-builder/fusion-builder.php\";s:4:\"slug\";s:14:\"fusion-builder\";s:6:\"plugin\";s:33:\"fusion-builder/fusion-builder.php\";s:11:\"new_version\";s:5:\"3.9.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:2:\"2x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:7:\"default\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";}}s:27:\"fusion-core/fusion-core.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"fusion-core/fusion-core.php\";s:4:\"slug\";s:11:\"fusion-core\";s:6:\"plugin\";s:27:\"fusion-core/fusion-core.php\";s:11:\"new_version\";s:5:\"5.9.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:2:\"2x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:7:\"default\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";}}}s:7:\"checked\";a:15:{s:49:\"tenweb-speed-optimizer/tenweb_speed_optimizer.php\";s:7:\"2.12.15\";s:19:\"akismet/akismet.php\";s:5:\"5.0.2\";s:33:\"fusion-builder/fusion-builder.php\";s:5:\"3.9.1\";s:27:\"fusion-core/fusion-core.php\";s:5:\"5.9.1\";s:37:\"paypal-donations/paypal-donations.php\";s:5:\"1.9.9\";s:19:\"eventON/eventon.php\";s:5:\"4.2.2\";s:45:\"eventon-ics-importer/eventon-ics-importer.php\";s:5:\"1.1.4\";s:9:\"hello.php\";s:5:\"1.7.2\";s:21:\"photonic/photonic.php\";s:4:\"2.83\";s:45:\"custom-facebook-feed/custom-facebook-feed.php\";s:5:\"4.1.6\";s:23:\"wp-smushit/wp-smush.php\";s:6:\"3.12.4\";s:27:\"svg-support/svg-support.php\";s:5:\"2.5.5\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"6.0.6.2\";s:33:\"duplicate-post/duplicate-post.php\";s:3:\"4.5\";s:24:\"wordpress-seo/wp-seo.php\";s:5:\"19.14\";}}','no'),(9448,'bwg_onboarding_step','signup_done','yes'),(9444,'widget_bwp_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9445,'widget_bwp_gallery_slideshow','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(8540,'wp-smush-settings','a:25:{s:4:\"auto\";b:1;s:5:\"lossy\";b:1;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:8:\"no_scale\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:5:\"gform\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;s:16:\"background_email\";b:0;}','yes'),(8454,'_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.1.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.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1673367997;s:15:\"version_checked\";s:5:\"6.1.1\";s:12:\"translations\";a:0:{}}','no'),(8455,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1673368005;s:7:\"checked\";a:6:{s:17:\"Avada-Child-Theme\";s:5:\"1.0.0\";s:5:\"Avada\";s:5:\"7.9.1\";s:12:\"twentytwenty\";s:3:\"2.1\";s:15:\"twentytwentyone\";s:3:\"1.7\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:5:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.0.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:5:\"Avada\";a:6:{s:5:\"theme\";s:5:\"Avada\";s:11:\"new_version\";s:5:\"7.9.1\";s:3:\"url\";s:58:\"https://theme-fusion.com/avada-documentation/changelog.txt\";s:7:\"package\";s:108:\"https://updates.theme-fusion.com/?avada_action=get_theme&ver=7.9.1&code=18bf85bd-c974-4849-a7cb-e99ce056843f\";s:8:\"required\";s:3:\"4.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(10777,'bodhi_svgs_plugin_version','2.5.5','yes'),(10778,'bodhi_svgs_settings','a:4:{s:22:\"sanitize_svg_front_end\";s:2:\"on\";s:8:\"restrict\";a:1:{i:0;s:13:\"administrator\";}s:12:\"sanitize_svg\";s:2:\"on\";s:24:\"sanitize_on_upload_roles\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}}','yes'),(8510,'_transient_timeout_avada-builder-demo-theme-options','1673473448','no'),(5351,'avada_previous_version','a:2:{i:0;s:5:\"7.8.1\";i:1;s:5:\"7.8.2\";}','yes'),(11974,'_transient_timeout_fusion_tos','1673933013','no');
INSERT INTO `wpwlvrot_options` VALUES (11975,'_transient_fusion_tos','a:31:{s:6:\"layout\";a:6:{s:5:\"label\";s:6:\"Layout\";s:2:\"id\";s:14:\"heading_layout\";s:8:\"priority\";i:1;s:4:\"icon\";s:15:\"el-icon-website\";s:8:\"alt_icon\";s:15:\"fusiona-browser\";s:6:\"fields\";a:15:{s:6:\"layout\";a:7:{s:5:\"label\";s:6:\"Layout\";s:11:\"description\";s:25:\"Controls the site layout.\";s:2:\"id\";s:6:\"layout\";s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"boxed\";s:5:\"Boxed\";s:4:\"wide\";s:4:\"Wide\";}s:6:\"output\";a:4:{i:0;a:6:{s:7:\"element\";s:4:\"html\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:19:\"avada-html-layout-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"avada-html-layout-boxed\";i:1;s:22:\"avada-html-layout-wide\";}}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:13:\"layout-$-mode\";s:12:\"remove_attrs\";a:2:{i:0;s:17:\"layout-boxed-mode\";i:1;s:16:\"layout-wide-mode\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:11:\"site_layout\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionPositionSubmenus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:11:\"layout_mode\";s:7:\"trigger\";a:2:{i:0;s:21:\"fusionSliderReTrigger\";i:1;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"site_width\";a:10:{s:5:\"label\";s:10:\"Site Width\";s:11:\"description\";s:32:\"Controls the overall site width.\";s:2:\"id\";s:10:\"site_width\";s:7:\"default\";s:6:\"1200px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:4:\"desc\";s:0:\"\";s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:12:\"--site_width\";}i:1;a:2:{s:4:\"name\";s:16:\"--site_width-int\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:28:\"avada-has-site-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"100%\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:32:\"avada-has-site-width-100-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:10:\"site_width\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:36:\"site_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"site_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:17:\"site_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:13:\"margin_offset\";a:9:{s:5:\"label\";s:28:\"Boxed Mode Top/Bottom Offset\";s:11:\"description\";s:55:\"Controls the top/bottom offset of the boxed background.\";s:2:\"id\";s:13:\"margin_offset\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:19:\"--margin_offset-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:22:\"--margin_offset-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:30:\"--margin_offset-top-no-percent\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}i:3;a:3:{s:4:\"name\";s:33:\"--margin_offset-bottom-no-percent\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"is-zero-or-empty\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-zero-margin-offset-top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"scroll_offset\";a:8:{s:5:\"label\";s:29:\"Boxed Mode Offset Scroll Mode\";s:11:\"description\";s:145:\"Choose how the page will scroll. Framed scrolling will keep the offset in place, while Full scrolling removes the offset when scrolling the page.\";s:2:\"id\";s:13:\"scroll_offset\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"framed\";s:16:\"Framed Scrolling\";s:4:\"full\";s:14:\"Full Scrolling\";}s:7:\"default\";s:4:\"full\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:3:\"===\";i:1;s:6:\"framed\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:24:\"avada-html-layout-framed\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:22:\"layout-scroll-offset-$\";s:12:\"remove_attrs\";a:2:{i:0;s:27:\"layout-scroll-offset-framed\";i:1;s:25:\"layout-scroll-offset-full\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"scroll_offset\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"boxed_modal_shadow\";a:8:{s:5:\"label\";s:22:\"Boxed Mode Shadow Type\";s:11:\"description\";s:53:\"Controls the type of shadow your boxed mode displays.\";s:2:\"id\";s:18:\"boxed_modal_shadow\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:9:\"No Shadow\";s:5:\"light\";s:12:\"Light Shadow\";s:6:\"medium\";s:13:\"Medium Shadow\";s:4:\"hard\";s:11:\"Hard Shadow\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:30:\"avada-has-boxed-modal-shadow-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-boxed-modal-shadow-none\";i:1;s:34:\"avada-has-boxed-modal-shadow-light\";i:2;s:35:\"avada-has-boxed-modal-shadow-medium\";i:3;s:33:\"avada-has-boxed-modal-shadow-hard\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"main_padding\";a:7:{s:5:\"label\";s:20:\"Page Content Padding\";s:11:\"description\";s:49:\"Controls the top/bottom padding for page content.\";s:2:\"id\";s:12:\"main_padding\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:18:\"--main_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--main_padding-top-or-55px\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:4:\"55px\";}}i:2;a:2:{s:4:\"name\";s:21:\"--main_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}}}s:13:\"page_template\";a:7:{s:5:\"label\";s:21:\"Default Page Template\";s:11:\"description\";s:33:\"Choose the default page template.\";s:2:\"id\";s:13:\"page_template\";s:7:\"default\";s:9:\"100_width\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:9:\"100_width\";s:10:\"100% Width\";s:10:\"site_width\";s:10:\"Site Width\";}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"hundredp_padding\";a:7:{s:5:\"label\";s:18:\"100% Width Padding\";s:11:\"description\";s:179:\"Controls the left and right padding for page content when using 100% site width, 100% width page template or 100% width post option. This does not affect Avada Builder containers.\";s:2:\"id\";s:16:\"hundredp_padding\";s:7:\"default\";s:4:\"30px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:4:{i:0;a:1:{s:4:\"name\";s:18:\"--hundredp_padding\";}i:1;a:2:{s:4:\"name\";s:35:\"--hundredp_padding-fallback_to_zero\";s:8:\"callback\";s:16:\"fallback_to_zero\";}i:2;a:2:{s:4:\"name\";s:38:\"--hundredp_padding-fallback_to_zero_px\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:3:\"0px\";}}i:3;a:2:{s:4:\"name\";s:50:\"--hundredp_padding-hundred_percent_negative_margin\";s:8:\"callback\";a:2:{i:0;s:31:\"hundred_percent_negative_margin\";i:1;s:0:\"\";}}}}s:27:\"single_sidebar_layouts_info\";a:4:{s:5:\"label\";s:22:\"Single Sidebar Layouts\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"single_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:13:\"sidebar_width\";a:7:{s:5:\"label\";s:20:\"Single Sidebar Width\";s:11:\"description\";s:67:\"Controls the width of the sidebar when only one sidebar is present.\";s:2:\"id\";s:13:\"sidebar_width\";s:7:\"default\";s:3:\"24%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:15:\"--sidebar_width\";}}}s:14:\"sidebar_gutter\";a:6:{s:5:\"label\";s:21:\"Single Sidebar Gutter\";s:11:\"description\";s:65:\"Controls the space between the main content and a single sidebar.\";s:2:\"id\";s:14:\"sidebar_gutter\";s:7:\"default\";s:2:\"6%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--sidebar_gutter\";}}}s:25:\"dual_sidebar_layouts_info\";a:4:{s:5:\"label\";s:20:\"Dual Sidebar Layouts\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"dual_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:17:\"sidebar_2_1_width\";a:7:{s:5:\"label\";s:20:\"Dual Sidebar Width 1\";s:11:\"description\";s:63:\"Controls the width of sidebar 1 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_1_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_1_width\";}}}s:17:\"sidebar_2_2_width\";a:7:{s:5:\"label\";s:20:\"Dual Sidebar Width 2\";s:11:\"description\";s:63:\"Controls the width of sidebar 2 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_2_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_2_width\";}}}s:19:\"dual_sidebar_gutter\";a:6:{s:5:\"label\";s:19:\"Dual Sidebar Gutter\";s:11:\"description\";s:91:\"Controls the space between the main content and the sidebar when dual sidebars are present.\";s:2:\"id\";s:19:\"dual_sidebar_gutter\";s:7:\"default\";s:2:\"4%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--dual_sidebar_gutter\";}}}}}s:6:\"mobile\";a:6:{s:5:\"label\";s:10:\"Responsive\";s:2:\"id\";s:6:\"mobile\";s:8:\"priority\";i:2;s:4:\"icon\";s:25:\"el-icon-resize-horizontal\";s:8:\"alt_icon\";s:14:\"fusiona-mobile\";s:6:\"fields\";a:13:{s:10:\"responsive\";a:6:{s:5:\"label\";s:17:\"Responsive Design\";s:11:\"description\";s:87:\"Turn on to use the responsive design features. If set to off, the fixed layout is used.\";s:2:\"id\";s:10:\"responsive\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{i:1;s:2:\"On\";i:0;s:3:\"Off\";}}s:21:\"grid_main_break_point\";a:9:{s:5:\"label\";s:26:\"Grid Responsive Breakpoint\";s:11:\"description\";s:121:\"Controls when grid layouts (blog/portfolio) start to break into smaller columns. Further breakpoints are auto calculated.\";s:2:\"id\";s:21:\"grid_main_break_point\";s:7:\"default\";s:4:\"1000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:3:\"360\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--grid_main_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"side_header_break_point\";a:9:{s:5:\"label\";s:28:\"Header Responsive Breakpoint\";s:11:\"description\";s:62:\"Controls when the desktop header changes to the mobile header.\";s:2:\"id\";s:23:\"side_header_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--side_header_break_point\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"content_break_point\";a:9:{s:5:\"label\";s:34:\"Site Content Responsive Breakpoint\";s:11:\"description\";s:130:\"Controls when the site content area changes to the mobile layout. This includes all content below the header including the footer.\";s:2:\"id\";s:19:\"content_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--content_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"sidebar_break_point\";a:8:{s:5:\"label\";s:29:\"Sidebar Responsive Breakpoint\";s:11:\"description\";s:51:\"Controls when sidebars change to the mobile layout.\";s:2:\"id\";s:19:\"sidebar_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"mobile_zoom\";a:8:{s:5:\"label\";s:18:\"Mobile Device Zoom\";s:11:\"description\";s:50:\"Turn on to enable pinch to zoom on mobile devices.\";s:2:\"id\";s:11:\"mobile_zoom\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:41:\"element_responsive_breakpoints_info_title\";a:5:{s:5:\"label\";s:30:\"Element Responsive Breakpoints\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:41:\"element_responsive_breakpoints_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"visibility_small\";a:8:{s:5:\"label\";s:12:\"Small Screen\";s:11:\"description\";s:73:\"Controls when the small screen options and visibility should take effect.\";s:2:\"id\";s:16:\"visibility_small\";s:7:\"default\";s:3:\"640\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"visibility_medium\";a:8:{s:5:\"label\";s:13:\"Medium Screen\";s:11:\"description\";s:74:\"Controls when the medium screen options and visibility should take effect.\";s:2:\"id\";s:17:\"visibility_medium\";s:7:\"default\";s:4:\"1024\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"visibility_large\";a:7:{s:5:\"label\";s:12:\"Large Screen\";s:11:\"description\";s:100:\"Any screen larger than that which is defined as the medium screen will be counted as a large screen.\";s:2:\"id\";s:16:\"visibility_large\";s:10:\"full_width\";b:0;s:4:\"type\";s:3:\"raw\";s:7:\"content\";s:59:\"<div id=\"fusion-visibility-large\">> <span>1024</span></div>\";s:11:\"option_name\";s:14:\"fusion_options\";}s:32:\"responsive_typography_info_title\";a:5:{s:5:\"label\";s:21:\"Responsive Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:32:\"responsive_typography_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:22:\"typography_sensitivity\";a:9:{s:5:\"label\";s:33:\"Responsive Typography Sensitivity\";s:11:\"description\";s:83:\"Set to 0 to disable responsive typography. Increase the value for a greater effect.\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--typography_sensitivity\";}}}s:17:\"typography_factor\";a:9:{s:5:\"label\";s:24:\"Minimum Font Size Factor\";s:11:\"description\";s:112:\"The minimum font-size of elements affected by responsive typography is body font-size multiplied by this factor.\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"4\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--typography_factor\";}}}}}s:6:\"colors\";a:6:{s:5:\"label\";s:6:\"Colors\";s:2:\"id\";s:6:\"colors\";s:8:\"priority\";i:3;s:4:\"icon\";s:13:\"el-icon-brush\";s:8:\"alt_icon\";s:21:\"fusiona-color-dropper\";s:6:\"fields\";a:2:{s:13:\"color_palette\";a:5:{s:5:\"label\";s:13:\"Color Palette\";s:11:\"description\";s:537:\"Set your global color palette. The colors defined here can be used from other global options, from page options and element options. For best results, the 8 colors of the core palette should be set from lightest to darkest. <strong>IMPORTANT NOTE:</strong> If a global color that is used by other options gets deleted, these corresponding options will display a default color instead. Colors are internally stored with a fixed counter. Thus, adding a new color after deleting an old one, will set the same internal name to the new color.\";s:2:\"id\";s:13:\"color_palette\";s:7:\"default\";a:8:{s:6:\"color1\";a:2:{s:5:\"color\";s:19:\"rgba(255,255,255,1)\";s:5:\"label\";s:7:\"Color 1\";}s:6:\"color2\";a:2:{s:5:\"color\";s:19:\"rgba(249,249,251,1)\";s:5:\"label\";s:7:\"Color 2\";}s:6:\"color3\";a:2:{s:5:\"color\";s:19:\"rgba(242,243,245,1)\";s:5:\"label\";s:7:\"Color 3\";}s:6:\"color4\";a:2:{s:5:\"color\";s:19:\"rgba(101,189,125,1)\";s:5:\"label\";s:7:\"Color 4\";}s:6:\"color5\";a:2:{s:5:\"color\";s:18:\"rgba(25,143,217,1)\";s:5:\"label\";s:7:\"Color 5\";}s:6:\"color6\";a:2:{s:5:\"color\";s:16:\"rgba(67,69,73,1)\";s:5:\"label\";s:7:\"Color 6\";}s:6:\"color7\";a:2:{s:5:\"color\";s:16:\"rgba(33,35,38,1)\";s:5:\"label\";s:7:\"Color 7\";}s:6:\"color8\";a:2:{s:5:\"color\";s:16:\"rgba(20,22,23,1)\";s:5:\"label\";s:7:\"Color 8\";}}s:4:\"type\";s:13:\"color-palette\";}s:13:\"primary_color\";a:6:{s:5:\"label\";s:13:\"Primary Color\";s:11:\"description\";s:57:\"Controls the main highlight color throughout the website.\";s:2:\"id\";s:13:\"primary_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:6:{i:0;a:2:{s:4:\"name\";s:15:\"--primary_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:19:\"--primary_color-85a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.85\";}}i:2;a:2:{s:4:\"name\";s:18:\"--primary_color-7a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.7\";}}i:3;a:2:{s:4:\"name\";s:18:\"--primary_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}}i:4;a:2:{s:4:\"name\";s:19:\"--primary_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}}i:5;a:2:{s:4:\"name\";s:18:\"--primary_color-2a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.2\";}}}}}}s:6:\"header\";a:7:{s:5:\"label\";s:6:\"Header\";s:2:\"id\";s:14:\"heading_header\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:3;s:4:\"icon\";s:16:\"el-icon-arrow-up\";s:8:\"alt_icon\";s:14:\"fusiona-header\";s:6:\"fields\";a:6:{s:15:\"slider_position\";a:8:{s:5:\"label\";s:15:\"Slider Position\";s:11:\"description\";s:58:\"Controls if the slider displays below or above the header.\";s:2:\"id\";s:15:\"slider_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"below\";s:5:\"Below\";s:5:\"above\";s:5:\"Above\";}s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:22:\"change_slider_position\";i:1;a:1:{s:7:\"element\";s:18:\"#sliders-container\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:45:\"header_global_header_override_template_notice\";a:5:{s:2:\"id\";s:45:\"header_global_header_override_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:447:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Header override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>, or <a href=\"https://test-site.wlvrotary.org/wp-admin/post.php?post=690&action=edit\" target=\"_blank\">edit the header</a>.</div>\";s:4:\"type\";s:6:\"custom\";s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:17:\".fusion-tb-header\";}s:9:\"shortcuts\";a:1:{i:0;a:4:{s:10:\"aria_label\";s:11:\"Edit Header\";s:4:\"icon\";s:14:\"fusiona-header\";s:11:\"open_parent\";b:1;s:35:\"link_to_template_if_override_active\";s:6:\"header\";}}}}s:13:\"header_info_1\";a:8:{s:5:\"label\";s:14:\"Header Content\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:13:\"header_info_1\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:11:{s:44:\"header_global_header_template_content_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_position\";a:8:{s:5:\"label\";s:15:\"Header Position\";s:11:\"description\";s:205:\"Controls the position of the header to be in the top, left or right of the site. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:15:\"header_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:3:\"top\";s:3:\"Top\";s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";}s:15:\"partial_refresh\";a:2:{s:34:\"header_position_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_position_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:21:\"avadaFusionSliderVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:1:{s:11:\"js_callback\";a:1:{i:0;s:22:\"change_header_position\";}}}}s:13:\"header_layout\";a:10:{s:5:\"label\";s:22:\"Select a Header Layout\";s:11:\"description\";s:322:\"Controls the general layout of the header. Headers 2-5 allow additional content areas via the header content options 1-3. Header 6 only allows parent level menu items, no child levels will display. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:13:\"header_layout\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:7:{s:2:\"v1\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header7.jpg\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:3:{s:47:\"header_content_header_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:46:\"header_content_header_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:28:\"header_content_header_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:18:\"Edit Header Layout\";s:4:\"icon\";s:14:\"fusiona-header\";s:11:\"open_parent\";b:1;s:5:\"order\";i:1;}i:1;a:5:{s:10:\"aria_label\";s:10:\"Add Slider\";s:4:\"icon\";s:15:\"fusiona-uniF61C\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:10:\"add-slider\";s:5:\"order\";i:4;}i:2;a:5:{s:10:\"aria_label\";s:18:\"Add Page Title Bar\";s:4:\"icon\";s:18:\"fusiona-page_title\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:7:\"add-ptb\";s:5:\"order\";i:5;}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"fusion-header-layout-$\";s:12:\"remove_attrs\";a:7:{i:0;s:23:\"fusion-header-layout-v1\";i:1;s:23:\"fusion-header-layout-v2\";i:2;s:23:\"fusion-header-layout-v3\";i:3;s:23:\"fusion-header-layout-v4\";i:4;s:23:\"fusion-header-layout-v5\";i:5;s:23:\"fusion-header-layout-v6\";i:6;s:23:\"fusion-header-layout-v7\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_layout\";s:7:\"trigger\";a:1:{i:0;s:31:\"fusionReSettStickySidebarStatus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:0:\"\";a:0:{}s:19:\"header_left_content\";a:9:{s:5:\"label\";s:16:\"Header Content 1\";s:11:\"description\";s:59:\"Controls the content that displays in the top left section.\";s:2:\"id\";s:19:\"header_left_content\";s:7:\"default\";s:12:\"social_links\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:12:\"Contact Info\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leave Empty\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:53:\"header_content_header_left_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_left_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_content_header_left_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:20:\"header_right_content\";a:9:{s:5:\"label\";s:16:\"Header Content 2\";s:11:\"description\";s:60:\"Controls the content that displays in the top right section.\";s:2:\"id\";s:20:\"header_right_content\";s:7:\"default\";s:10:\"navigation\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:12:\"Contact Info\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leave Empty\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:54:\"header_content_header_right_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:53:\"header_content_header_right_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"header_content_header_right_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:17:\"header_v4_content\";a:9:{s:5:\"label\";s:16:\"Header Content 3\";s:11:\"description\";s:63:\"Controls the content that displays in the middle right section.\";s:2:\"id\";s:17:\"header_v4_content\";s:7:\"default\";s:18:\"tagline_and_search\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:7:\"tagline\";s:7:\"Tagline\";s:6:\"search\";s:6:\"Search\";s:18:\"tagline_and_search\";s:18:\"Tagline And Search\";s:6:\"banner\";s:6:\"Banner\";s:4:\"none\";s:11:\"Leave Empty\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:15:\"partial_refresh\";a:3:{s:51:\"header_content_header_v4_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:50:\"header_content_header_v4_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:32:\"header_content_header_v4_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:13:\"header_number\";a:8:{s:5:\"label\";s:29:\"Phone Number For Contact Info\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:13:\"header_number\";s:7:\"default\";s:28:\"Call Us Today! 1.555.555.555\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:33:\".fusion-contact-info-phone-number\";s:8:\"function\";s:4:\"html\";}}}s:12:\"header_email\";a:8:{s:5:\"label\";s:30:\"Email Address For Contact Info\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:12:\"header_email\";s:7:\"default\";s:19:\"info@yourdomain.com\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:34:\".fusion-contact-info-email-address\";s:8:\"function\";s:4:\"html\";s:13:\"value_pattern\";s:24:\"<a href=\"mailto:$\">$</a>\";}}}s:14:\"header_tagline\";a:8:{s:5:\"label\";s:21:\"Tagline For Content 3\";s:11:\"description\";s:105:\"This content will display if you have &quot;Tagline&quot; selected for the Header Content 3 option above.\";s:2:\"id\";s:14:\"header_tagline\";s:7:\"default\";s:19:\"Insert Tagline Here\";s:4:\"type\";s:8:\"textarea\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"function\";s:4:\"html\";}}}s:18:\"header_banner_code\";a:9:{s:5:\"label\";s:25:\"Banner Code For Content 3\";s:11:\"description\";s:194:\"This content will display if you have &quot;Banner&quot; selected for the Header Content 3 option above. Add HTML banner code for Header Content 3. Elements, like buttons, can be used here also.\";s:2:\"id\";s:18:\"header_banner_code\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:2:{s:8:\"language\";s:4:\"html\";s:5:\"theme\";s:6:\"chrome\";}s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:1:{s:26:\"header_content_banner_code\";a:4:{s:8:\"selector\";s:32:\".fusion-header-content-3-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:22:\"avada_header_content_3\";s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}}}s:13:\"header_info_2\";a:8:{s:5:\"label\";s:23:\"Header Background Image\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:13:\"header_info_2\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:5:{s:39:\"header_global_header_template_bg_notice\";a:4:{s:2:\"id\";s:39:\"header_global_header_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_bg_image\";a:8:{s:5:\"label\";s:32:\"Background Image For Header Area\";s:11:\"description\";s:384:\"Select an image for the header background. If left empty, the header background color will be used. For top headers the image displays on top of the header background color and will only display if header background color opacity is set to 1. For side headers the image displays behind the header background color so the header background opacity must be set below 1 to see the image.\";s:2:\"id\";s:15:\"header_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-header-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:109:\"Turn on to have the header background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:14:\"header_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:24:\"avada-has-header-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"header_bg_parallax\";a:7:{s:5:\"label\";s:25:\"Parallax Background Image\";s:11:\"description\";s:103:\"Turn on to use a parallax scrolling effect on the background image. Only works for top header position.\";s:2:\"id\";s:18:\"header_bg_parallax\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:3;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-header-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_bg_repeat\";a:9:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:16:\"header_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:18:\"--header_bg_repeat\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"avada-header-bg-$\";s:12:\"remove_attrs\";a:4:{i:0;s:22:\"avada-header-bg-repeat\";i:1;s:24:\"avada-header-bg-repeat-x\";i:2;s:24:\"avada-header-bg-repeat-y\";i:3;s:25:\"avada-header-bg-no-repeat\";}}}}}}s:14:\"header_styling\";a:8:{s:5:\"label\";s:14:\"Header Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:14:\"header_styling\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:11:{s:44:\"header_global_header_template_styling_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:17:\"side_header_width\";a:9:{s:5:\"label\";s:36:\"Header Width For Left/Right Position\";s:11:\"description\";s:52:\"Controls the width of the left or right side header.\";s:2:\"id\";s:17:\"side_header_width\";s:7:\"default\";s:3:\"280\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:19:\"--side_header_width\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:1:{s:4:\"name\";s:23:\"--side_header_width-int\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:6:\"resize\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_padding\";a:8:{s:5:\"label\";s:14:\"Header Padding\";s:11:\"description\";s:58:\"Controls the top/right/bottom/left padding for the header.\";s:2:\"id\";s:14:\"header_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:20:\"--header_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:23:\"--header_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:21:\"--header_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:22:\"--header_padding-right\";s:6:\"choice\";s:5:\"right\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:6:\"bottom\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:21:\"header_padding_bottom\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"header_shadow\";a:6:{s:5:\"label\";s:13:\"Header Shadow\";s:11:\"description\";s:40:\"Turn on to display a header drop shadow.\";s:2:\"id\";s:13:\"header_shadow\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:55:\".fusion-top-header .fusion-header-wrapper, #side-header\";s:9:\"className\";s:20:\"fusion-header-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_100_width\";a:7:{s:5:\"label\";s:17:\"100% Header Width\";s:11:\"description\";s:114:\"Turn on to have the header area display at 100% width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:16:\"header_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"wide\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:26:\"avada-has-header-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"header_bg_color\";a:7:{s:5:\"label\";s:23:\"Header Background Color\";s:11:\"description\";s:288:\"Controls the background color and opacity for the header. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay. Transparent headers are disabled on all archive pages due to technical limitations.\";s:2:\"id\";s:15:\"header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"archive_header_bg_color\";a:7:{s:5:\"label\";s:31:\"Archive Header Background Color\";s:11:\"description\";s:247:\"Controls the background color and opacity for the header on archive pages, search page and 404 page. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay.\";s:2:\"id\";s:23:\"archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--archive_header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_border_color\";a:9:{s:5:\"label\";s:19:\"Header Border Color\";s:11:\"description\";s:117:\"Controls the border colors for the header. If using left or right header position it controls the menu divider lines.\";s:2:\"id\";s:19:\"header_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_border_color\";s:7:\"element\";s:35:\".fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-header-border-color-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_top_bg_color\";a:8:{s:5:\"label\";s:27:\"Header Top Background Color\";s:11:\"description\";s:76:\"Controls the background color of the top header section used in Headers 2-5.\";s:2:\"id\";s:19:\"header_top_bg_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_top_bg_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:30:\"avada-header-top-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"tagline_font_size\";a:9:{s:5:\"label\";s:24:\"Header Tagline Font Size\";s:11:\"description\";s:64:\"Controls the font size for the tagline text when using header 4.\";s:2:\"id\";s:17:\"tagline_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--tagline_font_size\";s:7:\"element\";s:22:\".fusion-header-tagline\";}}}s:18:\"tagline_font_color\";a:8:{s:5:\"label\";s:25:\"Header Tagline Font Color\";s:11:\"description\";s:65:\"Controls the font color for the tagline text when using header 4.\";s:2:\"id\";s:18:\"tagline_font_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--tagline_font_color\";s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:13:\"sticky_header\";a:8:{s:5:\"label\";s:13:\"Sticky Header\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:13:\"sticky_header\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:11:{s:43:\"header_global_header_template_sticky_notice\";a:4:{s:2:\"id\";s:43:\"header_global_header_template_sticky_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"header_sticky\";a:7:{s:5:\"label\";s:13:\"Sticky Header\";s:11:\"description\";s:34:\"Turn on to enable a sticky header.\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:40:\"header_content_sticky_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"header_content_sticky_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:21:\"header_content_sticky\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"fusion-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_tablet\";a:7:{s:5:\"label\";s:24:\"Sticky Header on Tablets\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on tablets.\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-tablet-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_mobile\";a:7:{s:5:\"label\";s:24:\"Sticky Header on Mobiles\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on mobiles.\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-mobile-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"header_sticky_shrinkage\";a:7:{s:5:\"label\";s:23:\"Sticky Header Animation\";s:11:\"description\";s:124:\"Turn on to allow the sticky header to animate to a smaller height when activated. Only works with header v1 - v3, v6 and v7.\";s:2:\"id\";s:23:\"header_sticky_shrinkage\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-sticky-shrinkage\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"header_sticky_type2_layout\";a:8:{s:5:\"label\";s:40:\"Sticky Header Display For Headers 4 - 5 \";s:11:\"description\";s:70:\"Controls what displays in the sticky header when using header v4 - v5.\";s:2:\"id\";s:26:\"header_sticky_type2_layout\";s:7:\"default\";s:9:\"menu_only\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:9:\"menu_only\";s:9:\"Menu Only\";s:13:\"menu_and_logo\";s:16:\"Menu + Logo Area\";}s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:5;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:6;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v7\";}}s:15:\"partial_refresh\";a:3:{s:45:\"header_sticky_type2_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:44:\"header_sticky_type2_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_sticky_type2_layout_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}}s:20:\"header_sticky_shadow\";a:7:{s:5:\"label\";s:20:\"Sticky Header Shadow\";s:11:\"description\";s:47:\"Turn on to display a sticky header drop shadow.\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"trigger\";a:2:{i:0;s:5:\"ready\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:14:\".fusion-header\";s:9:\"className\";s:20:\"fusion-sticky-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"header_sticky_bg_color\";a:8:{s:5:\"label\";s:30:\"Sticky Header Background Color\";s:11:\"description\";s:52:\"Controls the background color for the sticky header.\";s:2:\"id\";s:22:\"header_sticky_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--header_sticky_bg_color\";s:7:\"element\";s:53:\".fusion-arrow-svg,.fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:19:\"fusionContainerVars\";s:2:\"id\";s:28:\"is_sticky_header_transparent\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:46:\"fusion-element-render-fusion_builder_container\";}s:8:\"callback\";s:25:\"fusionReturnColorAlphaInt\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"header_sticky_menu_color\";a:7:{s:5:\"label\";s:29:\"Sticky Header Menu Font Color\";s:11:\"description\";s:59:\"Controls the color for main menu text in the sticky header.\";s:2:\"id\";s:24:\"header_sticky_menu_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--header_sticky_menu_color\";s:7:\"element\";s:17:\".fusion-main-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_sticky_nav_padding\";a:8:{s:5:\"label\";s:31:\"Sticky Header Menu Item Padding\";s:11:\"description\";s:63:\"Controls the space between each menu item in the sticky header.\";s:2:\"id\";s:25:\"header_sticky_nav_padding\";s:7:\"default\";s:2:\"35\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--header_sticky_nav_padding\";s:7:\"element\";s:41:\".fusion-main-menu,.fusion-logo-background\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"header_sticky_nav_font_size\";a:8:{s:5:\"label\";s:34:\"Sticky Header Navigation Font Size\";s:11:\"description\";s:62:\"Controls the font size of the menu items in the sticky header.\";s:2:\"id\";s:27:\"header_sticky_nav_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--header_sticky_nav_font_size\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}}}}}s:4:\"menu\";a:6:{s:5:\"label\";s:4:\"Menu\";s:2:\"id\";s:20:\"heading_menu_section\";s:8:\"priority\";i:1;s:4:\"icon\";s:13:\"el-icon-lines\";s:8:\"alt_icon\";s:12:\"fusiona-bars\";s:6:\"fields\";a:7:{s:11:\"custom_menu\";a:5:{s:5:\"label\";s:9:\"Main Menu\";s:2:\"id\";s:11:\"custom_menu\";s:8:\"priority\";i:6;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:1:{s:43:\"menu_global_header_override_template_notice\";a:5:{s:2:\"id\";s:43:\"menu_global_header_override_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Header override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}}}s:12:\"heading_menu\";a:6:{s:5:\"label\";s:9:\"Main Menu\";s:2:\"id\";s:12:\"heading_menu\";s:8:\"priority\";i:6;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:29:{s:34:\"menu_global_header_template_notice\";a:4:{s:2:\"id\";s:34:\"menu_global_header_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:10:\"nav_height\";a:11:{s:5:\"label\";s:16:\"Main Menu Height\";s:11:\"description\";s:145:\"Controls the menu height.<span id=\"fusion-menu-height-hint\" style=\"display:inline\">  To match the logo height set to <strong>140</strong>.</span>\";s:2:\"id\";s:10:\"nav_height\";s:7:\"default\";s:2:\"94\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--nav_height\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:14:\"Edit Main Menu\";s:4:\"link\";s:74:\"https://test-site.wlvrotary.org/wp-admin/nav-menus.php?action=edit&menu=31\";s:5:\"order\";i:3;}}}}s:20:\"menu_highlight_style\";a:10:{s:5:\"label\";s:25:\"Main Menu Highlight Style\";s:11:\"description\";s:508:\"Controls the highlight style for main menu links and also affects the look of menu dropdowns. Arrow style cannot work with a transparent header background. Bar highlights will display vertically on side header layouts. <strong>IMPORTANT:</strong> Arrow & Background style can require configuration of other options depending on desired effect. <a href=\"https://theme-fusion.com/documentation/avada/main-menu-highlight-styles/\" target=\"_blank\" rel=\"noopener noreferrer\">See this post for more information</a>.\";s:2:\"id\";s:20:\"menu_highlight_style\";s:7:\"default\";s:3:\"bar\";s:7:\"choices\";a:5:{s:3:\"bar\";s:7:\"Top Bar\";s:9:\"bottombar\";s:10:\"Bottom Bar\";s:5:\"arrow\";s:5:\"Arrow\";s:10:\"background\";s:10:\"Background\";s:9:\"textcolor\";s:10:\"Color Only\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:28:\"avada-menu-highlight-style-$\";s:12:\"remove_attrs\";a:5:{i:0;s:30:\"avada-menu-highlight-style-bar\";i:1;s:36:\"avada-menu-highlight-style-bottombar\";i:2;s:32:\"avada-menu-highlight-style-arrow\";i:3;s:37:\"avada-menu-highlight-style-background\";i:4;s:36:\"avada-menu-highlight-style-textcolor\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:19:\"nav_highlight_style\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:46:\"menu_highlight_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"menu_highlight_style_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"menu_highlight_style_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:25:\"menu_highlight_background\";a:8:{s:5:\"label\";s:36:\"Main Menu Highlight Background Color\";s:11:\"description\";s:53:\"Controls the background color of main menu highlight.\";s:2:\"id\";s:25:\"menu_highlight_background\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--menu_highlight_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"menu_arrow_size\";a:9:{s:5:\"label\";s:20:\"Main Menu Arrow Size\";s:11:\"description\";s:53:\"Controls the width and height of the main menu arrow.\";s:2:\"id\";s:15:\"menu_arrow_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:4:\"type\";s:10:\"dimensions\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:23:\"--menu_arrow_size-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:24:\"--menu_arrow_size-height\";s:6:\"choice\";s:6:\"height\";}i:2;a:3:{s:4:\"name\";s:55:\"--menu_arrow_size-width-header_border_color_condition_5\";s:6:\"choice\";s:5:\"width\";s:8:\"callback\";a:2:{i:0;s:31:\"header_border_color_condition_5\";i:1;s:0:\"\";}}}}s:20:\"nav_highlight_border\";a:10:{s:5:\"label\";s:28:\"Main Menu Highlight Bar Size\";s:11:\"description\";s:44:\"Controls the size of the menu highlight bar.\";s:2:\"id\";s:20:\"nav_highlight_border\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--nav_highlight_border\";s:13:\"value_pattern\";s:3:\"$px\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;s:1:\"0\";}}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"nav_highlight_border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:5:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}s:9:\"condition\";a:5:{i:0;s:20:\"menu_highlight_style\";i:1;s:3:\"===\";i:2;s:3:\"bar\";i:3;s:1:\"$\";i:4;s:1:\"0\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"nav_padding\";a:8:{s:5:\"label\";s:22:\"Main Menu Item Padding\";s:11:\"description\";s:55:\"Controls the right padding for menu text (left on RTL).\";s:2:\"id\";s:11:\"nav_padding\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:13:\"--nav_padding\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:2:{s:4:\"name\";s:21:\"--nav_padding-no-zero\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:3:\"$px\";i:1;s:0:\"\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"nav_padding\";i:1;s:2:\"==\";i:2;s:1:\"0\";}}}}}}}s:18:\"mobile_nav_padding\";a:8:{s:5:\"label\";s:32:\"Main Menu Item Padding On Mobile\";s:11:\"description\";s:110:\"Controls the right padding for menu text (left on RTL) when the normal desktop menu is used on mobile devices.\";s:2:\"id\";s:18:\"mobile_nav_padding\";s:7:\"default\";s:2:\"25\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--mobile_nav_padding\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"megamenu_shadow\";a:8:{s:5:\"label\";s:21:\"Main Menu Drop Shadow\";s:11:\"description\";s:51:\"Turn on to display a drop shadow on menu dropdowns.\";s:2:\"id\";s:15:\"megamenu_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-megamenu-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:28:\"main_menu_sub_menu_animation\";a:9:{s:5:\"label\";s:47:\"Main Menu Dropdown / Legacy Mega Menu Animation\";s:11:\"description\";s:46:\"Controls the animation type for all sub-menus.\";s:2:\"id\";s:28:\"main_menu_sub_menu_animation\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"fade\";s:7:\"choices\";a:2:{s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:5:\"Slide\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"fusion-sub-menu-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-sub-menu-fade\";i:1;s:21:\"fusion-sub-menu-slide\";}}}s:29:\"dropdown_menu_top_border_size\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Top Border Size\";s:11:\"description\";s:65:\"Controls top border size of dropdown menus and legacy mega menus.\";s:2:\"id\";s:29:\"dropdown_menu_top_border_size\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--dropdown_menu_top_border_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"dropdown_menu_width\";a:9:{s:5:\"label\";s:24:\"Main Menu Dropdown Width\";s:11:\"description\";s:35:\"Controls the width of the dropdown.\";s:2:\"id\";s:19:\"dropdown_menu_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--dropdown_menu_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"mainmenu_dropdown_vertical_padding\";a:9:{s:5:\"label\";s:31:\"Main Menu Dropdown Item Padding\";s:11:\"description\";s:56:\"Controls the top/bottom padding for dropdown menu items.\";s:2:\"id\";s:34:\"mainmenu_dropdown_vertical_padding\";s:7:\"default\";s:2:\"12\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--mainmenu_dropdown_vertical_padding\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:33:\"mainmenu_dropdown_display_divider\";a:8:{s:5:\"label\";s:26:\"Main Menu Dropdown Divider\";s:11:\"description\";s:57:\"Turn on to display a divider line on dropdown menu items.\";s:2:\"id\";s:33:\"mainmenu_dropdown_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:35:\"avada-has-mainmenu-dropdown-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:31:\"menu_display_dropdown_indicator\";a:9:{s:5:\"label\";s:28:\"Main Menu Dropdown Indicator\";s:11:\"description\";s:68:\"Turn on to display arrow indicators next to parent level menu items.\";s:2:\"id\";s:31:\"menu_display_dropdown_indicator\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:3:{s:6:\"parent\";s:6:\"Parent\";s:12:\"parent_child\";s:14:\"Parent + Child\";s:4:\"none\";s:4:\"None\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:3:{s:57:\"header_menu_display_dropdown_indicator_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:56:\"header_menu_display_dropdown_indicator_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:38:\"header_menu_display_dropdown_indicator\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:20:\"main_nav_search_icon\";a:7:{s:5:\"label\";s:21:\"Main Menu Search Icon\";s:11:\"description\";s:52:\"Turn on to display the search icon in the main menu.\";s:2:\"id\";s:20:\"main_nav_search_icon\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:46:\"header_main_nav_search_icon_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_main_nav_search_icon_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"header_main_nav_search_icon\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-has-main-nav-search-icon\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"main_nav_search_layout\";a:9:{s:5:\"label\";s:23:\"Main Menu Search Layout\";s:11:\"description\";s:55:\"Controls the layout of the search bar in the main menu.\";s:2:\"id\";s:22:\"main_nav_search_layout\";s:7:\"default\";s:7:\"overlay\";s:7:\"choices\";a:2:{s:8:\"dropdown\";s:9:\"Drop-Down\";s:7:\"overlay\";s:12:\"Menu Overlay\";}s:4:\"type\";s:15:\"radio-buttonset\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:20:\"main_nav_search_icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:1:{s:30:\"main_nav_search_layout_refresh\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:8:\"dropdown\";i:1;s:7:\"overlay\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";a:2:{i:0;s:32:\"fusion-main-menu-search-dropdown\";i:1;s:31:\"fusion-main-menu-search-overlay\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"main_nav_icon_circle\";a:6:{s:5:\"label\";s:29:\"Main Menu Icon Circle Borders\";s:11:\"description\";s:64:\"Turn on to display a circle border on the cart and search icons.\";s:2:\"id\";s:20:\"main_nav_icon_circle\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"fusion-has-main-nav-icon-circle\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"main_nav_highlight_radius\";a:6:{s:5:\"label\";s:27:\"Menu Highlight Label Radius\";s:11:\"description\";s:61:\"Controls the border radius of all your menu highlight labels.\";s:2:\"id\";s:25:\"main_nav_highlight_radius\";s:7:\"default\";s:3:\"2px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--main_nav_highlight_radius\";s:7:\"element\";s:50:\".fusion-menu-highlight-label, .awb-menu__highlight\";}}}s:17:\"menu_sub_bg_color\";a:8:{s:5:\"label\";s:35:\"Main Menu Dropdown Background Color\";s:11:\"description\";s:56:\"Controls the background color of the main menu dropdown.\";s:2:\"id\";s:17:\"menu_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_sub_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_bg_hover_color\";a:8:{s:5:\"label\";s:41:\"Main Menu Dropdown Background Hover Color\";s:11:\"description\";s:62:\"Controls the background hover color of the main menu dropdown.\";s:2:\"id\";s:19:\"menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--menu_bg_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"menu_sub_sep_color\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Separator Color\";s:11:\"description\";s:63:\"Controls the color of the separators in the main menu dropdown.\";s:2:\"id\";s:18:\"menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--menu_sub_sep_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";a:3:{i:0;s:76:\".fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents\";i:1;s:74:\".fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents\";i:2;s:74:\".fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents\";}s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:1:\"0\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:18:\"menu_sub_sep_color\";}}}}s:17:\"menu_h45_bg_color\";a:8:{s:5:\"label\";s:47:\"Main Menu Background Color For Header 4 &amp; 5\";s:11:\"description\";s:72:\"Controls the background color of the main menu when using header 4 or 5.\";s:2:\"id\";s:17:\"menu_h45_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_h45_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"main_menu_typography_info\";a:4:{s:5:\"label\";s:20:\"Main Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"main_menu_typography_info\";s:4:\"type\";s:4:\"info\";}s:14:\"nav_typography\";a:10:{s:2:\"id\";s:14:\"nav_typography\";s:5:\"label\";s:16:\"Menus Typography\";s:11:\"description\";s:72:\"These settings control the typography for all main menu top-level items.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:25:\"text_transform_no_inherit\";b:1;s:5:\"class\";s:17:\"avada-no-fontsize\";s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:14:\"nav_typography\";}}i:1;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:26:\"--nav_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:3;a:2:{s:4:\"name\";s:27:\"--nav_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:4;a:3:{s:4:\"name\";s:31:\"--nav_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:22:\"--nav_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-65a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.65000000000000002220446049250313080847263336181640625;}}i:7;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-35a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.34999999999999997779553950749686919152736663818359375;}}i:8;a:2:{s:4:\"name\";s:31:\"--nav_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:15:\"menu_text_align\";a:11:{s:5:\"label\";s:20:\"Main Menu Text Align\";s:11:\"description\";s:75:\"Controls the main menu text alignment for top headers 4-5 and side headers.\";s:2:\"id\";s:15:\"menu_text_align\";s:7:\"default\";s:6:\"center\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--menu_text_align\";s:7:\"element\";s:17:\".fusion-main-menu\";}}s:6:\"output\";a:3:{i:0;a:0:{}i:1;a:0:{}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"menu-text-align-left\";i:1;s:22:\"menu-text-align-center\";i:2;s:21:\"menu-text-align-right\";}}}s:15:\"partial_refresh\";a:3:{s:41:\"menu_text_align_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"menu_text_align_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"menu_text_align_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:22:\"menu_hover_first_color\";a:6:{s:5:\"label\";s:33:\"Main Menu Font Hover/Active Color\";s:11:\"description\";s:97:\"Controls the color for main menu text hover and active states, highlight bar and dropdown border.\";s:2:\"id\";s:22:\"menu_hover_first_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:24:\"--menu_hover_first_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:28:\"--menu_hover_first_color-65a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.65\";}}}}s:14:\"menu_sub_color\";a:8:{s:5:\"label\";s:29:\"Main Menu Dropdown Font Color\";s:11:\"description\";s:47:\"Controls the color for main menu dropdown text.\";s:2:\"id\";s:14:\"menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"nav_dropdown_font_size\";a:9:{s:5:\"label\";s:28:\"Main Menu Dropdown Font Size\";s:11:\"description\";s:51:\"Controls the font size for main menu dropdown text.\";s:2:\"id\";s:22:\"nav_dropdown_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--nav_dropdown_font_size\";}}}}}s:22:\"flyout_menu_subsection\";a:5:{s:5:\"label\";s:11:\"Flyout Menu\";s:2:\"id\";s:22:\"flyout_menu_subsection\";s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:8:{s:31:\"flyout_menu_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:224:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Flyout Menu Options are only available when using Header Layout #6 or Mobile Flyout Menu. Your current setup does not utilize the flyout menu.</div>\";s:2:\"id\";s:31:\"flyout_menu_important_note_info\";s:4:\"type\";s:6:\"custom\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}}s:26:\"flyout_menu_icon_font_size\";a:9:{s:5:\"label\";s:26:\"Flyout Menu Icon Font Size\";s:11:\"description\";s:49:\"Controls the font size for the flyout menu icons.\";s:2:\"id\";s:26:\"flyout_menu_icon_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:28:\"--flyout_menu_icon_font_size\";}i:1;a:2:{s:4:\"name\";s:31:\"--flyout_menu_icon_font_size_px\";s:8:\"callback\";a:1:{i:0;s:11:\"units_to_px\";}}}}s:24:\"flyout_nav_icons_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Icon Padding\";s:11:\"description\";s:63:\"Controls the right padding for flyout menu icons (left on RTL).\";s:2:\"id\";s:24:\"flyout_nav_icons_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_nav_icons_padding\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"flyout_menu_icon_color\";a:8:{s:5:\"label\";s:22:\"Flyout Menu Icon Color\";s:11:\"description\";s:44:\"Controls the color of the flyout menu icons.\";s:2:\"id\";s:22:\"flyout_menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--flyout_menu_icon_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_icon_hover_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Icon Hover Color\";s:11:\"description\";s:50:\"Controls the hover color of the flyout menu icons.\";s:2:\"id\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_icon_hover_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_background_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Background Color\";s:11:\"description\";s:48:\"Controls the background color of the flyout menu\";s:2:\"id\";s:28:\"flyout_menu_background_color\";s:7:\"default\";s:96:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 6%))\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_background_color\";s:7:\"element\";s:22:\".fusion-flyout-menu-bg\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"flyout_menu_direction\";a:9:{s:5:\"label\";s:21:\"Flyout Menu Direction\";s:11:\"description\";s:51:\"Controls the direction the flyout menu starts from.\";s:2:\"id\";s:21:\"flyout_menu_direction\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:6:\"select\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:5:{s:4:\"fade\";s:4:\"Fade\";s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:3:\"top\";s:3:\"Top\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:29:\"avada-flyout-menu-direction-$\";s:12:\"remove_attrs\";a:5:{i:0;s:32:\"avada-flyout-menu-direction-fade\";i:1;s:32:\"avada-flyout-menu-direction-left\";i:2;s:33:\"avada-flyout-menu-direction-right\";i:3;s:34:\"avada-flyout-menu-direction-bottom\";i:4;s:31:\"avada-flyout-menu-direction-top\";}}}}s:24:\"flyout_menu_item_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Item Padding\";s:11:\"description\";s:47:\"Controls the padding between flyout menu items.\";s:2:\"id\";s:24:\"flyout_menu_item_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_menu_item_padding\";s:7:\"element\";s:19:\".fusion-flyout-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}}}s:26:\"heading_secondary_top_menu\";a:6:{s:5:\"label\";s:18:\"Secondary Top Menu\";s:2:\"id\";s:26:\"heading_secondary_top_menu\";s:8:\"priority\";i:6;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:12:{s:22:\"no_secondary_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:227:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Secondary Top Menu Options are only available when using Header Layouts #2-5. Your current Header Layout does not utilize the secondary top menu.</div>\";s:2:\"id\";s:22:\"no_secondary_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}}s:23:\"topmenu_dropwdown_width\";a:9:{s:5:\"label\";s:29:\"Secondary Menu Dropdown Width\";s:11:\"description\";s:50:\"Controls the width of the secondary menu dropdown.\";s:2:\"id\";s:23:\"topmenu_dropwdown_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--topmenu_dropwdown_width\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"header_top_first_border_color\";a:8:{s:5:\"label\";s:28:\"Secondary Menu Divider Color\";s:11:\"description\";s:61:\"Controls the divider color of the first level secondary menu.\";s:2:\"id\";s:29:\"header_top_first_border_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_first_border_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"header_top_sub_bg_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Background Color\";s:11:\"description\";s:61:\"Controls the background color of the secondary menu dropdown.\";s:2:\"id\";s:23:\"header_top_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--header_top_sub_bg_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"header_top_menu_bg_hover_color\";a:8:{s:5:\"label\";s:46:\"Secondary Menu Dropdown Background Hover Color\";s:11:\"description\";s:67:\"Controls the background hover color of the secondary menu dropdown.\";s:2:\"id\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_top_menu_bg_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"header_top_menu_sub_sep_color\";a:8:{s:5:\"label\";s:39:\"Secondary Menu Dropdown Separator Color\";s:11:\"description\";s:68:\"Controls the color of the separators in the secondary menu dropdown.\";s:2:\"id\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_menu_sub_sep_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"secondary_menu_typography_info\";a:5:{s:5:\"label\";s:29:\"Secondary Top Menu Typography\";s:2:\"id\";s:30:\"secondary_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}}s:14:\"snav_font_size\";a:9:{s:5:\"label\";s:24:\"Secondary Menu Font Size\";s:11:\"description\";s:47:\"Controls the font size for secondary menu text.\";s:2:\"id\";s:14:\"snav_font_size\";s:7:\"default\";s:4:\"12px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--snav_font_size\";}}}s:11:\"sec_menu_lh\";a:9:{s:5:\"label\";s:26:\"Secondary Menu Line Height\";s:11:\"description\";s:44:\"Controls the line height for secondary menu.\";s:2:\"id\";s:11:\"sec_menu_lh\";s:7:\"default\";s:4:\"48px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:13:\"--sec_menu_lh\";}i:1;a:3:{s:4:\"name\";s:16:\"--top-bar-height\";s:7:\"element\";s:14:\".fusion-header\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:11:\"calc($ / 2)\";i:1;s:6:\"21.5px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"sec_menu_lh\";i:1;s:1:\">\";i:2;s:2:\"43\";}}}}}}}s:10:\"snav_color\";a:8:{s:5:\"label\";s:25:\"Secondary Menu Font Color\";s:11:\"description\";s:43:\"Controls the color for secondary menu text.\";s:2:\"id\";s:10:\"snav_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--snav_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_top_menu_sub_color\";a:8:{s:5:\"label\";s:34:\"Secondary Menu Dropdown Font Color\";s:11:\"description\";s:52:\"Controls the color for secondary menu dropdown text.\";s:2:\"id\";s:25:\"header_top_menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--header_top_menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"header_top_menu_sub_hover_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Font Hover Color\";s:11:\"description\";s:58:\"Controls the hover color for secondary menu dropdown text.\";s:2:\"id\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:33:\"--header_top_menu_sub_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:19:\"heading_mobile_menu\";a:6:{s:5:\"label\";s:11:\"Mobile Menu\";s:2:\"id\";s:19:\"heading_mobile_menu\";s:8:\"priority\";i:6;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:18:{s:25:\"no_responsive_mode_info_1\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:280:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please enable responsive mode. Mobile menus are only available when you\'re using the responsive mode. To enable it please go to the \"Responsive\" section and set the \"Responsive Design\" option to ON.</div>\";s:2:\"id\";s:25:\"no_responsive_mode_info_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"0\";}}}s:19:\"no_mobile_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Because of the design of your Header Layout #6, only a few options are available here. More options are available when using Header Layouts #1-5 or 7. The rest of the options for Header Layout #6 are on the Flyout Menu and Main Menu tab.</div>\";s:2:\"id\";s:19:\"no_mobile_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}}s:18:\"mobile_menu_design\";a:10:{s:5:\"label\";s:24:\"Mobile Menu Design Style\";s:11:\"description\";s:96:\"Controls the design of the mobile menu. Flyout design style only allows parent level menu items.\";s:2:\"id\";s:18:\"mobile_menu_design\";s:7:\"default\";s:7:\"classic\";s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:3:{s:7:\"classic\";s:7:\"Classic\";s:6:\"modern\";s:6:\"Modern\";s:6:\"flyout\";s:6:\"Flyout\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"mobile-menu-design-$\";s:12:\"remove_attrs\";a:3:{i:0;s:26:\"mobile-menu-design-classic\";i:1;s:25:\"mobile-menu-design-modern\";i:2;s:25:\"mobile-menu-design-flyout\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_design_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_design_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_design_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:28:\"mobile_menu_icons_top_margin\";a:9:{s:5:\"label\";s:28:\"Mobile Menu Icons Top Margin\";s:11:\"description\";s:82:\"Controls the top margin for the icons in the modern and flyout mobile menu design.\";s:2:\"id\";s:28:\"mobile_menu_icons_top_margin\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_icons_top_margin\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"mobile_menu_nav_height\";a:9:{s:5:\"label\";s:32:\"Mobile Menu Dropdown Item Height\";s:11:\"description\";s:47:\"Controls the height of each dropdown menu item.\";s:2:\"id\";s:22:\"mobile_menu_nav_height\";s:7:\"default\";s:2:\"42\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_menu_nav_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"mobile_nav_submenu_slideout\";a:8:{s:5:\"label\";s:31:\"Mobile Menu Dropdown Slide Outs\";s:11:\"description\";s:60:\"Turn on to allow dropdown sections to slide out when tapped.\";s:2:\"id\";s:27:\"mobile_nav_submenu_slideout\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:16:\"submenu_slideout\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionMobileMenu\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"mobile_menu_search\";a:7:{s:5:\"label\";s:37:\"Display Mobile Menu Search Icon/Field\";s:11:\"description\";s:60:\"Turn on to display the search icon/field in the mobile menu.\";s:2:\"id\";s:18:\"mobile_menu_search\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_search_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_search_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_search_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:29:\"mobile_menu_submenu_indicator\";a:7:{s:5:\"label\";s:30:\"Mobile Menu Sub-Menu Indicator\";s:11:\"description\";s:69:\"Turn on to display the mobile menu sub-menu indicator: &quot;-&quot;.\";s:2:\"id\";s:29:\"mobile_menu_submenu_indicator\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:25:\".fusion-mobile-nav-holder\";s:9:\"className\";s:33:\"fusion-mobile-menu-indicator-hide\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"mobile_header_bg_color\";a:9:{s:5:\"label\";s:30:\"Mobile Header Background Color\";s:11:\"description\";s:62:\"Controls the background color of the header on mobile devices.\";s:2:\"id\";s:22:\"mobile_header_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-mobile-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:0;}}}s:30:\"mobile_archive_header_bg_color\";a:8:{s:5:\"label\";s:38:\"Mobile Archive Header Background Color\";s:11:\"description\";s:75:\"Controls the background color of the archive page header on mobile devices.\";s:2:\"id\";s:30:\"mobile_archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"mobile_menu_background_color\";a:8:{s:5:\"label\";s:28:\"Mobile Menu Background Color\";s:11:\"description\";s:86:\"Controls the background color of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:28:\"mobile_menu_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"mobile_menu_hover_color\";a:8:{s:5:\"label\";s:34:\"Mobile Menu Background Hover Color\";s:11:\"description\";s:64:\"Controls the background hover color of the mobile menu dropdown.\";s:2:\"id\";s:23:\"mobile_menu_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--mobile_menu_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_border_color\";a:8:{s:5:\"label\";s:24:\"Mobile Menu Border Color\";s:11:\"description\";s:95:\"Controls the border and divider colors of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:24:\"mobile_menu_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_toggle_color\";a:8:{s:5:\"label\";s:24:\"Mobile Menu Toggle Color\";s:11:\"description\";s:50:\"Controls the color of the mobile menu toggle icon.\";s:2:\"id\";s:24:\"mobile_menu_toggle_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_toggle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"mobile_menu_typography_info\";a:5:{s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"mobile_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}}s:22:\"mobile_menu_typography\";a:11:{s:2:\"id\";s:22:\"mobile_menu_typography\";s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:54:\"These settings control the typography for mobile menu.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:25:\"text_transform_no_inherit\";b:1;s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:11:{i:0;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:22:\"mobile_menu_typography\";}}i:1;a:2:{s:4:\"name\";s:34:\"--mobile_menu_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:3:{s:4:\"name\";s:39:\"--mobile_menu_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:30:\"--mobile_menu_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:2:{s:4:\"name\";s:35:\"--mobile_menu_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:7;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";}i:8;a:2:{s:4:\"name\";s:39:\"--mobile_menu_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:9;a:3:{s:4:\"name\";s:45:\"--mobile_menu_typography-font-size-30-or-24px\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"30px\";i:1;s:4:\"24px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}i:10;a:3:{s:4:\"name\";s:47:\"--mobile_menu_typography-font-size-open-submenu\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"20px\";i:1;s:45:\"var(--mobile_menu_typography-font-size, 13px)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"30\";}}}}}}}s:28:\"mobile_menu_font_hover_color\";a:8:{s:5:\"label\";s:23:\"Mobile Menu Hover Color\";s:11:\"description\";s:99:\"Controls the hover color of the mobile menu item. Also, used to highlight current mobile menu item.\";s:2:\"id\";s:28:\"mobile_menu_font_hover_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_font_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"mobile_menu_text_align\";a:9:{s:5:\"label\";s:22:\"Mobile Menu Text Align\";s:11:\"description\";s:40:\"Controls the mobile menu text alignment.\";s:2:\"id\";s:22:\"mobile_menu_text_align\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:6:{s:7:\"element\";s:28:\"nav.fusion-mobile-nav-holder\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"fusion-mobile-menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:34:\"fusion-mobile-menu-text-align-left\";i:1;s:36:\"fusion-mobile-menu-text-align-center\";i:2;s:35:\"fusion-mobile-menu-text-align-right\";}s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:1:{s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:18:\"mobile_menu_design\";i:1;s:3:\"!==\";i:2;s:6:\"flyout\";}}}}}}}}}s:20:\"mega_menu_subsection\";a:4:{s:5:\"label\";s:16:\"Legacy Mega Menu\";s:2:\"id\";s:20:\"mega_menu_subsection\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:9:{s:19:\"header_v6_used_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:219:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Legacy Mega Menu Options are only available when using Header Layouts #1-5. Your current Header Layout #6 does not utilize the mega menu.</div>\";s:2:\"id\";s:19:\"header_v6_used_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}}}s:18:\"legacy_mega_notice\";a:4:{s:2:\"id\";s:18:\"legacy_mega_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:340:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant mega menu setup, we recommend using the library mega menus. To create a Mega Menu, visit the <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-library\" target=\"_blank\">Avada Library</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:22:\"megamenu_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:185:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Legacy Mega Menu is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:22:\"megamenu_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:14:\"megamenu_width\";a:10:{s:5:\"label\";s:34:\"Legacy Mega Menu Wrapper Max Width\";s:11:\"description\";s:139:\"Controls the max width of the legacy mega menu. On boxed side header layouts, &quot;Viewport Width&quot; will match &quot;Site Width&quot;.\";s:2:\"id\";s:14:\"megamenu_width\";s:4:\"type\";s:6:\"select\";s:7:\"default\";s:10:\"site_width\";s:7:\"choices\";a:3:{s:10:\"site_width\";s:10:\"Site Width\";s:14:\"viewport_width\";s:10:\"100% Width\";s:12:\"custom_width\";s:12:\"Custom Width\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:19:\"megamenu_base_width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:18:\"megamenu_max_width\";a:8:{s:5:\"label\";s:26:\"Legacy Mega Menu Max-Width\";s:11:\"description\";s:47:\"Controls the max width of the legacy mega menu.\";s:2:\"id\";s:18:\"megamenu_max_width\";s:7:\"default\";s:4:\"1200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"4096\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:12:\"custom_width\";}}s:15:\"partial_refresh\";a:3:{s:44:\"megamenu_max_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"megamenu_max_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"megamenu_max_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:31:\"megamenu_interior_content_width\";a:8:{s:5:\"label\";s:39:\"Legacy Mega Menu Interior Content Width\";s:11:\"description\";s:103:\"For full width mega menus select if the interior menu content is contained to site width or 100% width.\";s:2:\"id\";s:31:\"megamenu_interior_content_width\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:14:\"viewport_width\";s:7:\"choices\";a:2:{s:10:\"site_width\";s:10:\"Site Width\";s:14:\"viewport_width\";s:10:\"100% Width\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:14:\"viewport_width\";}}s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"megamenu_title_size\";a:8:{s:5:\"label\";s:34:\"Legacy Mega Menu Column Title Size\";s:11:\"description\";s:51:\"Controls the font size for mega menu column titles.\";s:2:\"id\";s:19:\"megamenu_title_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--megamenu_title_size\";s:7:\"element\";s:22:\".fusion-megamenu-title\";}}}s:30:\"megamenu_item_vertical_padding\";a:8:{s:5:\"label\";s:38:\"Legacy Mega Menu Dropdown Item Padding\";s:11:\"description\";s:61:\"Controls the top/bottom padding for mega menu dropdown items.\";s:2:\"id\";s:30:\"megamenu_item_vertical_padding\";s:7:\"default\";s:1:\"7\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--megamenu_item_vertical_padding\";s:7:\"element\";s:24:\".fusion-megamenu-submenu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"megamenu_item_display_divider\";a:7:{s:5:\"label\";s:29:\"Legacy Mega Menu Item Divider\";s:11:\"description\";s:62:\"Turn on to display a divider between mega menu dropdown items.\";s:2:\"id\";s:29:\"megamenu_item_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-megamenu-item-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:21:\"menu_icons_subsection\";a:5:{s:5:\"label\";s:15:\"Main Menu Icons\";s:2:\"id\";s:21:\"menu_icons_subsection\";s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:6:{s:15:\"menu_icons_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:381:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Icons are available for both the main and dropdown menus. However, the options below only apply to the main menu. Dropdown menu icons do not use these options below, they follow the dropdown font size and color. The icons themselves can be added to your menu items in the Appearance > Menus section.</div>\";s:2:\"id\";s:15:\"menu_icons_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"menu_icon_position\";a:8:{s:5:\"label\";s:23:\"Main Menu Icon Position\";s:11:\"description\";s:37:\"Controls the main menu icon position.\";s:2:\"id\";s:18:\"menu_icon_position\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:4:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";}s:4:\"type\";s:6:\"select\";s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:26:\"avada-menu-icon-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:28:\"avada-menu-icon-position-top\";i:1;s:30:\"avada-menu-icon-position-right\";i:2;s:31:\"avada-menu-icon-position-bottom\";i:3;s:29:\"avada-menu-icon-position-left\";}}}s:15:\"partial_refresh\";a:3:{s:44:\"menu_icon_position_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"menu_icon_position_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"menu_icon_position_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:14:\"menu_icon_size\";a:7:{s:5:\"label\";s:19:\"Main Menu Icon Size\";s:11:\"description\";s:46:\"Controls the size of the top-level menu icons.\";s:2:\"id\";s:14:\"menu_icon_size\";s:7:\"default\";s:2:\"14\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_icon_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"menu_icon_color\";a:6:{s:5:\"label\";s:20:\"Main Menu Icon Color\";s:11:\"description\";s:52:\"Controls the color of the top-level main menu icons.\";s:2:\"id\";s:15:\"menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--menu_icon_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"menu_icon_hover_color\";a:6:{s:5:\"label\";s:26:\"Main Menu Icon Hover Color\";s:11:\"description\";s:58:\"Controls the hover color of the top-level main menu icons.\";s:2:\"id\";s:21:\"menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--menu_icon_hover_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_thumbnail_size\";a:8:{s:5:\"label\";s:24:\"Mega Menu Thumbnail Size\";s:11:\"description\";s:149:\"Controls the width and height of the top-level mega menu thumbnails. Use &quot;auto&quot; for automatic resizing if you added either width or height.\";s:2:\"id\";s:19:\"menu_thumbnail_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:27:\"--menu_thumbnail_size-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:17:\".fusion-main-menu\";}i:1;a:3:{s:4:\"name\";s:28:\"--menu_thumbnail_size-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}}}}}s:4:\"logo\";a:7:{s:5:\"label\";s:4:\"Logo\";s:2:\"id\";s:12:\"heading_logo\";s:8:\"is_panel\";b:1;s:4:\"logo\";i:5;s:4:\"icon\";s:17:\"el-icon-plus-sign\";s:8:\"alt_icon\";s:19:\"fusiona-plus-circle\";s:6:\"fields\";a:2:{s:20:\"logo_options_wrapper\";a:7:{s:5:\"label\";s:4:\"Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"logo_options_wrapper\";s:4:\"icon\";b:1;s:8:\"position\";s:5:\"start\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:14:{s:14:\"logo_alignment\";a:9:{s:5:\"label\";s:14:\"Logo Alignment\";s:11:\"description\";s:88:\"Controls the logo alignment. &quot;Center&quot; only works on Header 5 and Side Headers.\";s:2:\"id\";s:14:\"logo_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--logo_alignment\";}}s:6:\"output\";a:5:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:14:\"logo_alignment\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"mobile-logo-pos-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"mobile-logo-pos-left\";i:1;s:22:\"mobile-logo-pos-center\";i:2;s:21:\"mobile-logo-pos-right\";}}i:3;a:5:{s:7:\"element\";s:41:\".side-header-wrapper .side-header-content\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:4;a:5:{s:7:\"element\";s:48:\".side-header-wrapper .fusion-main-menu-container\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:18:\"fusion-logo-menu-$\";s:12:\"remove_attrs\";a:3:{i:0;s:21:\"fusion-logo-menu-left\";i:1;s:23:\"fusion-logo-menu-center\";i:2;s:22:\"fusion-logo-menu-right\";}}}}s:11:\"logo_margin\";a:9:{s:5:\"label\";s:12:\"Logo Margins\";s:11:\"description\";s:56:\"Controls the top/right/bottom/left margins for the logo.\";s:2:\"id\";s:11:\"logo_margin\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"34px\";s:6:\"bottom\";s:4:\"34px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:4:{i:0;a:4:{s:4:\"name\";s:17:\"--logo_margin-top\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:1;a:4:{s:4:\"name\";s:20:\"--logo_margin-bottom\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:2;a:4:{s:4:\"name\";s:18:\"--logo_margin-left\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:4:\"left\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:3;a:4:{s:4:\"name\";s:19:\"--logo_margin-right\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:5:\"right\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}}s:6:\"output\";a:6:{i:0;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:3:\"top\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:15:\"data-margin-top\";}i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:6:\"bottom\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:18:\"data-margin-bottom\";}i:3;a:3:{s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"logo_margin_bottom\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:4:\"left\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:16:\"data-margin-left\";}i:5;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:5:\"right\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:17:\"data-margin-right\";}}}s:15:\"logo_background\";a:9:{s:5:\"label\";s:15:\"Logo Background\";s:11:\"description\";s:53:\"Turn on to display a colored background for the logo.\";s:2:\"id\";s:15:\"logo_background\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:28:\"fusion-gutter-and-and-or-and\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:4;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:36:\".fusion-logo,.fusion-logo-background\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:25:\"avada-has-logo-background\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:21:\"logo_background_color\";a:8:{s:5:\"label\";s:21:\"Logo Background Color\";s:11:\"description\";s:43:\"Controls the background color for the logo.\";s:2:\"id\";s:21:\"logo_background_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:36:\"fusion-gutter-and-and-and-or-and-and\";s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:4;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:5;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:6;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--logo_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"logo_custom_link\";a:6:{s:5:\"label\";s:20:\"Logo Custom Link URL\";s:11:\"description\";s:95:\"Enter a custom URL the site logo should link to. Leave empty to let logo link to the home page.\";s:2:\"id\";s:16:\"logo_custom_link\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:17:\".fusion-logo-link\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:4:\"href\";s:13:\"value_pattern\";s:1:\"$\";}}}s:23:\"default_logo_info_title\";a:5:{s:5:\"label\";s:12:\"Default Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"default_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:4:\"logo\";a:9:{s:5:\"label\";s:12:\"Default Logo\";s:11:\"description\";s:35:\"Select an image file for your logo.\";s:2:\"id\";s:4:\"logo\";s:7:\"default\";s:78:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/logo.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:9:\"Edit Logo\";s:4:\"icon\";s:19:\"fusiona-plus-circle\";s:5:\"order\";i:2;}}}}s:11:\"logo_retina\";a:9:{s:5:\"label\";s:19:\"Retina Default Logo\";s:11:\"description\";s:107:\"Select an image file for the retina version of the logo. It should be exactly 2x the size of the main logo.\";s:2:\"id\";s:11:\"logo_retina\";s:7:\"default\";s:81:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/logo@2x.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:\"partial_refresh\";a:1:{s:27:\"partial_refresh_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"sticky_logo_info_title\";a:5:{s:5:\"label\";s:18:\"Sticky Header Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"sticky_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:18:\"sticky_header_logo\";a:9:{s:5:\"label\";s:18:\"Sticky Header Logo\";s:11:\"description\";s:49:\"Select an image file for your sticky header logo.\";s:2:\"id\";s:18:\"sticky_header_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:34:\"partial_refresh_sticky_header_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:22:\".fusion-logo-alignment\";s:9:\"className\";s:20:\"fusion-sticky-logo-1\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"sticky_header_logo_retina\";a:9:{s:5:\"label\";s:25:\"Retina Sticky Header Logo\";s:11:\"description\";s:130:\"Select an image file for the retina version of the sticky header logo. It should be exactly 2x the size of the sticky header logo.\";s:2:\"id\";s:25:\"sticky_header_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:\"partial_refresh\";a:1:{s:41:\"partial_refresh_sticky_header_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"mobile_logo_info_title\";a:5:{s:5:\"label\";s:11:\"Mobile Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"mobile_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:11:\"mobile_logo\";a:8:{s:5:\"label\";s:11:\"Mobile Logo\";s:11:\"description\";s:42:\"Select an image file for your mobile logo.\";s:2:\"id\";s:11:\"mobile_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:27:\"partial_refresh_mobile_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:18:\"mobile_logo_retina\";a:9:{s:5:\"label\";s:18:\"Retina Mobile Logo\";s:11:\"description\";s:116:\"Select an image file for the retina version of the mobile logo. It should be exactly 2x the size of the mobile logo.\";s:2:\"id\";s:18:\"mobile_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:\"partial_refresh\";a:1:{s:34:\"partial_refresh_mobile_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}}}s:8:\"favicons\";a:7:{s:5:\"label\";s:7:\"Favicon\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:8:\"favicons\";s:4:\"icon\";b:1;s:8:\"position\";s:5:\"start\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:8:\"fav_icon\";a:7:{s:5:\"label\";s:7:\"Favicon\";s:11:\"description\";s:55:\"Favicon for your website at 32px x 32px or 64px x 64px.\";s:2:\"id\";s:8:\"fav_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:20:\"fav_icon_apple_touch\";a:7:{s:5:\"label\";s:16:\"Apple Touch Icon\";s:11:\"description\";s:47:\"Favicon for Apple iOS devices at 180px x 180px.\";s:2:\"id\";s:20:\"fav_icon_apple_touch\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"fav_icon_android\";a:7:{s:5:\"label\";s:20:\"Android Devices Icon\";s:11:\"description\";s:51:\"Favicon for Android-based devices at 192px x 192px.\";s:2:\"id\";s:16:\"fav_icon_android\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:13:\"fav_icon_edge\";a:7:{s:5:\"label\";s:19:\"Microsoft Edge Icon\";s:11:\"description\";s:53:\"Favicon for Microsoft Edge browsers at 270px x 270px.\";s:2:\"id\";s:13:\"fav_icon_edge\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}}}}}s:14:\"page_title_bar\";a:6:{s:5:\"label\";s:14:\"Page Title Bar\";s:2:\"id\";s:22:\"heading_page_title_bar\";s:8:\"priority\";i:7;s:4:\"icon\";s:18:\"el-icon-adjust-alt\";s:8:\"alt_icon\";s:18:\"fusiona-page_title\";s:6:\"fields\";a:23:{s:39:\"page_title_bar_template_override_notice\";a:5:{s:2:\"id\";s:39:\"page_title_bar_template_override_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:334:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Page Title Bar override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"custom\";}s:30:\"page_title_bar_template_notice\";a:4:{s:2:\"id\";s:30:\"page_title_bar_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:345:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Page Title Bar Builder. To create a custom Page Title Bar Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"page_title_bar\";a:9:{s:5:\"label\";s:14:\"Page Title Bar\";s:11:\"description\";s:41:\"Controls how the page title bar displays.\";s:2:\"id\";s:14:\"page_title_bar\";s:7:\"default\";s:4:\"hide\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:20:\"Show Bar and Content\";s:12:\"content_only\";s:17:\"Show Content Only\";s:4:\"hide\";s:4:\"Hide\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:38:\"page_title_bar_contents_page_title_bar\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"avada-has-titlebar-$\";s:12:\"remove_attrs\";a:3:{i:0;s:23:\"avada-has-titlebar-hide\";i:1;s:34:\"avada-has-titlebar-bar_and_content\";i:2;s:31:\"avada-has-titlebar-content_only\";}}}}s:17:\"page_title_bar_bs\";a:9:{s:5:\"label\";s:40:\"Breadcrumbs / Search Bar Content Display\";s:11:\"description\";s:313:\"Controls what displays in the breadcrumbs area.   <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"page_title_bar_bs\";s:7:\"default\";s:11:\"breadcrumbs\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"none\";s:4:\"None\";s:11:\"breadcrumbs\";s:11:\"Breadcrumbs\";s:10:\"search_box\";s:10:\"Search Bar\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:19:\"page_title_bar_text\";a:8:{s:5:\"label\";s:23:\"Page Title Bar Headings\";s:11:\"description\";s:312:\"Turn on to display the page title bar headings.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"page_title_bar_text\";s:7:\"default\";s:1:\"1\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_page_title_bar_text\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:28:\"page_title_bar_styling_title\";a:6:{s:5:\"label\";s:22:\"Page Title Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"page_title_bar_styling_title\";s:6:\"hidden\";b:0;s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:20:\"page_title_100_width\";a:8:{s:5:\"label\";s:25:\"Page Title Bar 100% Width\";s:11:\"description\";s:389:\"Turn on to have the page title bar area display at 100% width according to the viewport size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_100_width\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-has-pagetitle-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_height\";a:8:{s:5:\"label\";s:21:\"Page Title Bar Height\";s:11:\"description\";s:318:\"Controls the height of the page title bar on desktop.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"page_title_height\";s:7:\"default\";s:5:\"300px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--page_title_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:24:\"page_title_mobile_height\";a:9:{s:5:\"label\";s:28:\"Page Title Bar Mobile Height\";s:11:\"description\";s:317:\"Controls the height of the page title bar on mobile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"page_title_mobile_height\";s:7:\"default\";s:5:\"240px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--page_title_mobile_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;a:2:{s:7:\"setting\";s:20:\"page_title_font_size\";s:8:\"addUnits\";b:1;}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"auto\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:39:\"avada-has-page-title-mobile-height-auto\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"page_title_bg_color\";a:8:{s:5:\"label\";s:31:\"Page Title Bar Background Color\";s:11:\"description\";s:317:\"Controls the background color of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"page_title_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--page_title_bg_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"page_title_border_color\";a:9:{s:5:\"label\";s:28:\"Page Title Bar Borders Color\";s:11:\"description\";s:314:\"Controls the border colors of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:23:\"page_title_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--page_title_border_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:4:\"none\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:23:\"page_title_border_color\";}}}}s:20:\"page_title_font_size\";a:9:{s:5:\"label\";s:32:\"Page Title Bar Heading Font Size\";s:11:\"description\";s:324:\"Controls the font size for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_font_size\";s:7:\"default\";s:4:\"54px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--page_title_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:22:\"page_title_line_height\";a:9:{s:5:\"label\";s:34:\"Page Title Bar Heading Line Height\";s:11:\"description\";s:326:\"Controls the line height for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"page_title_line_height\";s:7:\"default\";s:6:\"normal\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--page_title_line_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:16:\"page_title_color\";a:8:{s:5:\"label\";s:33:\"Page Title Bar Heading Font Color\";s:11:\"description\";s:324:\"Controls the text color of the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"page_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--page_title_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"page_title_subheader_font_size\";a:9:{s:5:\"label\";s:35:\"Page Title Bar Subheading Font Size\";s:11:\"description\";s:321:\"Controls the font size for the page titlebar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:30:\"page_title_subheader_font_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--page_title_subheader_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:26:\"page_title_subheader_color\";a:8:{s:5:\"label\";s:36:\"Page Title Bar Subheading Font Color\";s:11:\"description\";s:322:\"Controls the text color of the page title bar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"page_title_subheader_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--page_title_subheader_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"page_title_alignment\";a:9:{s:5:\"label\";s:29:\"Page Title Bar Text Alignment\";s:11:\"description\";s:430:\"Choose the title and subhead text alignment. Breadcrumbs / search field will be on opposite side for left / right alignment and below the title for center alignment.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_alignment\";s:7:\"default\";s:6:\"center\";s:6:\"hidden\";b:0;s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_page_title_alignment\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:29:\"page_title_bar_bg_image_title\";a:6:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"page_title_bar_bg_image_title\";s:4:\"icon\";b:1;s:6:\"hidden\";b:0;s:4:\"type\";s:4:\"info\";}s:13:\"page_title_bg\";a:9:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:380:\"Select an image for the page title bar background. If left empty, the page title bar background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:13:\"page_title_bg\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:15:\"--page_title_bg\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:20:\"page_title_bg_retina\";a:10:{s:5:\"label\";s:38:\"Retina Page Title Bar Background Image\";s:11:\"description\";s:404:\"Select an image for the retina version of the page title bar background. It should be exactly 2x the size of the page title bar background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_bg_retina\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:22:\"--page_title_bg_retina\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:20:\"var(--page_title_bg)\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:38:\"avada-has-pagetitlebar-retina-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"page_title_bg_full\";a:8:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:382:\"Turn on to have the page title bar background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:18:\"page_title_bg_full\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-pagetitle-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"page_title_bg_parallax\";a:8:{s:5:\"label\";s:25:\"Parallax Background Image\";s:11:\"description\";s:332:\"Turn on to use a parallax scrolling effect on the background image.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"page_title_bg_parallax\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-pagetitle-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_fading\";a:8:{s:5:\"label\";s:16:\"Fading Animation\";s:11:\"description\";s:316:\"Turn on to have the page title text fade on scroll.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaFadeVars\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"trigger\";a:1:{i:0;s:27:\"avadaTriggerPageTitleFading\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:11:\"breadcrumbs\";a:6:{s:5:\"label\";s:11:\"Breadcrumbs\";s:2:\"id\";s:19:\"heading_breadcrumbs\";s:8:\"priority\";i:7;s:4:\"icon\";s:21:\"el-icon-chevron-right\";s:8:\"alt_icon\";s:18:\"fusiona-breadcrumb\";s:6:\"fields\";a:9:{s:17:\"breadcrumb_mobile\";a:7:{s:5:\"label\";s:29:\"Breadcrumbs on Mobile Devices\";s:11:\"description\";s:314:\"Turn on to display breadcrumbs on mobile devices.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"breadcrumb_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-breadcrumb-mobile-hidden\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"breacrumb_prefix\";a:7:{s:5:\"label\";s:18:\"Breadcrumbs Prefix\";s:11:\"description\";s:310:\"Controls the text before the breadcrumb menu.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"breacrumb_prefix\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:40:\"page_title_bar_contents_breacrumb_prefix\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:20:\"breadcrumb_separator\";a:7:{s:5:\"label\";s:21:\"Breadcrumbs Separator\";s:11:\"description\";s:320:\"Controls the type of separator between each breadcrumb.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"breadcrumb_separator\";s:7:\"default\";s:1:\"/\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breadcrumb_separator\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:21:\"breadcrumbs_font_size\";a:8:{s:5:\"label\";s:21:\"Breadcrumbs Font Size\";s:11:\"description\";s:313:\"Controls the font size for the breadcrumbs text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:21:\"breadcrumbs_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--breadcrumbs_font_size\";s:7:\"element\";s:43:\".fusion-page-title-bar, .fusion-breadcrumbs\";}}}s:22:\"breadcrumbs_text_color\";a:7:{s:5:\"label\";s:22:\"Breadcrumbs Text Color\";s:11:\"description\";s:313:\"Controls the text color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"breadcrumbs_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--breadcrumbs_text_color\";s:7:\"element\";s:43:\".fusion-page-title-bar, .fusion-breadcrumbs\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"breadcrumbs_text_hover_color\";a:7:{s:5:\"label\";s:28:\"Breadcrumbs Text Hover Color\";s:11:\"description\";s:319:\"Controls the text hover color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:28:\"breadcrumbs_text_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--breadcrumbs_text_hover_color\";s:7:\"element\";s:43:\".fusion-page-title-bar, .fusion-breadcrumbs\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"breadcrumb_show_categories\";a:7:{s:5:\"label\";s:36:\"Post Categories/Terms on Breadcrumbs\";s:11:\"description\";s:334:\"Turn on to display the post categories/terms in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"breadcrumb_show_categories\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:50:\"page_title_bar_contents_breadcrumb_show_categories\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:33:\"breadcrumb_show_post_type_archive\";a:7:{s:5:\"label\";s:33:\"Post Type Archives on Breadcrumbs\";s:11:\"description\";s:327:\"Turn on to display post type archives in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:33:\"breadcrumb_show_post_type_archive\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:20:\"breadcrumb_show_leaf\";a:7:{s:5:\"label\";s:24:\"Post Name on Breadcrumbs\";s:11:\"description\";s:322:\"Turn on to display the post name in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"breadcrumb_show_leaf\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breadcrumb_show_leaf\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}}}s:11:\"sliding_bar\";a:6:{s:5:\"label\";s:11:\"Sliding Bar\";s:2:\"id\";s:19:\"heading_sliding_bar\";s:8:\"priority\";i:8;s:4:\"icon\";s:20:\"el-icon-chevron-down\";s:8:\"alt_icon\";s:18:\"fusiona-arrow-down\";s:6:\"fields\";a:22:{s:25:\"slidingbar_widgets_notice\";a:4:{s:2:\"id\";s:25:\"slidingbar_widgets_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:345:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant sliding bar setup, we recommend using the Avada Off Canvas Builder. To create an Off Canvas, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-off-canvas\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:18:\"slidingbar_widgets\";a:8:{s:5:\"label\";s:23:\"Sliding Bar on Desktops\";s:11:\"description\";s:47:\"Turn on to display the sliding bar on desktops.\";s:2:\"id\";s:18:\"slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:24:\".fusion-sliding-bar-area\";}s:9:\"shortcuts\";a:2:{i:0;a:2:{s:10:\"aria_label\";s:16:\"Edit Sliding Bar\";s:4:\"icon\";s:18:\"fusiona-arrow-down\";}i:1;a:2:{s:10:\"aria_label\";s:24:\"Edit Sliding Bar Widgets\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";}}}s:15:\"partial_refresh\";a:2:{s:38:\"sliding_bar_content_slidingbar_widgets\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:33:\"header_content_slidingbar_widgets\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-slidingbar-widgets\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"mobile_slidingbar_widgets\";a:7:{s:5:\"label\";s:21:\"Sliding Bar On Mobile\";s:11:\"description\";s:258:\"Turn on to display the sliding bar on mobiles. <strong>IMPORTANT:</strong> Due to mobile screen sizes and overlapping issues, when this option is enabled the triangle toggle style in the top right position will be forced for square and circle desktop styles.\";s:2:\"id\";s:25:\"mobile_slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"no-mobile-slidingbar\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"slidingbar_open_on_load\";a:7:{s:5:\"label\";s:29:\"Sliding Bar Open On Page Load\";s:11:\"description\";s:57:\"Turn on to have the sliding bar open when the page loads.\";s:2:\"id\";s:23:\"slidingbar_open_on_load\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"slidingbar_position\";a:9:{s:5:\"label\";s:20:\"Sliding Bar Position\";s:11:\"description\";s:93:\"Controls the position of the sliding bar to be in the top, right, bottom or left of the site.\";s:2:\"id\";s:19:\"slidingbar_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:39:\"sliding_bar_content_slidingbar_position\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"avada-has-slidingbar-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-slidingbar-position-top\";i:1;s:35:\"avada-has-slidingbar-position-right\";i:2;s:36:\"avada-has-slidingbar-position-bottom\";i:3;s:34:\"avada-has-slidingbar-position-left\";}}}}s:16:\"slidingbar_width\";a:8:{s:5:\"label\";s:17:\"Sliding Bar Width\";s:11:\"description\";s:60:\"Controls the width of the sliding bar on left/right layouts.\";s:2:\"id\";s:16:\"slidingbar_width\";s:7:\"default\";s:5:\"300px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:18:\"--slidingbar_width\";}i:1;a:2:{s:4:\"name\";s:32:\"--slidingbar_width-percent_to_vw\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-slidingbar-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"slidingbar_sticky\";a:7:{s:5:\"label\";s:18:\"Sticky Sliding Bar\";s:11:\"description\";s:39:\"Turn on to enable a sticky sliding bar.\";s:2:\"id\";s:17:\"slidingbar_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:5:\"right\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"left\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"slidingbar_widgets_columns\";a:8:{s:5:\"label\";s:29:\"Number of Sliding Bar Columns\";s:11:\"description\";s:50:\"Controls the number of columns in the sliding bar.\";s:2:\"id\";s:26:\"slidingbar_widgets_columns\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:46:\"sliding_bar_content_slidingbar_widgets_columns\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:27:\"slidingbar_column_alignment\";a:8:{s:5:\"label\";s:28:\"Sliding Bar Column Alignment\";s:11:\"description\";s:132:\"Allows your sliding bar columns to be stacked (one above the other) or floated (side by side) when using the left or right position.\";s:2:\"id\";s:27:\"slidingbar_column_alignment\";s:7:\"default\";s:7:\"stacked\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"stacked\";s:7:\"Stacked\";s:7:\"floated\";s:7:\"Floated\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:15:\"partial_refresh\";a:1:{s:47:\"sliding_bar_content_slidingbar_column_alignment\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:26:\"slidingbar_content_padding\";a:8:{s:5:\"label\";s:27:\"Sliding Bar Content Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the sliding bar area.\";s:2:\"id\";s:26:\"slidingbar_content_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:32:\"--slidingbar_content_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:35:\"--slidingbar_content_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:33:\"--slidingbar_content_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:34:\"--slidingbar_content_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:24:\"slidingbar_content_align\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Content Alignment\";s:11:\"description\";s:39:\"Controls sliding bar content alignment.\";s:2:\"id\";s:24:\"slidingbar_content_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_content_align\";s:7:\"element\";s:19:\".fusion-sliding-bar\";}}}s:25:\"sliding_bar_styling_title\";a:5:{s:5:\"label\";s:19:\"Sliding Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"sliding_bar_styling_title\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:23:\"slidingbar_toggle_style\";a:10:{s:5:\"label\";s:24:\"Sliding Bar Toggle Style\";s:11:\"description\";s:50:\"Controls the appearance of the sliding bar toggle.\";s:2:\"id\";s:23:\"slidingbar_toggle_style\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:4:{s:8:\"triangle\";s:8:\"Triangle\";s:9:\"rectangle\";s:9:\"Rectangle\";s:6:\"circle\";s:6:\"Circle\";s:4:\"menu\";s:14:\"Main Menu Icon\";}s:5:\"icons\";a:4:{s:8:\"triangle\";s:210:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><g transform=\"translate(-54.320053,-196.29156)\"><path d=\"m 54.320053,196.29156 h 24 v 24 z\" style=\"stroke-width:0\" /></g></svg>\";s:9:\"rectangle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 0h-24v24h24v-24z\"/></svg>\";s:6:\"circle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><circle cx=\"12\" cy=\"12\" r=\"12\"/></svg>\";s:4:\"menu\";s:176:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z\"/></svg><span class=\"screen-reader-text\">\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:43:\"sliding_bar_content_slidingbar_toggle_style\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:49:\"slidingbar_toggle_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:49:\"slidingbar_toggle_style_header_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-slidingbar-toggle-style--$\";s:12:\"remove_attrs\";a:4:{i:0;s:38:\"avada-slidingbar-toggle-style-triangle\";i:1;s:39:\"avada-slidingbar-toggle-style-rectangle\";i:2;s:36:\"avada-slidingbar-toggle-style-circle\";i:3;s:34:\"avada-slidingbar-toggle-style-menu\";}}}}s:19:\"slidingbar_bg_color\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Background Color\";s:11:\"description\";s:49:\"Controls the background color of the sliding bar.\";s:2:\"id\";s:19:\"slidingbar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--slidingbar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"slidingbar_divider_color\";a:7:{s:5:\"label\";s:30:\"Sliding Bar Item Divider Color\";s:11:\"description\";s:46:\"Controls the divider color in the sliding bar.\";s:2:\"id\";s:24:\"slidingbar_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"slidingbar_toggle_icon_color\";a:7:{s:5:\"label\";s:35:\"Sliding Bar Toggle/Close Icon Color\";s:11:\"description\";s:118:\"Controls the color of the sliding bar toggle icon and of the close icon when using the main menu icon as toggle style.\";s:2:\"id\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--slidingbar_toggle_icon_color\";s:7:\"element\";s:25:\".fusion-sb-toggle-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"slidingbar_font_size\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the sliding bar heading text.\";s:2:\"id\";s:20:\"slidingbar_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--slidingbar_font_size\";s:7:\"element\";s:11:\"#slidingbar\";}}}s:25:\"slidingbar_headings_color\";a:7:{s:5:\"label\";s:26:\"Sliding Bar Headings Color\";s:11:\"description\";s:56:\"Controls the text color of the sliding bar heading font.\";s:2:\"id\";s:25:\"slidingbar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--slidingbar_headings_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_text_color\";a:7:{s:5:\"label\";s:22:\"Sliding Bar Font Color\";s:11:\"description\";s:48:\"Controls the text color of the sliding bar font.\";s:2:\"id\";s:21:\"slidingbar_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--slidingbar_text_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_link_color\";a:7:{s:5:\"label\";s:22:\"Sliding Bar Link Color\";s:11:\"description\";s:53:\"Controls the text color of the sliding bar link font.\";s:2:\"id\";s:21:\"slidingbar_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 14%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--slidingbar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"slidingbar_link_color_hover\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Link Hover Color\";s:11:\"description\";s:59:\"Controls the text hover color of the sliding bar link font.\";s:2:\"id\";s:27:\"slidingbar_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--slidingbar_link_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"slidingbar_border\";a:7:{s:5:\"label\";s:21:\"Border on Sliding Bar\";s:11:\"description\";s:82:\"Turn on to display a border line on the sliding bar which makes it stand out more.\";s:2:\"id\";s:17:\"slidingbar_border\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:6:\"footer\";a:7:{s:5:\"label\";s:6:\"Footer\";s:2:\"id\";s:14:\"heading_footer\";s:8:\"priority\";i:9;s:4:\"icon\";s:18:\"el-icon-arrow-down\";s:8:\"alt_icon\";s:14:\"fusiona-footer\";s:5:\"class\";s:22:\"hidden-section-heading\";s:6:\"fields\";a:4:{s:39:\"footer_options_template_override_notice\";a:5:{s:2:\"id\";s:39:\"footer_options_template_override_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Footer override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";s:6:\"hidden\";b:0;}s:33:\"footer_content_options_subsection\";a:6:{s:5:\"label\";s:14:\"Footer Content\";s:2:\"id\";s:33:\"footer_content_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:8:{s:38:\"footer_options_template_content_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"footer_widgets\";a:7:{s:5:\"label\";s:14:\"Footer Widgets\";s:11:\"description\";s:34:\"Turn on to display footer widgets.\";s:2:\"id\";s:14:\"footer_widgets\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"footer_content_footer_widgets\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:14:\".fusion-footer\";}s:9:\"shortcuts\";a:2:{i:0;a:4:{s:10:\"aria_label\";s:11:\"Edit Footer\";s:4:\"icon\";s:14:\"fusiona-footer\";s:11:\"open_parent\";b:1;s:35:\"link_to_template_if_override_active\";s:6:\"footer\";}i:1;a:4:{s:10:\"aria_label\";s:19:\"Edit Footer Widgets\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:6:\"footer\";}}}}s:22:\"footer_widgets_columns\";a:8:{s:5:\"label\";s:24:\"Number of Footer Columns\";s:11:\"description\";s:310:\"Controls the number of columns in the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_columns\";s:7:\"default\";s:1:\"4\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_widgets_columns\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_widgets_center_content\";a:7:{s:5:\"label\";s:29:\"Center Footer Widgets Content\";s:11:\"description\";s:309:\"Turn on to center the footer widget content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:29:\"footer_widgets_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:45:\".fusion-footer-widget-area.fusion-widget-area\";s:9:\"className\";s:32:\"fusion-footer-widget-area-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"footer_special_effects\";a:8:{s:5:\"label\";s:22:\"Footer Special Effects\";s:11:\"description\";s:44:\"Select a special effect for the footer area.\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:5:\"radio\";s:7:\"choices\";a:5:{s:4:\"none\";s:4:\"None\";s:22:\"footer_parallax_effect\";a:2:{i:0;s:22:\"Footer Parallax Effect\";i:1;s:59:\"This enables a fixed footer with parallax scrolling effect.\";}s:23:\"footer_area_bg_parallax\";a:2:{i:0;s:25:\"Parallax Background Image\";i:1;s:125:\"This enables a parallax effect on the background image selected in &quot;Background Image For Footer Widget Area&quot; field.\";}s:13:\"footer_sticky\";a:2:{i:0;s:13:\"Sticky Footer\";i:1;s:317:\"This enables a sticky footer. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer. IMPORTANT: This will not work properly when using a Left or Right Side Header layout and the side header is larger than the viewport.\";}s:36:\"footer_sticky_with_parallax_bg_image\";a:2:{i:0;s:43:\"Sticky Footer and Parallax Background Image\";i:1;s:239:\"This enables a sticky footer together with a parallax effect on the background image. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer.\";}}s:6:\"output\";a:8:{i:0;a:4:{s:7:\"element\";s:4:\"html\";s:8:\"property\";s:6:\"height\";s:13:\"value_pattern\";s:4:\"100%\";s:7:\"exclude\";a:3:{i:0;s:4:\"none\";i:1;s:22:\"footer_parallax_effect\";i:2;s:23:\"footer_area_bg_parallax\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaSideHeaderVars\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionSideHeaderScroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:14:\".fusion-footer\";s:9:\"className\";s:22:\"fusion-footer-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"none\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-footer-fx-none\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-footer-fx-parallax-effect\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:5;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:23:\"footer_area_bg_parallax\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-footer-fx-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:6;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:13:\"footer_sticky\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-footer-fx-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:7;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:36:\"footer_sticky_with_parallax_bg_image\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-footer-sticky-with-parallax-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_special_effects\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:16:\"footer_copyright\";a:6:{s:5:\"label\";s:13:\"Copyright Bar\";s:11:\"description\";s:37:\"Turn on to display the copyright bar.\";s:2:\"id\";s:16:\"footer_copyright\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"footer_content_footer_copyright\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:31:\"footer_copyright_center_content\";a:7:{s:5:\"label\";s:24:\"Center Copyright Content\";s:11:\"description\";s:309:\"Turn on to center the copyright bar content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:31:\"footer_copyright_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:9:\"className\";s:30:\"fusion-footer-copyright-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"footer_text\";a:9:{s:5:\"label\";s:14:\"Copyright Text\";s:11:\"description\";s:340:\"Enter the text that displays in the copyright bar. HTML markup can be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:11:\"footer_text\";s:7:\"default\";s:217:\"Copyright 2012 - 2023 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://theme-fusion.com\">ThemeFusion</a> | All Rights Reserved | Powered by <a href=\"https://wordpress.org\">WordPress</a>\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:10:\"unfiltered\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:11:\"footer_text\";a:4:{s:8:\"selector\";s:24:\".fusion-copyright-notice\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:9:\"copyright\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}}}s:42:\"footer_background_image_options_subsection\";a:6:{s:5:\"label\";s:23:\"Footer Background Image\";s:2:\"id\";s:42:\"footer_background_image_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:5:{s:33:\"footer_options_template_bg_notice\";a:4:{s:2:\"id\";s:33:\"footer_options_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footerw_bg_image\";a:9:{s:5:\"label\";s:39:\"Background Image For Footer Widget Area\";s:11:\"description\";s:371:\"Select an image for the footer widget background. If left empty, the footer background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"footerw_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:18:\"--footerw_bg_image\";s:6:\"choice\";s:3:\"url\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-footer-widget-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"footerw_bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:374:\"Turn on to have the footer background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:15:\"footerw_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:22:\"--footerw_bg_full-size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:5:\"cover\";i:1;s:7:\"initial\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}i:1;a:3:{s:4:\"name\";s:26:\"--footerw_bg_full-position\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:13:\"center center\";i:1;s:21:\"var(--footerw_bg_pos)\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}}}s:17:\"footerw_bg_repeat\";a:8:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:307:\"Controls how the background image repeats.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"footerw_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footerw_bg_repeat\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}s:14:\"footerw_bg_pos\";a:8:{s:5:\"label\";s:19:\"Background Position\";s:11:\"description\";s:313:\"Controls how the background image is positioned.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:14:\"footerw_bg_pos\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:9:{s:8:\"top left\";s:8:\"top left\";s:10:\"top center\";s:10:\"top center\";s:9:\"top right\";s:9:\"top right\";s:11:\"center left\";s:11:\"center left\";s:13:\"center center\";s:13:\"center center\";s:12:\"center right\";s:12:\"center right\";s:11:\"bottom left\";s:11:\"bottom left\";s:13:\"bottom center\";s:13:\"bottom center\";s:12:\"bottom right\";s:12:\"bottom right\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--footerw_bg_pos\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}}}s:33:\"footer_styling_options_subsection\";a:6:{s:5:\"label\";s:14:\"Footer Styling\";s:2:\"id\";s:33:\"footer_styling_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:1;s:6:\"fields\";a:24:{s:38:\"footer_options_template_styling_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footer_100_width\";a:8:{s:5:\"label\";s:17:\"100% Footer Width\";s:11:\"description\";s:379:\"Turn on to have the footer area display at 100% width according to the window size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"footer_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-has-100-footer\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"footer_area_padding\";a:9:{s:5:\"label\";s:14:\"Footer Padding\";s:11:\"description\";s:323:\"Controls the top/right/bottom/left padding for the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"footer_area_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"64px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_area_padding-top\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:28:\"--footer_area_padding-bottom\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:26:\"--footer_area_padding-left\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:27:\"--footer_area_padding-right\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:5:\"right\";}}}s:15:\"footer_bg_color\";a:7:{s:5:\"label\";s:23:\"Footer Background Color\";s:11:\"description\";s:309:\"Controls the background color of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:15:\"footer_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--footer_bg_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"footer_border_size\";a:8:{s:5:\"label\";s:18:\"Footer Border Size\";s:11:\"description\";s:308:\"Controls the size of the top footer border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:18:\"footer_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--footer_border_size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"footer_border_color\";a:7:{s:5:\"label\";s:19:\"Footer Border Color\";s:11:\"description\";s:306:\"Controls the border colors of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"footer_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--footer_border_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"footer_divider_line\";a:9:{s:5:\"label\";s:41:\"Footer Widgets Area Vertical Divider Line\";s:11:\"description\";s:350:\"Turn on to have the footer widget area display vertical divider line between columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"footer_divider_line\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line-flex\";s:7:\"element\";s:14:\".fusion-footer\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"flex\";i:1;s:5:\"block\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:19:\"footer_divider_line\";i:1;s:4:\"true\";}}}}}}s:15:\"partial_refresh\";a:1:{s:27:\"footer_divider_line_partial\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:24:\"footer_divider_line_size\";a:8:{s:5:\"label\";s:46:\"Footer Widgets Area Vertical Divider Line Size\";s:11:\"description\";s:347:\"Controls the size of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"footer_divider_line_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line_size\";s:7:\"element\";s:14:\".fusion-footer\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:25:\"footer_divider_line_style\";a:8:{s:5:\"label\";s:47:\"Footer Widgets Area Vertical Divider Line Style\";s:11:\"description\";s:348:\"Controls the style of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:25:\"footer_divider_line_style\";s:7:\"default\";s:5:\"solid\";s:7:\"choices\";a:7:{s:4:\"none\";s:4:\"None\";s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"double\";s:6:\"Double\";s:6:\"groove\";s:6:\"Groove\";s:5:\"ridge\";s:5:\"Ridge\";}s:4:\"type\";s:6:\"select\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--footer_divider_line_style\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:20:\"footer_divider_color\";a:7:{s:5:\"label\";s:27:\"Footer Widget Divider Color\";s:11:\"description\";s:371:\"Controls the divider color in the footer widgets and also the vertical divider lines between widget areas.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"footer_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--footer_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_widgets_padding\";a:9:{s:5:\"label\";s:27:\"Footer Widgets Area Padding\";s:11:\"description\";s:325:\"Controls the right/left padding for the footer widget areas.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_padding\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--footer_widgets_padding\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:17:\"copyright_padding\";a:8:{s:5:\"label\";s:17:\"Copyright Padding\";s:11:\"description\";s:320:\"Controls the top/bottom padding for the copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"copyright_padding\";s:7:\"default\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_padding-top\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--copyright_padding-bottom\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:6:\"bottom\";}}}s:18:\"copyright_bg_color\";a:7:{s:5:\"label\";s:26:\"Copyright Background Color\";s:11:\"description\";s:324:\"Controls the background color of the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:18:\"copyright_bg_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--copyright_bg_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"copyright_border_size\";a:8:{s:5:\"label\";s:21:\"Copyright Border Size\";s:11:\"description\";s:311:\"Controls the size of the top copyright border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:21:\"copyright_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_border_size\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"copyright_border_color\";a:7:{s:5:\"label\";s:22:\"Copyright Border Color\";s:11:\"description\";s:322:\"Controls the border colors for the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"copyright_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--copyright_border_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_typography_info\";a:4:{s:5:\"label\";s:17:\"Footer Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"footer_typography_info\";s:4:\"type\";s:4:\"info\";}s:26:\"footer_headings_typography\";a:10:{s:2:\"id\";s:26:\"footer_headings_typography\";s:5:\"label\";s:26:\"Footer Headings Typography\";s:11:\"description\";s:327:\"These settings control the typography for the footer headings.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:6:\"global\";b:1;s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography2-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography2-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography2-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography2-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color1)\";s:14:\"text-transform\";s:4:\"none\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:26:\"footer_headings_typography\";}}i:1;a:2:{s:4:\"name\";s:38:\"--footer_headings_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:40:\"--footer_headings_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:2:{s:4:\"name\";s:39:\"--footer_headings_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:3:{s:4:\"name\";s:43:\"--footer_headings_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:6;a:2:{s:4:\"name\";s:34:\"--footer_headings_typography-color\";s:6:\"choice\";s:5:\"color\";}i:7;a:2:{s:4:\"name\";s:43:\"--footer_headings_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:17:\"footer_text_color\";a:7:{s:5:\"label\";s:17:\"Footer Font Color\";s:11:\"description\";s:308:\"Controls the text color of the footer font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"footer_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footer_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"footer_link_color\";a:7:{s:5:\"label\";s:17:\"Footer Link Color\";s:11:\"description\";s:313:\"Controls the text color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"footer_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--footer_link_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"footer_link_color_hover\";a:7:{s:5:\"label\";s:23:\"Footer Link Hover Color\";s:11:\"description\";s:319:\"Controls the text hover color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:23:\"footer_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_link_color_hover\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_text_color\";a:7:{s:5:\"label\";s:20:\"Copyright Text Color\";s:11:\"description\";s:53:\"Controls the text color of the footer copyright area.\";s:2:\"id\";s:20:\"copyright_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 60%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_text_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_link_color\";a:7:{s:5:\"label\";s:20:\"Copyright Link Color\";s:11:\"description\";s:53:\"Controls the link color of the footer copyright area.\";s:2:\"id\";s:20:\"copyright_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_link_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"copyright_link_color_hover\";a:7:{s:5:\"label\";s:26:\"Copyright Link Hover Color\";s:11:\"description\";s:59:\"Controls the link hover color of the footer copyright area.\";s:2:\"id\";s:26:\"copyright_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--copyright_link_color_hover\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"copyright_font_size\";a:8:{s:5:\"label\";s:19:\"Copyright Font Size\";s:11:\"description\";s:311:\"Controls the font size for the copyright text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"copyright_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--copyright_font_size\";s:7:\"element\";s:24:\".fusion-copyright-notice\";}}}}}}}s:8:\"sidebars\";a:7:{s:5:\"label\";s:8:\"Sidebars\";s:2:\"id\";s:16:\"heading_sidebars\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:10;s:4:\"icon\";s:15:\"el-icon-website\";s:8:\"alt_icon\";s:15:\"fusiona-sidebar\";s:6:\"fields\";a:7:{s:16:\"sidebars_styling\";a:5:{s:5:\"label\";s:15:\"Sidebar Styling\";s:2:\"id\";s:16:\"sidebars_styling\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:7:{s:24:\"responsive_sidebar_order\";a:8:{s:2:\"id\";s:24:\"responsive_sidebar_order\";s:5:\"label\";s:24:\"Sidebar Responsive Order\";s:11:\"description\";s:101:\"Choose the order of sidebars and main content area on mobile layouts through drag &amp; drop sorting.\";s:4:\"type\";s:8:\"sortable\";s:7:\"choices\";a:3:{s:7:\"content\";s:7:\"Content\";s:7:\"sidebar\";s:9:\"Sidebar 1\";s:9:\"sidebar-2\";s:9:\"Sidebar 2\";}s:7:\"default\";s:25:\"content,sidebar,sidebar-2\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:14:\"sidebar_sticky\";a:7:{s:5:\"label\";s:15:\"Sticky Sidebars\";s:11:\"description\";s:266:\"Select the sidebar(s) that should remain sticky when scrolling the page. If the sidebar content is taller than the screen, it acts like a normal sidebar until the bottom of the sidebar is within the viewport, which will then remain fixed in place as you scroll down.\";s:2:\"id\";s:14:\"sidebar_sticky\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:11:\"sidebar_one\";s:9:\"Sidebar 1\";s:11:\"sidebar_two\";s:9:\"Sidebar 2\";s:4:\"both\";s:4:\"Both\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"sidebar_padding\";a:7:{s:5:\"label\";s:15:\"Sidebar Padding\";s:11:\"description\";s:29:\"Controls the sidebar padding.\";s:2:\"id\";s:15:\"sidebar_padding\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--sidebar_padding\";s:7:\"element\";s:8:\".sidebar\";}i:1;a:3:{s:4:\"name\";s:31:\"--sidebar_padding-percent_to_vw\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}}s:16:\"sidebar_bg_color\";a:6:{s:5:\"label\";s:24:\"Sidebar Background Color\";s:11:\"description\";s:45:\"Controls the background color of the sidebar.\";s:2:\"id\";s:16:\"sidebar_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--sidebar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"sidebar_widget_bg_color\";a:6:{s:5:\"label\";s:39:\"Sidebar Widget Heading Background Color\";s:11:\"description\";s:108:\"Controls the background color of the widget title box. If left transparent the widget title will be unboxed.\";s:2:\"id\";s:23:\"sidebar_widget_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--sidebar_widget_bg_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:3:{s:4:\"name\";s:40:\"--sidebar_widget_bg_color-opaque-padding\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:8:\"9px 15px\";}}}}}s:15:\"sidew_font_size\";a:6:{s:5:\"label\";s:32:\"Sidebar Widget Heading Font Size\";s:11:\"description\";s:50:\"Controls the font size of the widget heading text.\";s:2:\"id\";s:15:\"sidew_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--sidew_font_size\";s:7:\"element\";s:8:\".sidebar\";}}}s:21:\"sidebar_heading_color\";a:6:{s:5:\"label\";s:29:\"Sidebar Widget Headings Color\";s:11:\"description\";s:54:\"Controls the color of the sidebar widget heading text.\";s:2:\"id\";s:21:\"sidebar_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--sidebar_heading_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:22:\"pages_sidebars_section\";a:5:{s:5:\"label\";s:5:\"Pages\";s:2:\"id\";s:22:\"pages_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:13:\"pages_sidebar\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 1\";s:11:\"description\";s:48:\"Select sidebar 1 that will display on all pages.\";s:2:\"id\";s:13:\"pages_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"pages_sidebar_2\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 2\";s:11:\"description\";s:101:\"Select sidebar 2 that will display on all pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"pages_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:20:\"pages_global_sidebar\";a:6:{s:5:\"label\";s:31:\"Force Global Sidebars For Pages\";s:11:\"description\";s:98:\"Turn on if you want to use the same sidebars on all pages. This option overrides the page options.\";s:2:\"id\";s:20:\"pages_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"default_sidebar_pos\";a:7:{s:5:\"label\";s:28:\"Global Page Sidebar Position\";s:11:\"description\";s:113:\"Controls the position of sidebar 1 for all pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:19:\"default_sidebar_pos\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:32:\"portfolio_posts_sidebars_section\";a:6:{s:5:\"label\";s:15:\"Portfolio Posts\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:32:\"portfolio_posts_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:17:\"portfolio_sidebar\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 1\";s:11:\"description\";s:58:\"Select sidebar 1 that will display on all portfolio posts.\";s:2:\"id\";s:17:\"portfolio_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"portfolio_sidebar_2\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 2\";s:11:\"description\";s:111:\"Select sidebar 2 that will display on all portfolio posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:19:\"portfolio_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:24:\"portfolio_global_sidebar\";a:6:{s:5:\"label\";s:41:\"Force Global Sidebars For Portfolio Posts\";s:11:\"description\";s:118:\"Turn on if you want to use the same sidebars on all portfolio posts. This option overrides the portfolio post options.\";s:2:\"id\";s:24:\"portfolio_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:26:\"portfolio_sidebar_position\";a:7:{s:5:\"label\";s:33:\"Global Portfolio Sidebar Position\";s:11:\"description\";s:141:\"Controls the position of sidebar 1 for all portfolio posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:26:\"portfolio_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:49:\"portfolio_archive_category_pages_sidebars_section\";a:6:{s:5:\"label\";s:17:\"Portfolio Archive\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:49:\"portfolio_archive_category_pages_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:37:\"portfolio_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:325:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for portfolio archive pages is controlled by the option on the <a href=\"https://test-site.wlvrotary.org/wp-admin/themes.php?page=avada_options&amp;lang=en#portfolio_sidebar\" target=\"_blank\">Portfolio Posts sidebar</a> tab.</div>\";s:2:\"id\";s:37:\"portfolio_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:25:\"portfolio_archive_sidebar\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 1\";s:11:\"description\";s:66:\"Select sidebar 1 that will display on the portfolio archive pages.\";s:2:\"id\";s:25:\"portfolio_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:27:\"portfolio_archive_sidebar_2\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 2\";s:11:\"description\";s:119:\"Select sidebar 2 that will display on the portfolio archive pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:27:\"portfolio_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:27:\"blog_posts_sidebars_section\";a:6:{s:5:\"label\";s:10:\"Blog Posts\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"blog_posts_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:13:\"posts_sidebar\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 1\";s:11:\"description\";s:53:\"Select sidebar 1 that will display on all blog posts.\";s:2:\"id\";s:13:\"posts_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:27:\"#sidebar.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:6:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";s:35:\"link_to_template_if_override_active\";s:7:\"content\";s:13:\"override_icon\";s:15:\"fusiona-content\";}i:1;a:5:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";s:28:\"disable_on_template_override\";s:7:\"content\";}i:2;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:7:\"content\";}}}}s:15:\"posts_sidebar_2\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 2\";s:11:\"description\";s:106:\"Select sidebar 2 that will display on all blog posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"posts_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:29:\"#sidebar-2.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";}i:1;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";}i:2;a:2:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";}}}}s:20:\"posts_global_sidebar\";a:5:{s:5:\"label\";s:36:\"Force Global Sidebars For Blog Posts\";s:11:\"description\";s:108:\"Turn on if you want to use the same sidebars on all blog posts. This option overrides the blog post options.\";s:2:\"id\";s:20:\"posts_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"blog_sidebar_position\";a:6:{s:5:\"label\";s:28:\"Global Blog Sidebar Position\";s:11:\"description\";s:136:\"Controls the position of sidebar 1 for all blog posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:21:\"blog_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}}}}s:44:\"blog_archive_category_pages_sidebars_section\";a:6:{s:5:\"label\";s:12:\"Blog Archive\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:44:\"blog_archive_category_pages_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:32:\"blog_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:311:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for blog archive pages is controlled by the option on the <a href=\"https://test-site.wlvrotary.org/wp-admin/themes.php?page=avada_options&amp;lang=en#posts_sidebar\" target=\"_blank\">Blog Posts sidebar</a> tab.</div>\";s:2:\"id\";s:32:\"blog_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:20:\"blog_archive_sidebar\";a:7:{s:5:\"label\";s:22:\"Blog Archive Sidebar 1\";s:11:\"description\";s:61:\"Select sidebar 1 that will display on the blog archive pages.\";s:2:\"id\";s:20:\"blog_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:22:\"blog_archive_sidebar_2\";a:7:{s:5:\"label\";s:22:\"Blog Archive Sidebar 2\";s:11:\"description\";s:114:\"Select sidebar 2 that will display on the blog archive pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:22:\"blog_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:23:\"search_sidebars_section\";a:6:{s:5:\"label\";s:11:\"Search Page\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:11:\"search_only\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:14:\"search_sidebar\";a:7:{s:5:\"label\";s:21:\"Search Page Sidebar 1\";s:11:\"description\";s:62:\"Select sidebar 1 that will display on the search results page.\";s:2:\"id\";s:14:\"search_sidebar\";s:7:\"default\";s:12:\"Blog Sidebar\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:16:\"search_sidebar_2\";a:7:{s:5:\"label\";s:21:\"Search Page Sidebar 2\";s:11:\"description\";s:115:\"Select sidebar 2 that will display on the search results page. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:16:\"search_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:23:\"search_sidebar_position\";a:7:{s:5:\"label\";s:23:\"Search Sidebar Position\";s:11:\"description\";s:127:\"Controls the position of sidebar 1 for the search results page. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:23:\"search_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}}}s:10:\"background\";a:6:{s:5:\"label\";s:10:\"Background\";s:2:\"id\";s:18:\"heading_background\";s:8:\"priority\";i:11;s:4:\"icon\";s:13:\"el-icon-photo\";s:8:\"alt_icon\";s:13:\"fusiona-image\";s:6:\"fields\";a:2:{s:18:\"page_bg_subsection\";a:6:{s:5:\"label\";s:15:\"Page Background\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:18:\"page_bg_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:6:{s:8:\"bg_image\";a:8:{s:5:\"label\";s:25:\"Background Image For Page\";s:11:\"description\";s:50:\"Select an image to use for a full page background.\";s:2:\"id\";s:8:\"bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:10:\"--bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:23:\"avada-html-has-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:7:\"bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:107:\"Turn on to have the page background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:7:\"bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"avada-has-bg-image-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"bg_repeat\";a:8:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:9:\"bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:11:\"--bg_repeat\";}}}s:8:\"bg_color\";a:6:{s:5:\"label\";s:25:\"Background Color For Page\";s:11:\"description\";s:167:\"Controls the background color for the page. When the color value is set to anything below 100% opacity, the color will overlay the background image if one is uploaded.\";s:2:\"id\";s:8:\"bg_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:10:\"--bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:18:\"--bg-color-overlay\";s:8:\"callback\";a:2:{i:0;s:22:\"return_color_if_opaque\";i:1;a:2:{s:11:\"transparent\";s:7:\"overlay\";s:6:\"opaque\";s:6:\"normal\";}}}}}s:17:\"bg_pattern_option\";a:6:{s:5:\"label\";s:18:\"Background Pattern\";s:11:\"description\";s:52:\"Turn on to display a pattern in the page background.\";s:2:\"id\";s:17:\"bg_pattern_option\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:33:\"avada-has-page-background-pattern\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"bg_pattern\";a:7:{s:5:\"label\";s:27:\"Select a Background Pattern\";s:2:\"id\";s:10:\"bg_pattern\";s:7:\"default\";s:8:\"pattern1\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:22:{s:8:\"pattern1\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern22.png\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"bg_pattern_option\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:12:\"--bg_pattern\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:91:\"url(\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/$.png\")\";i:1;s:0:\"\";}}}}}}}s:26:\"main_content_bg_subsection\";a:6:{s:5:\"label\";s:23:\"Main Content Background\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"main_content_bg_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:16:\"content_bg_color\";a:7:{s:5:\"label\";s:29:\"Main Content Background Color\";s:11:\"description\";s:55:\"Controls the background color of the main content area.\";s:2:\"id\";s:16:\"content_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--content_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:27:\"avada-content-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"content_bg_image\";a:7:{s:5:\"label\";s:38:\"Background Image For Main Content Area\";s:11:\"description\";s:60:\"Select an image to use for the main content area background.\";s:2:\"id\";s:16:\"content_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--content_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:15:\"content_bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:115:\"Turn on to have the main content background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:15:\"content_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:5:\"#main\";s:9:\"className\";s:7:\"full-bg\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"content_bg_repeat\";a:8:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--content_bg_repeat\";}}}}}}}s:10:\"typography\";a:7:{s:5:\"label\";s:10:\"Typography\";s:2:\"id\";s:18:\"heading_typography\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:12;s:4:\"icon\";s:16:\"el-icon-fontsize\";s:8:\"alt_icon\";s:18:\"fusiona-font-solid\";s:6:\"fields\";a:4:{s:17:\"global_typography\";a:4:{s:5:\"label\";s:17:\"Global Typography\";s:2:\"id\";s:17:\"global_typography\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:1:{s:15:\"typography_sets\";a:6:{s:5:\"label\";s:15:\"Typography Sets\";s:11:\"description\";s:520:\"Set your global typography sets. The sets defined here can be used from other global options, and element options. Each of the options within these sets can be individually overridden in options using the sets. <strong>IMPORTANT NOTE:</strong> If a global set that is used by other options gets deleted, these corresponding options will display the default font. Typography sets are internally stored with a fixed counter. Thus, adding a new set after deleting an old one, will set the same internal name to the new set.\";s:2:\"id\";s:15:\"typography_sets\";s:7:\"default\";a:5:{s:11:\"typography1\";a:11:{s:5:\"label\";s:8:\"Headings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography2\";a:11:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography3\";a:11:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography4\";a:11:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography5\";a:11:{s:5:\"label\";s:5:\"Small\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}}s:4:\"type\";s:15:\"typography-sets\";s:9:\"transport\";s:11:\"postMessage\";}}}s:15:\"body_typography\";a:4:{s:5:\"label\";s:15:\"Body Typography\";s:2:\"id\";s:15:\"body_typography\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:12:{s:35:\"body_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains general typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:35:\"body_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:15:\"body_typography\";a:8:{s:2:\"id\";s:15:\"body_typography\";s:5:\"label\";s:15:\"Body Typography\";s:11:\"description\";s:56:\"These settings control the typography for all body text.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:29:\"--body_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:15:\"body_typography\";}}i:1;a:2:{s:4:\"name\";s:27:\"--body_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:16:\"--base-font-size\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}i:3;a:3:{s:4:\"name\";s:29:\"--body_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:28:\"--body_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:29:\"--body_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:6;a:3:{s:4:\"name\";s:32:\"--body_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:7;a:3:{s:4:\"name\";s:23:\"--body_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:10:\"link_color\";a:6:{s:5:\"label\";s:10:\"Link Color\";s:11:\"description\";s:37:\"Controls the color of all text links.\";s:2:\"id\";s:10:\"link_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:12:\"--link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:15:\"--link_color-8a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.8\";}}}}s:16:\"link_hover_color\";a:6:{s:5:\"label\";s:16:\"Link Hover Color\";s:11:\"description\";s:53:\"Controls the link hover color throughout the website.\";s:2:\"id\";s:16:\"link_hover_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:6:{i:0;a:2:{s:4:\"name\";s:18:\"--link_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:22:\"--link_hover_color-85a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.85\";}}i:2;a:2:{s:4:\"name\";s:21:\"--link_hover_color-7a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.7\";}}i:3;a:2:{s:4:\"name\";s:21:\"--link_hover_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}}i:4;a:2:{s:4:\"name\";s:22:\"--link_hover_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}}i:5;a:2:{s:4:\"name\";s:21:\"--link_hover_color-2a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.2\";}}}}s:15:\"link_decoration\";a:6:{s:5:\"label\";s:27:\"Enable Link Text Decoration\";s:11:\"description\";s:51:\"Turn on to enable text decoration on general links.\";s:2:\"id\";s:15:\"link_decoration\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:25:\"link_decoration_exclusion\";a:9:{s:5:\"label\";s:37:\"Exclude Elements From Link Decoration\";s:11:\"description\";s:66:\"Choose which elements should be excluded from the link decoration.\";s:2:\"id\";s:25:\"link_decoration_exclusion\";s:7:\"default\";a:4:{i:0;s:7:\"buttons\";i:1;s:5:\"menus\";i:2;s:4:\"tocs\";i:3;s:11:\"tabstoggles\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:11:\"breadcrumbs\";s:11:\"Breadcrumbs\";s:7:\"buttons\";s:7:\"Buttons\";s:8:\"headings\";s:8:\"Headings\";s:5:\"menus\";s:5:\"Menus\";s:4:\"tocs\";s:12:\"TOC Elements\";s:11:\"tabstoggles\";s:18:\"Tabs &amp; Toggles\";}s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}s:20:\"link_decoration_line\";a:9:{s:5:\"label\";s:25:\"Link Text Decoration Line\";s:11:\"description\";s:55:\"Controls the text decoration line of all general links.\";s:2:\"id\";s:20:\"link_decoration_line\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:4:\"none\";s:8:\"No Style\";s:8:\"overline\";s:8:\"Overline\";s:9:\"underline\";s:9:\"Underline\";s:12:\"line-through\";s:12:\"Line Through\";s:18:\"overline underline\";s:24:\"Overline &amp; Underline\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--awb-link_decoration_line\";}}}s:21:\"link_decoration_style\";a:9:{s:5:\"label\";s:26:\"Link Text Decoration Style\";s:11:\"description\";s:56:\"Controls the text decoration style of all general links.\";s:2:\"id\";s:21:\"link_decoration_style\";s:7:\"default\";s:5:\"solid\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:5:\"solid\";s:5:\"Solid\";s:6:\"double\";s:6:\"Double\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"dashed\";s:6:\"Dashed\";s:4:\"wavy\";s:4:\"Wavy\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:27:\"--awb-link_decoration_style\";}}}s:25:\"link_decoration_thickness\";a:8:{s:5:\"label\";s:30:\"Link Text Decoration Thickness\";s:11:\"description\";s:103:\"Controls the text decoration line thickness of all general links. Can be set in px, em or rem. Ex: 2px.\";s:2:\"id\";s:25:\"link_decoration_thickness\";s:7:\"default\";s:3:\"1px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:2:\"em\";i:2;s:3:\"rem\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:31:\"--awb-link_decoration_thickness\";}}}s:26:\"link_decoration_line_hover\";a:9:{s:5:\"label\";s:31:\"Link Hover Text Decoration Line\";s:11:\"description\";s:61:\"Controls the text hover decoration line of all general links.\";s:2:\"id\";s:26:\"link_decoration_line_hover\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:4:\"none\";s:8:\"No Style\";s:8:\"overline\";s:8:\"Overline\";s:9:\"underline\";s:9:\"Underline\";s:12:\"line-through\";s:12:\"Line Through\";s:18:\"overline underline\";s:24:\"Overline &amp; Underline\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:32:\"--awb-link_decoration_line_hover\";}}}s:27:\"link_decoration_style_hover\";a:9:{s:5:\"label\";s:32:\"Link Hover Text Decoration Style\";s:11:\"description\";s:62:\"Controls the text hover decoration style of all general links.\";s:2:\"id\";s:27:\"link_decoration_style_hover\";s:7:\"default\";s:5:\"solid\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:5:\"solid\";s:5:\"Solid\";s:6:\"double\";s:6:\"Double\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"dashed\";s:6:\"Dashed\";s:4:\"wavy\";s:4:\"Wavy\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:33:\"--awb-link_decoration_style_hover\";}}}s:31:\"link_decoration_thickness_hover\";a:8:{s:5:\"label\";s:36:\"Link Hover Text Decoration Thickness\";s:11:\"description\";s:109:\"Controls the text hover decoration line thickness of all general links. Can be set in px, em or rem. Ex: 2px.\";s:2:\"id\";s:31:\"link_decoration_thickness_hover\";s:7:\"default\";s:3:\"1px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:2:\"em\";i:2;s:3:\"rem\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:37:\"--awb-link_decoration_thickness_hover\";}}}}}s:26:\"headers_typography_section\";a:4:{s:5:\"label\";s:18:\"Heading Typography\";s:2:\"id\";s:26:\"headers_typography_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:9:{s:38:\"headers_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains heading typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:38:\"headers_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"h1_typography\";a:9:{s:2:\"id\";s:13:\"h1_typography\";s:5:\"label\";s:22:\"H1 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H1 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"64px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h1_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h1_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h1_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h1_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h1_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h1_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h1_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h1_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h1_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h2_typography\";a:9:{s:2:\"id\";s:13:\"h2_typography\";s:5:\"label\";s:22:\"H2 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H2 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography1-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h2_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h2_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h2_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h2_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h2_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h2_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h2_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h2_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h2_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h3_typography\";a:9:{s:2:\"id\";s:13:\"h3_typography\";s:5:\"label\";s:22:\"H3 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H3 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"36px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h3_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h3_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h3_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h3_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h3_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h3_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h3_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h3_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h3_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h4_typography\";a:9:{s:2:\"id\";s:13:\"h4_typography\";s:5:\"label\";s:22:\"H4 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H4 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"24px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h4_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h4_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h4_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h4_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h4_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h4_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h4_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h4_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h4_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h5_typography\";a:9:{s:2:\"id\";s:13:\"h5_typography\";s:5:\"label\";s:22:\"H5 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H5 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h5_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h5_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h5_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h5_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h5_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h5_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h5_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h5_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h5_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h6_typography\";a:9:{s:2:\"id\";s:13:\"h6_typography\";s:5:\"label\";s:22:\"H6 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H6 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"16px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h6_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h6_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h6_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h6_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h6_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h6_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h6_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h6_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h6_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:21:\"post_title_typography\";a:9:{s:2:\"id\";s:21:\"post_title_typography\";s:5:\"label\";s:21:\"Post Title Typography\";s:11:\"description\";s:207:\"These settings control the typography of all post titles including archive and single posts.<br /><strong>IMPORTANT:</strong> On archive pages and in blog elements the linked post titles will use link color.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:21:\"post_title_typography\";}}i:1;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:35:\"--post_title_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:38:\"--post_title_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:34:\"--post_title_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:33:\"--post_title_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:29:\"--post_title_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:38:\"--post_title_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:29:\"post_titles_extras_typography\";a:9:{s:2:\"id\";s:29:\"post_titles_extras_typography\";s:5:\"label\";s:28:\"Post Title Extras Typography\";s:11:\"description\";s:163:\"These settings control the typography of single post title extras such as &quot;Comments&quot;, &quot;Related Posts or Projects&quot; and &quot;Author Titles&quot;\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:29:\"post_titles_extras_typography\";}}i:1;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:43:\"--post_titles_extras_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:46:\"--post_titles_extras_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:42:\"--post_titles_extras_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:41:\"--post_titles_extras_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:37:\"--post_titles_extras_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:46:\"--post_titles_extras_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}}}s:33:\"custom_webfont_typography_section\";a:4:{s:5:\"label\";s:12:\"Custom Fonts\";s:2:\"id\";s:33:\"custom_webfont_typography_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:17:\"custom_fonts_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:391:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please upload your custom fonts below. Once you upload a custom font, <strong>you will have to save your options and reload this page on your browser</strong>. After you reload the page you will be able to select your new fonts - they will be available at the top of the fonts-list in the typography controls.</div>\";s:2:\"id\";s:17:\"custom_fonts_info\";s:4:\"type\";s:6:\"custom\";}s:12:\"custom_fonts\";a:9:{s:5:\"label\";s:12:\"Custom Fonts\";s:11:\"description\";s:233:\"Upload a custom font to use throughout the site. All files are not necessary but are recommended for full browser support. You can upload as many custom fonts as you need. Click the &quot;Add&quot; button for additional upload boxes.\";s:2:\"id\";s:12:\"custom_fonts\";s:7:\"default\";a:0:{}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"name\";s:5:\"limit\";i:50;s:9:\"transport\";s:11:\"postMessage\";s:6:\"fields\";a:6:{s:4:\"name\";a:6:{s:5:\"label\";s:9:\"Font Name\";s:11:\"description\";s:46:\"This will be used in the font-family dropdown.\";s:2:\"id\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:22:\"avada-custom-font-name\";}s:5:\"woff2\";a:6:{s:5:\"label\";s:5:\"WOFF2\";s:2:\"id\";s:5:\"woff2\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:4:\"woff\";a:6:{s:5:\"label\";s:4:\"WOFF\";s:2:\"id\";s:4:\"woff\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"ttf\";a:6:{s:5:\"label\";s:3:\"TTF\";s:2:\"id\";s:3:\"ttf\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"eot\";a:6:{s:5:\"label\";s:3:\"EOT\";s:2:\"id\";s:3:\"eot\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"svg\";a:6:{s:5:\"label\";s:3:\"SVG\";s:2:\"id\";s:3:\"svg\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}}}s:14:\"adobe_fonts_id\";a:5:{s:5:\"label\";s:14:\"Adobe Fonts ID\";s:11:\"description\";s:99:\"Enter the Adobe Fonts (formerly TypeKit) Web Project ID. You will need to save and reload the page.\";s:2:\"id\";s:14:\"adobe_fonts_id\";s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}s:18:\"adobe_fonts_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:549:\"<div class=\"awb-adobe-fonts-info-wrapper\"><p>No Adobe Fonts detected.</p></div><div class=\"fusion-redux-important-notice\"><strong>NOTE:</strong> You can create a custom global font for each Adobe font, so when you want to change that font, you don\'t need to search for each element that used that font. Also note that when you change the project fonts, you need to refresh the Adobe Fonts cache.<br /><br />If you use a multilingual plugin, the value of the Adobe Fonts Id used for fonts is the one from &quot;All Languages&quot; options page.</div>\";s:2:\"id\";s:18:\"adobe_fonts_notice\";s:4:\"type\";s:6:\"custom\";}}}}}s:4:\"blog\";a:7:{s:5:\"label\";s:4:\"Blog\";s:2:\"id\";s:12:\"blog_section\";s:8:\"priority\";i:15;s:4:\"icon\";s:17:\"el-icon-file-edit\";s:8:\"alt_icon\";s:12:\"fusiona-blog\";s:5:\"class\";s:22:\"hidden-section-heading\";s:6:\"fields\";a:3:{s:20:\"blog_general_options\";a:6:{s:5:\"label\";s:12:\"General Blog\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"blog_general_options\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:25:{s:32:\"general_blog_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:354:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab only control the assigned blog page in \"Settings > Reading\", blog archives or the blog single post page, not the blog element. The only options on this tab that work with the blog element are the Date Format options and Load More Post Button Color.</div>\";s:2:\"id\";s:32:\"general_blog_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:19:\"blog_page_title_bar\";a:7:{s:5:\"label\";s:19:\"Blog Page Title Bar\";s:11:\"description\";s:85:\"Controls how the page title bar displays on single blog posts and blog archive pages.\";s:2:\"id\";s:19:\"blog_page_title_bar\";s:7:\"default\";s:4:\"hide\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:20:\"Show Bar and Content\";s:12:\"content_only\";s:17:\"Show Content Only\";s:4:\"hide\";s:4:\"Hide\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_blog_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:24:\"blog_show_page_title_bar\";a:7:{s:5:\"label\";s:28:\"Blog Assigned Page Title Bar\";s:11:\"description\";s:104:\"Controls how the page title bar displays on the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:24:\"blog_show_page_title_bar\";s:7:\"default\";s:4:\"hide\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:20:\"Show Bar and Content\";s:12:\"content_only\";s:17:\"Show Content Only\";s:4:\"hide\";s:4:\"Hide\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:48:\"page_title_bar_contents_blog_show_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:10:\"blog_title\";a:7:{s:5:\"label\";s:15:\"Blog Page Title\";s:11:\"description\";s:147:\"Controls the title text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:10:\"blog_title\";s:7:\"default\";s:4:\"Blog\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:18:\"blog_title_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:13:\"blog_subtitle\";a:7:{s:5:\"label\";s:18:\"Blog Page Subtitle\";s:11:\"description\";s:150:\"Controls the subtitle text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:13:\"blog_subtitle\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:21:\"blog_subtitle_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:11:\"blog_layout\";a:8:{s:5:\"label\";s:11:\"Blog Layout\";s:11:\"description\";s:84:\"Controls the layout for the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:11:\"blog_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Large\";s:6:\"medium\";s:6:\"Medium\";s:15:\"large alternate\";s:15:\"Large Alternate\";s:16:\"medium alternate\";s:16:\"Medium Alternate\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:8:\"Timeline\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:26:\".blog .fusion-blog-archive\";}s:9:\"shortcuts\";a:1:{i:0;a:1:{s:10:\"aria_label\";s:17:\"Edit Blog Options\";}}}}s:19:\"blog_archive_layout\";a:7:{s:5:\"label\";s:19:\"Blog Archive Layout\";s:11:\"description\";s:47:\"Controls the layout for the blog archive pages.\";s:2:\"id\";s:19:\"blog_archive_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Large\";s:6:\"medium\";s:6:\"Medium\";s:15:\"large alternate\";s:15:\"Large Alternate\";s:16:\"medium alternate\";s:16:\"Medium Alternate\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:8:\"Timeline\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:4:{i:0;a:3:{s:9:\"condition\";s:11:\"is_category\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:6:\"is_tag\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:2;a:3:{s:9:\"condition\";s:7:\"is_date\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:3;a:3:{s:9:\"condition\";s:9:\"is_author\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:20:\"blog_pagination_type\";a:7:{s:5:\"label\";s:15:\"Pagination Type\";s:11:\"description\";s:115:\"Controls the pagination type for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:20:\"blog_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"blog_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:94:\"Controls the background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:38:\"--blog_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:38:\"blog_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:88:\"Controls the text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:38:\"blog_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:40:\"--blog_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:42:\"blog_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:100:\"Controls the hover background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:44:\"--blog_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:44:\"blog_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:94:\"Controls the hover text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:46:\"--blog_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:25:\"blog_archive_grid_columns\";a:9:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:218:\"Controls the number of columns for grid and masonry layout when using it for the assigned blog page in \"Settings > Reading\" or blog archive pages. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"blog_archive_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:32:\"blog_archive_grid_column_spacing\";a:11:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:171:\"Controls the column spacing for blog posts for grid and masonry layout when using it for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:32:\"blog_archive_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--blog_archive_grid_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"blog_equal_heights\";a:9:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:55:\"Turn on to display grid boxes to equal heights per row.\";s:2:\"id\";s:18:\"blog_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:25:\"blog_archive_grid_padding\";a:9:{s:5:\"label\";s:30:\"Blog Archive Grid Text Padding\";s:11:\"description\";s:106:\"Controls the top/right/bottom/left padding of the blog text when using grid / masonry or timeline layout. \";s:2:\"id\";s:25:\"blog_archive_grid_padding\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:31:\"--blog_archive_grid_padding-top\";s:6:\"choice\";s:3:\"top\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:1;a:3:{s:4:\"name\";s:34:\"--blog_archive_grid_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:2;a:3:{s:4:\"name\";s:32:\"--blog_archive_grid_padding-left\";s:6:\"choice\";s:4:\"left\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:3;a:3:{s:4:\"name\";s:33:\"--blog_archive_grid_padding-right\";s:6:\"choice\";s:5:\"right\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}}}s:21:\"blog_layout_alignment\";a:9:{s:5:\"label\";s:35:\"Blog Archive Grid Content Alignment\";s:11:\"description\";s:93:\"Controls the content alignment of the blog text when using grid / masonry or timeline layout.\";s:2:\"id\";s:21:\"blog_layout_alignment\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:0:\"\";s:9:\"Text Flow\";s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:14:\"content_length\";a:6:{s:5:\"label\";s:20:\"Blog Content Display\";s:11:\"description\";s:177:\"Controls if the blog content displays an excerpt or full content or is completely disabled for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:14:\"content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"excerpt\";s:7:\"Excerpt\";s:12:\"full_content\";s:12:\"Full Content\";s:4:\"hide\";s:7:\"No Text\";}}s:19:\"excerpt_length_blog\";a:8:{s:5:\"label\";s:14:\"Excerpt Length\";s:11:\"description\";s:207:\"Controls post excerts length for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages. Limit is applied to number of letter or words depending on Basis for Excerpt Length option.\";s:2:\"id\";s:19:\"excerpt_length_blog\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"strip_html_excerpt\";a:6:{s:5:\"label\";s:23:\"Strip HTML from Excerpt\";s:11:\"description\";s:133:\"Turn on to strip HTML content from the excerpt for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:18:\"strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:15:\"featured_images\";a:7:{s:5:\"label\";s:43:\"Featured Image / Video on Blog Archive Page\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on the blog archive pages.\";s:2:\"id\";s:15:\"featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:64:\"body:not(.single-avada_portfolio) .fusion-featured-image-wrapper\";i:1;s:77:\".single-avada_portfolio .fusion-featured-image-wrapper .fusion-post-slideshow\";}s:9:\"shortcuts\";a:1:{i:0;a:4:{s:10:\"aria_label\";s:19:\"Edit Featured Image\";s:8:\"callback\";s:23:\"fusionEditFeaturedImage\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-image\";}}}}s:15:\"dates_box_color\";a:6:{s:5:\"label\";s:36:\"Blog Alternate Layout Date Box Color\";s:11:\"description\";s:78:\"Controls the color of the date box in blog alternate and recent posts layouts.\";s:2:\"id\";s:15:\"dates_box_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--dates_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"alternate_date_format_month_year\";a:5:{s:5:\"label\";s:43:\"Blog Alternate Layout Month and Year Format\";s:11:\"description\";s:207:\"Controls the month and year format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:32:\"alternate_date_format_month_year\";s:7:\"default\";s:4:\"m, Y\";s:4:\"type\";s:4:\"text\";}s:25:\"alternate_date_format_day\";a:5:{s:5:\"label\";s:32:\"Blog Alternate Layout Day Format\";s:11:\"description\";s:196:\"Controls the day format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:25:\"alternate_date_format_day\";s:7:\"default\";s:1:\"j\";s:4:\"type\";s:4:\"text\";}s:20:\"timeline_date_format\";a:5:{s:5:\"label\";s:32:\"Blog Timeline Layout Date Format\";s:11:\"description\";s:197:\"Controls the timeline label format for blog timeline layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date</a>\";s:2:\"id\";s:20:\"timeline_date_format\";s:7:\"default\";s:3:\"F Y\";s:4:\"type\";s:4:\"text\";}}}s:23:\"blog_single_post_info_2\";a:7:{s:5:\"label\";s:16:\"Blog Single Post\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"blog_single_post_info_2\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:11:{s:49:\"content_blog_single_post_template_override_notice\";a:5:{s:2:\"id\";s:49:\"content_blog_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:40:\"content_blog_single_post_template_notice\";a:5:{s:2:\"id\";s:40:\"content_blog_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"blog_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:112:\"Turn on to display blog posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:14:\"blog_width_100\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"featured_images_single\";a:7:{s:5:\"label\";s:42:\"Featured Image / Video on Single Blog Post\";s:11:\"description\";s:67:\"Turn on to display featured images and videos on single blog posts.\";s:2:\"id\";s:22:\"featured_images_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"blog_pn_nav\";a:7:{s:5:\"label\";s:24:\"Previous/Next Pagination\";s:11:\"description\";s:75:\"Turn on to display the previous/next post pagination for single blog posts.\";s:2:\"id\";s:11:\"blog_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:15:\"blog_post_title\";a:8:{s:5:\"label\";s:10:\"Post Title\";s:11:\"description\";s:90:\"Controls if the post title displays above or below the featured post image or is disabled.\";s:2:\"id\";s:15:\"blog_post_title\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:5:\"below\";s:6:\"Below \";s:5:\"above\";s:5:\"Above\";s:8:\"disabled\";s:8:\"Disabled\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"blog_post_meta_position\";a:9:{s:5:\"label\";s:18:\"Meta Data Position\";s:11:\"description\";s:41:\"Choose where the meta data is positioned.\";s:2:\"id\";s:23:\"blog_post_meta_position\";s:7:\"default\";s:13:\"below_article\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:13:\"below_article\";s:13:\"Below Article\";s:11:\"below_title\";s:11:\"Below Title\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"blog_post_title\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"disabled\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"social_sharing_box\";a:7:{s:5:\"label\";s:18:\"Social Sharing Box\";s:11:\"description\";s:42:\"Turn on to display the social sharing box.\";s:2:\"id\";s:18:\"social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"author_info\";a:7:{s:5:\"label\";s:15:\"Author Info Box\";s:11:\"description\";s:51:\"Turn on to display the author info box below posts.\";s:2:\"id\";s:11:\"author_info\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"related_posts\";a:7:{s:5:\"label\";s:13:\"Related Posts\";s:11:\"description\";s:33:\"Turn on to display related posts.\";s:2:\"id\";s:13:\"related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"blog_comments\";a:7:{s:5:\"label\";s:8:\"Comments\";s:11:\"description\";s:28:\"Turn on to display comments.\";s:2:\"id\";s:13:\"blog_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}}s:14:\"blog_meta_info\";a:7:{s:5:\"label\";s:9:\"Blog Meta\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:9:\"blog_meta\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:29:\"blog_meta_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:335:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The on/off meta options on this tab only control the assigned blog page in \"Settings > Reading\" or the blog archives, not the blog element. The only options on this tab that work with the blog element are the Meta Data Font Size and Date Format options.</div>\";s:2:\"id\";s:29:\"blog_meta_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:9:\"post_meta\";a:5:{s:5:\"label\";s:9:\"Post Meta\";s:11:\"description\";s:178:\"Turn on to display post meta on blog posts. If set to &quot;On&quot;, you can also control individual meta items below. If set to &quot;Off&quot; all meta items will be disabled.\";s:2:\"id\";s:9:\"post_meta\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:16:\"post_meta_author\";a:6:{s:5:\"label\";s:16:\"Post Meta Author\";s:11:\"description\";s:45:\"Turn on to display the post meta author name.\";s:2:\"id\";s:16:\"post_meta_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_date\";a:6:{s:5:\"label\";s:14:\"Post Meta Date\";s:11:\"description\";s:38:\"Turn on to display the post meta date.\";s:2:\"id\";s:14:\"post_meta_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_cats\";a:6:{s:5:\"label\";s:20:\"Post Meta Categories\";s:11:\"description\";s:44:\"Turn on to display the post meta categories.\";s:2:\"id\";s:14:\"post_meta_cats\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:18:\"post_meta_comments\";a:6:{s:5:\"label\";s:18:\"Post Meta Comments\";s:11:\"description\";s:42:\"Turn on to display the post meta comments.\";s:2:\"id\";s:18:\"post_meta_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_read\";a:6:{s:5:\"label\";s:24:\"Post Meta Read More Link\";s:11:\"description\";s:48:\"Turn on to display the post meta read more link.\";s:2:\"id\";s:14:\"post_meta_read\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_tags\";a:6:{s:5:\"label\";s:14:\"Post Meta Tags\";s:11:\"description\";s:38:\"Turn on to display the post meta tags.\";s:2:\"id\";s:14:\"post_meta_tags\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"meta_font_size\";a:6:{s:5:\"label\";s:19:\"Meta Data Font Size\";s:11:\"description\";s:42:\"Controls the font size for meta data text.\";s:2:\"id\";s:14:\"meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--meta_font_size\";}}}s:11:\"date_format\";a:5:{s:5:\"label\";s:11:\"Date Format\";s:11:\"description\";s:348:\"Controls the date format for date meta data.  <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>. Leave empty to use the default value from your <a href=\"https://test-site.wlvrotary.org/wp-admin/options-general.php\" target=\"_blank\">WordPress Settings</a>\";s:2:\"id\";s:11:\"date_format\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";}}}}}s:9:\"portfolio\";a:7:{s:5:\"label\";s:9:\"Portfolio\";s:2:\"id\";s:17:\"heading_portfolio\";s:8:\"priority\";i:16;s:4:\"icon\";s:10:\"el-icon-th\";s:8:\"alt_icon\";s:21:\"fusiona-insertpicture\";s:5:\"class\";s:22:\"hidden-section-heading\";s:6:\"fields\";a:2:{s:36:\"general_portfolio_options_subsection\";a:6:{s:5:\"label\";s:17:\"General Portfolio\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:36:\"general_portfolio_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:21:{s:24:\"portfolio_archive_layout\";a:7:{s:5:\"label\";s:24:\"Portfolio Archive Layout\";s:11:\"description\";s:52:\"Controls the layout for the portfolio archive pages.\";s:2:\"id\";s:24:\"portfolio_archive_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"grid\";s:4:\"Grid\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:37:\"portfolio_archive_featured_image_size\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Featured Image Size\";s:11:\"description\";s:230:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for portfolio archive pages. <strong>IMPORTANT:</strong> Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:37:\"portfolio_archive_featured_image_size\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:5:\"Fixed\";s:4:\"full\";s:4:\"Auto\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_archive_columns\";a:7:{s:5:\"label\";s:35:\"Portfolio Archive Number of Columns\";s:11:\"description\";s:201:\"Set the number of columns per row for portfolio archive pages. With Carousel layout this specifies the maximum amount of columns. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"portfolio_archive_columns\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_column_spacing\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Column Spacing\";s:11:\"description\";s:66:\"Controls the column spacing for portfolio items for archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_column_spacing\";s:7:\"default\";s:2:\"20\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"portfolio_equal_heights\";a:8:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:57:\"Turn on to display grid boxes with equal heights per row.\";s:2:\"id\";s:23:\"portfolio_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:11:\"postMessage\";}s:42:\"portfolio_archive_one_column_text_position\";a:8:{s:5:\"label\";s:34:\"Portfolio Archive Content Position\";s:11:\"description\";s:93:\"Select if title, terms and excerpts should be displayed below or next to the featured images.\";s:2:\"id\";s:42:\"portfolio_archive_one_column_text_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"below\";s:11:\"Below image\";s:7:\"floated\";s:13:\"Next to Image\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:25:\"portfolio_archive_columns\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_archive_items\";a:7:{s:5:\"label\";s:42:\"Number of Portfolio Items Per Archive Page\";s:11:\"description\";s:169:\"Controls the number of posts that display per page for portfolio archive pages. Set to -1 to display all. Set to 0 to use the number of posts from Settings &gt; Reading.\";s:2:\"id\";s:23:\"portfolio_archive_items\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"-1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:29:\"portfolio_archive_text_layout\";a:9:{s:5:\"label\";s:29:\"Portfolio Archive Text Layout\";s:11:\"description\";s:123:\"Controls if the portfolio text content is displayed boxed or unboxed or is completely disabled for portfolio archive pages.\";s:2:\"id\";s:29:\"portfolio_archive_text_layout\";s:7:\"default\";s:7:\"no_text\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:5:\"boxed\";s:5:\"Boxed\";s:7:\"unboxed\";s:7:\"Unboxed\";}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_text_layout-padding\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:6:\"20px 0\";i:1;s:181:\"var(--portfolio_archive_layout_padding-top) var(--portfolio_archive_layout_padding-right) var(--portfolio_archive_layout_padding-bottom) var(--portfolio_archive_layout_padding-left)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:29:\"portfolio_archive_text_layout\";i:1;s:3:\"!==\";i:2;s:5:\"boxed\";}}}}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_content_length\";a:8:{s:5:\"label\";s:30:\"Portfolio Archive Text Display\";s:11:\"description\";s:67:\"Choose how to display the post excerpt for portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:7:\"excerpt\";s:7:\"Excerpt\";s:12:\"full_content\";s:12:\"Full Content\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"portfolio_archive_text_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"no_text\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_excerpt_length\";a:8:{s:5:\"label\";s:32:\"Portfolio Archive Excerpt Length\";s:11:\"description\";s:338:\"Controls the number of words in the excerpts for portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"portfolio_archive_strip_html_excerpt\";a:6:{s:5:\"label\";s:23:\"Strip HTML from Excerpt\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for portfolio archive pages.\";s:2:\"id\";s:36:\"portfolio_archive_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:31:\"portfolio_archive_title_display\";a:7:{s:5:\"label\";s:31:\"Portfolio Archive Title Display\";s:11:\"description\";s:81:\"Controls what displays with the portfolio post title for portfolio archive pages.\";s:2:\"id\";s:31:\"portfolio_archive_title_display\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:20:\"Title and Categories\";s:5:\"title\";s:10:\"Only Title\";s:4:\"cats\";s:15:\"Only Categories\";s:4:\"none\";s:4:\"None\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_text_alignment\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Text Alignment\";s:11:\"description\";s:140:\"Controls the alignment of the portfolio title, categories and excerpt text when using the Portfolio Text layouts in portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_text_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_text_alignment\";s:7:\"element\";s:33:\".fusion-portfolio-content-wrapper\";}}}s:32:\"portfolio_archive_layout_padding\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Text Layout Padding\";s:11:\"description\";s:365:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_layout_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:38:\"--portfolio_archive_layout_padding-top\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:41:\"--portfolio_archive_layout_padding-bottom\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_layout_padding-left\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:40:\"--portfolio_archive_layout_padding-right\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:5:\"right\";}}}s:33:\"portfolio_archive_pagination_type\";a:7:{s:5:\"label\";s:33:\"Portfolio Archive Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for portfolio archive pages.\";s:2:\"id\";s:33:\"portfolio_archive_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:49:\"portfolio_archive_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:99:\"Controls the background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:51:\"--portfolio_archive_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:51:\"portfolio_archive_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:93:\"Controls the text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:53:\"--portfolio_archive_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:105:\"Controls the hover background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:57:\"--portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:99:\"Controls the hover text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:59:\"--portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:14:\"portfolio_slug\";a:5:{s:5:\"label\";s:14:\"Portfolio Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:14:\"portfolio_slug\";s:7:\"default\";s:15:\"portfolio-items\";s:4:\"type\";s:4:\"text\";}s:24:\"portfolio_meta_font_size\";a:6:{s:5:\"label\";s:19:\"Meta Data Font Size\";s:11:\"description\";s:42:\"Controls the font size for meta data text.\";s:2:\"id\";s:24:\"portfolio_meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--portfolio_meta_font_size\";}}}}}s:45:\"portfolio_single_post_page_options_subsection\";a:6:{s:5:\"label\";s:21:\"Portfolio Single Post\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:45:\"portfolio_single_post_page_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:14:{s:46:\"portfolio_single_post_template_override_notice\";a:5:{s:2:\"id\";s:46:\"portfolio_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:37:\"portfolio_single_post_template_notice\";a:4:{s:2:\"id\";s:37:\"portfolio_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"portfolio_pn_nav\";a:7:{s:5:\"label\";s:24:\"Previous/Next Pagination\";s:11:\"description\";s:80:\"Turn on to display the previous/next post pagination for single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"portfolio_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:117:\"Turn on to display portfolio posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:19:\"portfolio_width_100\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:30:\"portfolio_featured_image_width\";a:9:{s:5:\"label\";s:26:\"Featured Image Column Size\";s:11:\"description\";s:79:\"Controls if the featured image is half or full width on single portfolio posts.\";s:2:\"id\";s:30:\"portfolio_featured_image_width\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:4:\"full\";s:10:\"Full Width\";s:4:\"half\";s:10:\"Half Width\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_featured_images\";a:7:{s:5:\"label\";s:42:\"Featured Image / Video on Single Post Page\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"show_first_featured_image\";a:8:{s:5:\"label\";s:20:\"First Featured Image\";s:11:\"description\";s:68:\"Turn on to display the 1st featured image on single portfolio posts.\";s:2:\"id\";s:25:\"show_first_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:33:\"show_first_featured_image_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:28:\"portfolio_project_desc_title\";a:7:{s:5:\"label\";s:25:\"Project Description Title\";s:11:\"description\";s:72:\"Turn on to show the project description title on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_project_desc_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_project_details\";a:7:{s:5:\"label\";s:15:\"Project Details\";s:11:\"description\";s:80:\"Turn on to show the project details title and content on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_project_details\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"portfolio_link_icon_target\";a:7:{s:5:\"label\";s:34:\"Open Portfolio Links In New Window\";s:11:\"description\";s:90:\"Turn on to open the single post page, project url and copyright url links in a new window.\";s:2:\"id\";s:26:\"portfolio_link_icon_target\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"portfolio_author\";a:7:{s:5:\"label\";s:6:\"Author\";s:11:\"description\";s:61:\"Turn on to display the author name on single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_author\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"portfolio_social_sharing_box\";a:7:{s:5:\"label\";s:18:\"Social Sharing Box\";s:11:\"description\";s:68:\"Turn on to display the social sharing box on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_related_posts\";a:7:{s:5:\"label\";s:16:\"Related Projects\";s:11:\"description\";s:62:\"Turn on to display related projects on single portfolio posts.\";s:2:\"id\";s:23:\"portfolio_related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"portfolio_comments\";a:7:{s:5:\"label\";s:8:\"Comments\";s:11:\"description\";s:54:\"Turn on to display comments on single portfolio posts.\";s:2:\"id\";s:18:\"portfolio_comments\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}}}}s:12:\"social_media\";a:6:{s:5:\"label\";s:12:\"Social Media\";s:2:\"id\";s:20:\"heading_social_media\";s:8:\"priority\";i:18;s:4:\"icon\";s:17:\"el-icon-share-alt\";s:8:\"alt_icon\";s:12:\"fusiona-link\";s:6:\"fields\";a:4:{s:26:\"social_media_icons_section\";a:5:{s:5:\"label\";s:18:\"Social Media Icons\";s:2:\"id\";s:26:\"social_media_icons_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:2:{s:38:\"social_media_icons_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:250:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab controls the social networks that display in legacy headers and footers. Custom icons created here can also be used in the Social Links and the Person element.</div>\";s:2:\"id\";s:38:\"social_media_icons_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"social_media_icons\";a:9:{s:5:\"label\";s:26:\"Social Media Icons / Links\";s:11:\"description\";s:131:\"Social media links use a repeater field and allow one network per field. Click the &quot;Add&quot; button to add additional fields.\";s:2:\"id\";s:18:\"social_media_icons\";s:7:\"default\";a:6:{s:25:\"fusionredux_repeater_data\";a:4:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:9:\"pinterest\";}s:3:\"url\";a:4:{i:0;s:1:\"#\";i:1;s:1:\"#\";i:2;s:1:\"#\";i:3;s:1:\"#\";}s:12:\"custom_title\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:16:\"custom_icon_mark\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"custom_source\";a:4:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;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:\"\";}i:2;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:\"\";}i:3;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:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"icon\";s:5:\"limit\";i:50;s:6:\"fields\";a:5:{s:4:\"icon\";a:6:{s:2:\"id\";s:4:\"icon\";s:4:\"type\";s:6:\"select\";s:5:\"label\";s:14:\"Social Network\";s:11:\"description\";s:53:\"Select a social network to automatically add its icon\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:36:{s:7:\"blogger\";s:7:\"Blogger\";s:10:\"deviantart\";s:10:\"Deviantart\";s:7:\"discord\";s:7:\"Discord\";s:4:\"digg\";s:4:\"Digg\";s:8:\"dribbble\";s:8:\"Dribbble\";s:7:\"dropbox\";s:7:\"Dropbox\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:6:\"forrst\";s:6:\"Forrst\";s:9:\"instagram\";s:9:\"Instagram\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:7:\"myspace\";s:7:\"Myspace\";s:6:\"paypal\";s:6:\"Paypal\";s:9:\"pinterest\";s:9:\"Pinterest\";s:6:\"reddit\";s:6:\"Reddit\";s:3:\"rss\";s:3:\"RSS\";s:5:\"skype\";s:5:\"Skype\";s:10:\"soundcloud\";s:10:\"Soundcloud\";s:7:\"spotify\";s:7:\"Spotify\";s:5:\"teams\";s:5:\"Teams\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tiktok\";s:6:\"Tiktok\";s:6:\"tumblr\";s:6:\"Tumblr\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"twitch\";s:6:\"Twitch\";s:5:\"vimeo\";s:5:\"Vimeo\";s:2:\"vk\";s:2:\"VK\";s:6:\"wechat\";s:6:\"WeChat\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:4:\"xing\";s:4:\"Xing\";s:5:\"yahoo\";s:5:\"Yahoo\";s:4:\"yelp\";s:4:\"Yelp\";s:7:\"youtube\";s:7:\"Youtube\";s:5:\"email\";s:13:\"Email Address\";s:5:\"phone\";s:5:\"Phone\";s:6:\"custom\";s:6:\"Custom\";}}s:9:\"icon_mark\";a:5:{s:4:\"type\";s:10:\"iconpicker\";s:2:\"id\";s:9:\"icon_mark\";s:7:\"heading\";s:4:\"Icon\";s:11:\"description\";s:49:\"Click an icon to select, click again to deselect.\";s:7:\"default\";s:0:\"\";}s:3:\"url\";a:5:{s:2:\"id\";s:3:\"url\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Custom Link\";s:11:\"description\";s:28:\"Insert your custom link here\";s:7:\"default\";s:0:\"\";}s:12:\"custom_title\";a:6:{s:2:\"id\";s:12:\"custom_title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:17:\"Custom Icon Title\";s:11:\"description\";s:40:\"Insert a title for your custom icon here\";s:7:\"default\";s:0:\"\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}s:13:\"custom_source\";a:7:{s:2:\"id\";s:13:\"custom_source\";s:4:\"type\";s:5:\"media\";s:5:\"label\";s:40:\"Choose the image you want to use as icon\";s:11:\"description\";s:23:\"Upload your custom icon\";s:7:\"default\";s:0:\"\";s:4:\"mode\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}}s:15:\"partial_refresh\";a:5:{s:52:\"header_content_social_media_icons_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:51:\"header_content_social_media_icons_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_content_social_media_icons\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}s:33:\"footer_content_social_media_icons\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}s:29:\"sharingbox_social_media_icons\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}}}s:27:\"header_social_icons_options\";a:7:{s:5:\"label\";s:27:\"Header Social Icons Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"header_social_icons_options\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:35:\"header_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"header_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Header override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:26:\"header_social_links_notice\";a:5:{s:2:\"id\";s:26:\"header_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:29:\"header_social_links_font_size\";a:7:{s:5:\"label\";s:28:\"Header Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the header social icons.\";s:2:\"id\";s:29:\"header_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--header_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"header_social_links_tooltip_placement\";a:8:{s:5:\"label\";s:35:\"Header Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the header social icons.\";s:2:\"id\";s:37:\"header_social_links_tooltip_placement\";s:7:\"default\";s:6:\"Bottom\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:4:\"none\";s:4:\"None\";}s:15:\"partial_refresh\";a:3:{s:71:\"header_content_header_social_links_tooltip_placement_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:70:\"header_content_header_social_links_tooltip_placement_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_color_type\";a:8:{s:5:\"label\";s:29:\"Header Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"header_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}s:15:\"partial_refresh\";a:3:{s:64:\"header_content_header_social_links_color_type_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:63:\"header_content_header_social_links_color_type_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_content_header_social_links_color_type\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_icon_color\";a:8:{s:5:\"label\";s:24:\"Header Social Icon Color\";s:11:\"description\";s:106:\"Controls the color of the header social icons. This color will be used for all social icons in the header.\";s:2:\"id\";s:30:\"header_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:1;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_social_links_boxed\";a:7:{s:5:\"label\";s:25:\"Header Social Icons Boxed\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"header_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:59:\"header_content_header_social_links_boxed_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:58:\"header_content_header_social_links_boxed_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"header_content_header_social_links_boxed\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:29:\"header_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Header Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"header_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:1;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"header_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Header Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"header_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--header_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"header_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Header Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"header_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--header_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}}}s:27:\"footer_social_icons_options\";a:7:{s:5:\"label\";s:27:\"Footer Social Icons Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"footer_social_icons_options\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:11:{s:35:\"footer_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"footer_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Footer override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:26:\"footer_social_links_notice\";a:5:{s:2:\"id\";s:26:\"footer_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:12:\"icons_footer\";a:7:{s:5:\"label\";s:34:\"Display Social Icons In The Footer\";s:11:\"description\";s:60:\"Turn on to display social icons in the footer copyright bar.\";s:2:\"id\";s:12:\"icons_footer\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:1;s:15:\"partial_refresh\";a:1:{s:27:\"footer_content_icons_footer\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_font_size\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the footer social icons.\";s:2:\"id\";s:29:\"footer_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:1;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--footer_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"footer_social_links_tooltip_placement\";a:9:{s:5:\"label\";s:35:\"Footer Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the footer social icons.\";s:2:\"id\";s:37:\"footer_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:1;s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:4:\"none\";s:4:\"None\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:52:\"footer_content_footer_social_links_tooltip_placement\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_color_type\";a:9:{s:5:\"label\";s:29:\"Footer Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"footer_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:1;s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:45:\"footer_content_footer_social_links_color_type\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_icon_color\";a:8:{s:5:\"label\";s:24:\"Footer Social Icon Color\";s:11:\"description\";s:106:\"Controls the color of the footer social icons. This color will be used for all social icons in the footer.\";s:2:\"id\";s:30:\"footer_social_links_icon_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:6:\"hidden\";b:1;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--footer_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"footer_social_links_boxed\";a:8:{s:5:\"label\";s:25:\"Footer Social Icons Boxed\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"footer_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:1;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:40:\"footer_content_footer_social_links_boxed\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"footer_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:6:\"hidden\";b:1;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--footer_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"footer_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Footer Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"footer_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:1;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--footer_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"footer_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Footer Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"footer_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:1;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--footer_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}}}s:26:\"heading_social_sharing_box\";a:5:{s:5:\"label\";s:14:\"Social Sharing\";s:2:\"id\";s:26:\"heading_social_sharing_box\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:14:{s:22:\"sharing_social_tagline\";a:6:{s:5:\"label\";s:22:\"Social Sharing Tagline\";s:11:\"description\";s:46:\"Insert a tagline for the social sharing boxes.\";s:2:\"id\";s:22:\"sharing_social_tagline\";s:7:\"default\";s:39:\"Share This Story, Choose Your Platform!\";s:4:\"type\";s:4:\"text\";s:15:\"partial_refresh\";a:1:{s:33:\"sharingbox_sharing_social_tagline\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_box_tagline_text_color\";a:6:{s:5:\"label\";s:33:\"Social Sharing Tagline Text Color\";s:11:\"description\";s:67:\"Controls the color of the tagline text in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_box_tagline_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--sharing_box_tagline_text_color\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"social_bg_color\";a:7:{s:5:\"label\";s:31:\"Social Sharing Background Color\";s:11:\"description\";s:58:\"Controls the background color of the social sharing boxes.\";s:2:\"id\";s:15:\"social_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--social_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:31:\"--social_bg_color-0-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:3:\"0px\";s:6:\"opaque\";s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-social-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"social_sharing_padding\";a:8:{s:5:\"label\";s:22:\"Social Sharing Padding\";s:11:\"description\";s:44:\"Set the padding for the social sharing box. \";s:2:\"id\";s:22:\"social_sharing_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:6:\"1.25em\";s:5:\"right\";s:6:\"1.25em\";s:6:\"bottom\";s:6:\"1.25em\";s:4:\"left\";s:6:\"1.25em\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:28:\"--social_sharing_padding-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:30:\"--social_sharing_padding-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:31:\"--social_sharing_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:29:\"--social_sharing_padding-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}}}s:26:\"social_share_box_icon_info\";a:5:{s:5:\"label\";s:20:\"Social Sharing Icons\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"social_share_box_icon_info\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:14:\"social_sharing\";a:8:{s:5:\"label\";s:14:\"Social Sharing\";s:11:\"description\";s:71:\"Select social network you want to be displayed in the social share box.\";s:2:\"id\";s:14:\"social_sharing\";s:7:\"default\";a:11:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:8:\"telegram\";i:6;s:6:\"tumblr\";i:7;s:9:\"pinterest\";i:8;s:2:\"vk\";i:9;s:4:\"xing\";i:10;s:5:\"email\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:11:{s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"reddit\";s:6:\"Reddit\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tumblr\";s:6:\"Tumblr\";s:9:\"pinterest\";s:9:\"Pinterest\";s:2:\"vk\";s:2:\"VK\";s:4:\"xing\";s:4:\"Xing\";s:5:\"email\";s:5:\"Email\";}s:22:\"social_share_box_links\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}s:30:\"sharing_social_links_font_size\";a:6:{s:5:\"label\";s:29:\"Social Sharing Icon Font Size\";s:11:\"description\";s:71:\"Controls the font size of the social icons in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_font_size\";s:7:\"element\";s:19:\".fusion-sharing-box\";}}}s:38:\"sharing_social_links_tooltip_placement\";a:7:{s:5:\"label\";s:37:\"Social Sharing Icons Tooltip Position\";s:11:\"description\";s:78:\"Controls the tooltip position of the social icons in the social sharing boxes.\";s:2:\"id\";s:38:\"sharing_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:4:\"none\";s:4:\"None\";}s:15:\"partial_refresh\";a:1:{s:49:\"sharingbox_sharing_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_color_type\";a:7:{s:5:\"label\";s:30:\"Social Sharing Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:31:\"sharing_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}s:15:\"partial_refresh\";a:1:{s:50:\"sharingbox_sharing_sharing_social_links_color_type\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_icon_color\";a:7:{s:5:\"label\";s:25:\"Social Sharing Icon Color\";s:11:\"description\";s:113:\"Controls the color of the social icons in the social sharing boxes. This color will be used for all social icons.\";s:2:\"id\";s:31:\"sharing_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--sharing_social_links_icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"sharing_social_links_boxed\";a:6:{s:5:\"label\";s:26:\"Social Sharing Icons Boxed\";s:11:\"description\";s:57:\"Controls if each social icon is displayed in a small box.\";s:2:\"id\";s:26:\"sharing_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:37:\"sharingbox_sharing_social_links_boxed\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_social_links_box_color\";a:7:{s:5:\"label\";s:29:\"Social Sharing Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:30:\"sharing_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:33:\"sharing_social_links_boxed_radius\";a:7:{s:5:\"label\";s:32:\"Social Sharing Icon Boxed Radius\";s:11:\"description\";s:47:\"Controls the box radius of the social icon box.\";s:2:\"id\";s:33:\"sharing_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--sharing_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:34:\"sharing_social_links_boxed_padding\";a:7:{s:5:\"label\";s:34:\"Social Sharing Icons Boxed Padding\";s:11:\"description\";s:53:\"Controls the interior padding of the social icon box.\";s:2:\"id\";s:34:\"sharing_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--sharing_social_links_boxed_padding\";s:7:\"element\";s:19:\".fusion-sharing-box\";}}}}}}}s:10:\"slideshows\";a:6:{s:5:\"label\";s:10:\"Slideshows\";s:2:\"id\";s:18:\"heading_slideshows\";s:8:\"priority\";i:19;s:4:\"icon\";s:15:\"el-icon-picture\";s:8:\"alt_icon\";s:15:\"fusiona-uniF61C\";s:6:\"fields\";a:7:{s:22:\"posts_slideshow_number\";a:6:{s:5:\"label\";s:22:\"Posts Slideshow Images\";s:11:\"description\";s:69:\"Controls the number of featured image boxes for blog/portfolio posts.\";s:2:\"id\";s:22:\"posts_slideshow_number\";s:7:\"default\";s:1:\"5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}}s:18:\"slideshow_autoplay\";a:6:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:35:\"Turn on to autoplay the slideshows.\";s:2:\"id\";s:18:\"slideshow_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"slideshow_smooth_height\";a:5:{s:5:\"label\";s:13:\"Smooth Height\";s:11:\"description\";s:147:\"Turn on to enable smooth height on slideshows when using images with different heights. Please note, smooth height is disabled on blog grid layout.\";s:2:\"id\";s:23:\"slideshow_smooth_height\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:15:\"slideshow_speed\";a:7:{s:5:\"label\";s:15:\"Slideshow Speed\";s:11:\"description\";s:102:\"Controls the speed of slideshows for the slider element and sliders within posts. ex: 1000 = 1 second.\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"default\";s:4:\"7000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"pagination_video_slide\";a:6:{s:5:\"label\";s:37:\"Pagination Circles Below Video Slides\";s:11:\"description\";s:117:\"Turn on to show pagination circles below a video slide for the slider element. Turn off to hide them on video slides.\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"slider_nav_box_dimensions\";a:7:{s:5:\"label\";s:25:\"Navigation Box Dimensions\";s:11:\"description\";s:52:\"Controls the width and height of the navigation box.\";s:2:\"id\";s:25:\"slider_nav_box_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:33:\"--slider_nav_box_dimensions-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:34:\"--slider_nav_box_dimensions-height\";s:6:\"choice\";s:6:\"height\";}}}s:17:\"slider_arrow_size\";a:6:{s:5:\"label\";s:21:\"Navigation Arrow Size\";s:11:\"description\";s:47:\"Controls the font size of the navigation arrow.\";s:2:\"id\";s:17:\"slider_arrow_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--slider_arrow_size\";}}}}}s:14:\"elastic_slider\";a:6:{s:5:\"label\";s:14:\"Elastic Slider\";s:2:\"id\";s:22:\"heading_elastic_slider\";s:8:\"priority\";i:20;s:4:\"icon\";s:17:\"el-icon-photo-alt\";s:8:\"alt_icon\";s:14:\"fusiona-images\";s:6:\"fields\";a:11:{s:18:\"tfes_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:179:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Elastic Slider is disabled in Advanced > Post Types section. Please enable it to see the options.</div>\";s:2:\"id\";s:18:\"tfes_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:15:\"tfes_dimensions\";a:8:{s:5:\"label\";s:25:\"Elastic Slider Dimensions\";s:11:\"description\";s:53:\"Controls the width and height for the elastic slider.\";s:2:\"id\";s:15:\"tfes_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--tfes_dimensions-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:10:\".ei-slider\";}i:1;a:3:{s:4:\"name\";s:24:\"--tfes_dimensions-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:10:\".ei-slider\";}}}s:14:\"tfes_animation\";a:8:{s:5:\"label\";s:14:\"Animation Type\";s:11:\"description\";s:64:\"Controls if the elastic slides animate from the sides or center.\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"default\";s:5:\"sides\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"sides\";s:5:\"Sides\";s:6:\"center\";s:6:\"Center\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_autoplay\";a:7:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:39:\"Turn on to autoplay the elastic slides.\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_interval\";a:8:{s:5:\"label\";s:18:\"Slideshow Interval\";s:11:\"description\";s:69:\"Controls how long each elastic slide is visible. ex: 1000 = 1 second.\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"default\";s:4:\"3000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:5:\"30000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_speed\";a:8:{s:5:\"label\";s:13:\"Sliding Speed\";s:11:\"description\";s:72:\"Controls the speed of the elastic slider slideshow. ex: 1000 = 1 second.\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_width\";a:8:{s:5:\"label\";s:15:\"Thumbnail Width\";s:11:\"description\";s:58:\"Controls the width of the elastic slider thumbnail images.\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"default\";s:3:\"150\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"500\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"es_title_font_size\";a:7:{s:5:\"label\";s:15:\"Title Font Size\";s:11:\"description\";s:48:\"Controls the font size for elastic slider title.\";s:2:\"id\";s:18:\"es_title_font_size\";s:7:\"default\";s:4:\"42px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--es_title_font_size\";s:7:\"element\";s:10:\".ei-slider\";}}}s:20:\"es_caption_font_size\";a:7:{s:5:\"label\";s:17:\"Caption Font Size\";s:11:\"description\";s:50:\"Controls the font size for elastic slider caption.\";s:2:\"id\";s:20:\"es_caption_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--es_caption_font_size\";}}}s:14:\"es_title_color\";a:7:{s:5:\"label\";s:11:\"Title Color\";s:11:\"description\";s:47:\"Controls the color of the elastic slider title.\";s:2:\"id\";s:14:\"es_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--es_title_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"es_caption_color\";a:7:{s:5:\"label\";s:13:\"Caption Color\";s:11:\"description\";s:49:\"Controls the color of the elastic slider caption.\";s:2:\"id\";s:16:\"es_caption_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--es_caption_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:8:\"lightbox\";a:6:{s:5:\"label\";s:8:\"Lightbox\";s:2:\"id\";s:16:\"heading_lightbox\";s:8:\"priority\";i:21;s:4:\"icon\";s:19:\"el-icon-info-circle\";s:8:\"alt_icon\";s:15:\"fusiona-uniF602\";s:6:\"fields\";a:17:{s:15:\"status_lightbox\";a:5:{s:5:\"label\";s:8:\"Lightbox\";s:11:\"description\";s:52:\"Turn on to enable the lightbox throughout the theme.\";s:2:\"id\";s:15:\"status_lightbox\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:22:\"status_lightbox_single\";a:6:{s:5:\"label\";s:49:\"Lightbox For Featured Images On Single Post Pages\";s:11:\"description\";s:95:\"Turn on to enable the lightbox on single blog and portfolio posts for the main featured images.\";s:2:\"id\";s:22:\"status_lightbox_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:17:\"lightbox_behavior\";a:7:{s:5:\"label\";s:17:\"Lightbox Behavior\";s:11:\"description\";s:72:\"Controls what the lightbox displays for single blog and portfolio posts.\";s:2:\"id\";s:17:\"lightbox_behavior\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:3:\"all\";s:34:\"First featured image of every post\";s:10:\"individual\";s:39:\"Only featured images of individual post\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:13:\"lightbox_skin\";a:8:{s:5:\"label\";s:13:\"Lightbox Skin\";s:11:\"description\";s:34:\"Controls the lightbox skin design.\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"default\";s:11:\"metro-white\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"light\";s:5:\"Light\";s:4:\"dark\";s:4:\"Dark\";s:3:\"mac\";s:3:\"Mac\";s:11:\"metro-black\";s:11:\"Metro Black\";s:11:\"metro-white\";s:11:\"Metro White\";s:6:\"parade\";s:6:\"Parade\";s:6:\"smooth\";s:6:\"Smooth\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_path\";a:8:{s:5:\"label\";s:19:\"Thumbnails Position\";s:11:\"description\";s:49:\"Controls the position of the lightbox thumbnails.\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"default\";s:8:\"vertical\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:8:\"vertical\";s:5:\"Right\";s:10:\"horizontal\";s:6:\"Bottom\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_animation_speed\";a:8:{s:5:\"label\";s:15:\"Animation Speed\";s:11:\"description\";s:45:\"Controls the animation speed of the lightbox.\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"default\";s:6:\"normal\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"fast\";s:4:\"Fast\";s:6:\"normal\";s:6:\"Normal\";s:4:\"slow\";s:4:\"Slow\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_arrows\";a:7:{s:5:\"label\";s:6:\"Arrows\";s:11:\"description\";s:41:\"Turn on to display arrows in the lightbox\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"lightbox_skin\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"parade\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_gallery\";a:7:{s:5:\"label\";s:25:\"Gallery Start/Stop Button\";s:11:\"description\";s:53:\"Turn on to display the gallery start and stop button.\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"lightbox_autoplay\";a:7:{s:5:\"label\";s:29:\"Autoplay the Lightbox Gallery\";s:11:\"description\";s:41:\"Turn on to autoplay the lightbox gallery.\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_slideshow_speed\";a:8:{s:5:\"label\";s:15:\"Slideshow Speed\";s:11:\"description\";s:75:\"Controls the slideshow speed if autoplay is turned on. ex: 1000 = 1 second.\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"default\";s:4:\"5000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_opacity\";a:8:{s:5:\"label\";s:18:\"Background Opacity\";s:11:\"description\";s:66:\"Controls the opacity level for the background behind the lightbox.\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"default\";s:3:\"0.9\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:4:\"0.01\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"lightbox_title\";a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:51:\"Turn on to display the image title in the lightbox.\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_desc\";a:7:{s:5:\"label\";s:7:\"Caption\";s:11:\"description\";s:53:\"Turn on to display the image caption in the lightbox.\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_social\";a:7:{s:5:\"label\";s:14:\"Social Sharing\";s:11:\"description\";s:54:\"Turn on to display social sharing buttons on lightbox.\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"lightbox_deeplinking\";a:7:{s:5:\"label\";s:11:\"Deeplinking\";s:11:\"description\";s:43:\"Turn on to deeplink images in the lightbox.\";s:2:\"id\";s:20:\"lightbox_deeplinking\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:20:\"lightbox_post_images\";a:7:{s:5:\"label\";s:28:\"Show Post Images in Lightbox\";s:11:\"description\";s:85:\"Turn on to display post images in the lightbox that are inside the post content area.\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"lightbox_video_dimensions\";a:8:{s:5:\"label\";s:26:\"Slideshow Video Dimensions\";s:11:\"description\";s:61:\"Controls the width and height for videos inside the lightbox.\";s:2:\"id\";s:25:\"lightbox_video_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_video_width\";s:6:\"choice\";s:5:\"width\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:21:\"lightbox_video_height\";s:6:\"choice\";s:6:\"height\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:5:\"forms\";a:7:{s:5:\"label\";s:5:\"Forms\";s:2:\"id\";s:5:\"forms\";s:8:\"priority\";i:21;s:8:\"is_panel\";b:1;s:4:\"icon\";s:16:\"el-icon-envelope\";s:8:\"alt_icon\";s:26:\"fusiona-avada-form-element\";s:6:\"fields\";a:4:{s:21:\"forms_styling_section\";a:5:{s:5:\"label\";s:13:\"Forms Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:21:\"forms_styling_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:33:\"forms_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:233:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all forms throughout the site, including Avada Forms and the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:33:\"forms_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"form_input_height\";a:7:{s:5:\"label\";s:28:\"Form Input and Select Height\";s:11:\"description\";s:64:\"Controls the height of all search, form input and select fields.\";s:2:\"id\";s:17:\"form_input_height\";s:7:\"default\";s:4:\"50px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{i:0;s:2:\"px\";}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:19:\"--form_input_height\";}i:1;a:2:{s:4:\"name\";s:42:\"--form_input_height-main-menu-search-width\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:22:\"calc(250px + 1.43 * $)\";i:1;s:5:\"250px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:17:\"form_input_height\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}}}s:14:\"form_text_size\";a:6:{s:5:\"label\";s:14:\"Form Font Size\";s:11:\"description\";s:35:\"Controls the size of the form text.\";s:2:\"id\";s:14:\"form_text_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--form_text_size\";s:2:\"po\";b:0;}}}s:13:\"form_bg_color\";a:6:{s:5:\"label\";s:27:\"Form Field Background Color\";s:11:\"description\";s:45:\"Controls the background color of form fields.\";s:2:\"id\";s:13:\"form_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:15:\"--form_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:15:\"form_text_color\";a:6:{s:5:\"label\";s:15:\"Form Text Color\";s:11:\"description\";s:36:\"Controls the color of the form text.\";s:2:\"id\";s:15:\"form_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:17:\"--form_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:21:\"--form_text_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}s:2:\"po\";b:0;}}}s:17:\"form_border_width\";a:7:{s:5:\"label\";s:16:\"Form Border Size\";s:11:\"description\";s:44:\"Controls the border size of the form fields.\";s:2:\"id\";s:17:\"form_border_width\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:23:\"--form_border_width-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:26:\"--form_border_width-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:24:\"--form_border_width-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:25:\"--form_border_width-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}}}s:17:\"form_border_color\";a:7:{s:5:\"label\";s:17:\"Form Border Color\";s:11:\"description\";s:310:\"Controls the border color of the form fields.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"form_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--form_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:23:\"form_focus_border_color\";a:7:{s:5:\"label\";s:26:\"Form Border Color On Focus\";s:11:\"description\";s:331:\"Controls the border color of the form fields when they have focus.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:23:\"form_focus_border_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--form_focus_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:28:\"--form_focus_border_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}s:2:\"po\";b:0;}}}s:18:\"form_border_radius\";a:7:{s:5:\"label\";s:18:\"Form Border Radius\";s:11:\"description\";s:86:\"Controls the border radius of the form fields. Also works, if border size is set to 0.\";s:2:\"id\";s:18:\"form_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--form_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";s:2:\"po\";b:0;}}}s:19:\"form_views_counting\";a:6:{s:5:\"label\";s:19:\"Form Views Counting\";s:11:\"description\";s:66:\"Select which types of users will increase the form views on visit.\";s:2:\"id\";s:19:\"form_views_counting\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:3:\"all\";s:3:\"All\";s:10:\"logged_out\";s:10:\"Logged Out\";s:10:\"non_admins\";s:10:\"Non-Admins\";}}}}s:17:\"recaptcha_section\";a:5:{s:5:\"label\";s:16:\"Google reCAPTCHA\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:17:\"recaptcha_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:7:{s:17:\"recaptcha_version\";a:7:{s:5:\"label\";s:17:\"reCAPTCHA Version\";s:11:\"description\";s:94:\"Set the reCAPTCHA version you want to use and make sure your keys below match the set version.\";s:2:\"id\";s:17:\"recaptcha_version\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"v2\";s:2:\"V2\";s:2:\"v3\";s:2:\"V3\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:16:\"recaptcha_public\";a:6:{s:5:\"label\";s:18:\"reCAPTCHA Site Key\";s:11:\"description\";s:188:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the site key.\";s:2:\"id\";s:16:\"recaptcha_public\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"recaptcha_private\";a:6:{s:5:\"label\";s:20:\"reCAPTCHA Secret Key\";s:11:\"description\";s:190:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the secret key.\";s:2:\"id\";s:17:\"recaptcha_private\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"recaptcha_color_scheme\";a:8:{s:5:\"label\";s:22:\"reCAPTCHA Color Scheme\";s:11:\"description\";s:36:\"Controls the reCAPTCHA color scheme.\";s:2:\"id\";s:22:\"recaptcha_color_scheme\";s:7:\"default\";s:5:\"light\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"light\";s:5:\"Light\";s:4:\"dark\";s:4:\"Dark\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v2\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"recaptcha_score\";a:8:{s:5:\"label\";s:24:\"reCAPTCHA Security Score\";s:11:\"description\";s:153:\"Set a threshold score that must be met by the reCAPTCHA response. The higher the score the harder it becomes for bots, but also false positives increase.\";s:2:\"id\";s:15:\"recaptcha_score\";s:7:\"default\";s:3:\"0.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\"0.1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"recaptcha_badge_position\";a:8:{s:5:\"label\";s:24:\"reCAPTCHA Badge Position\";s:11:\"description\";s:162:\"Set where and if the reCAPTCHA badge should be displayed. <strong>NOTE:</strong> Google\'s Terms and Privacy information needs to be displayed on the contact form.\";s:2:\"id\";s:24:\"recaptcha_badge_position\";s:7:\"default\";s:6:\"inline\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"inline\";s:6:\"Inline\";s:10:\"bottomleft\";s:11:\"Bottom Left\";s:11:\"bottomright\";s:12:\"Bottom Right\";s:4:\"hide\";s:4:\"Hide\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"recaptcha_login_form\";a:5:{s:5:\"label\";s:27:\"reCAPTCHA For User Elements\";s:11:\"description\";s:91:\"Turn on to add reCAPTCHA to the user login, user lost password and user registration forms.\";s:2:\"id\";s:20:\"recaptcha_login_form\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}}}s:15:\"hubspot_section\";a:5:{s:5:\"label\";s:7:\"HubSpot\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:15:\"hubspot_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:11:\"hubspot_api\";a:7:{s:5:\"label\";s:11:\"HubSpot API\";s:11:\"description\";s:51:\"Select a method to connect to your HubSpot account.\";s:2:\"id\";s:11:\"hubspot_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:7:\"API Key\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:11:\"postMessage\";}s:11:\"hubspot_key\";a:7:{s:5:\"label\";s:15:\"HubSpot API Key\";s:11:\"description\";s:187:\"Follow the steps in <a href=\"https://knowledge.hubspot.com/integrations/how-do-i-get-my-hubspot-api-key\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot docs</a> to access your API key.\";s:2:\"id\";s:11:\"hubspot_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"hubspot_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1826:\"<div id=\"fusion-hubspot-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20communication_preferences.read_write%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20communication_preferences.read_write%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with HubSpot</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with HubSpot</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1\">Revoke Access</a></div>\";s:2:\"id\";s:13:\"hubspot_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}}}s:17:\"mailchimp_section\";a:5:{s:5:\"label\";s:9:\"Mailchimp\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:17:\"mailchimp_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:13:\"mailchimp_api\";a:7:{s:5:\"label\";s:13:\"Mailchimp API\";s:11:\"description\";s:53:\"Select a method to connect to your Mailchimp account.\";s:2:\"id\";s:13:\"mailchimp_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:7:\"API Key\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"mailchimp_key\";a:7:{s:5:\"label\";s:17:\"Mailchimp API Key\";s:11:\"description\";s:157:\"Follow the steps in <a href=\"https://mailchimp.com/help/about-api-keys/\" target=\"_blank\" rel=\"noopener noreferrer\">Mailchimp docs</a> to access your API key.\";s:2:\"id\";s:13:\"mailchimp_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"mailchimp_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1464:\"<div id=\"fusion-mailchimp-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with Mailchimp</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with Mailchimp</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1\">Revoke Access</a></div>\";s:2:\"id\";s:15:\"mailchimp_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}}}}}s:7:\"contact\";a:7:{s:5:\"label\";s:16:\"Contact Template\";s:2:\"id\";s:15:\"heading_contact\";s:8:\"priority\";i:22;s:8:\"is_panel\";b:1;s:4:\"icon\";s:16:\"el el-map-marker\";s:8:\"alt_icon\";s:16:\"fusiona-envelope\";s:6:\"fields\";a:3:{s:31:\"contact_form_options_subsection\";a:6:{s:5:\"label\";s:16:\"Contact Template\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:31:\"contact_form_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:5:{s:32:\"contact_form_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:181:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the contact form that displays on the \"Contact\" page template.</div>\";s:2:\"id\";s:32:\"contact_form_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"email_address\";a:6:{s:5:\"label\";s:13:\"Email Address\";s:11:\"description\";s:110:\"Enter the email address the form should be sent to. This only works for the form on the contact page template.\";s:2:\"id\";s:13:\"email_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"contact_comment_position\";a:8:{s:5:\"label\";s:34:\"Contact Form Comment Area Position\";s:11:\"description\";s:76:\"Controls the position of the comment field with respect to the other fields.\";s:2:\"id\";s:24:\"contact_comment_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"above\";s:5:\"Above\";s:5:\"below\";s:5:\"Below\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:20:\".fusion-contact-form\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:17:\"Edit Contact Form\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:29:\"contact_form_privacy_checkbox\";a:6:{s:5:\"label\";s:37:\"Display Data Privacy Confirmation Box\";s:11:\"description\";s:139:\"Turn on to display a checkbox and custom label that has to be checked in order to confirm data privacy terms and that the form can be sent.\";s:2:\"id\";s:29:\"contact_form_privacy_checkbox\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:26:\"contact_form_privacy_label\";a:8:{s:5:\"label\";s:27:\"Data Privacy Checkbox Label\";s:11:\"description\";s:101:\"Enter the contents that should be displayed as label for the data privacy checkbox. Can contain HTML.\";s:2:\"id\";s:26:\"contact_form_privacy_label\";s:7:\"default\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"contact_form_privacy_checkbox\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:39:\"#comment-privacy-checkbox-wrapper label\";s:8:\"function\";s:4:\"html\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}}}s:18:\"google_map_section\";a:7:{s:5:\"label\";s:10:\"Google Map\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:18:\"google_map_section\";s:7:\"default\";s:10:\"Google Map\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:17:{s:24:\"google_map_disabled_note\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:24:\"google_map_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:30:\"google_map_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:269:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are for the google map that displays on the \"Contact\" page template. The only option that controls the Avada Builder google map element is the Google Maps API Key.</div>\";s:2:\"id\";s:30:\"google_map_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:8:\"gmap_api\";a:8:{s:5:\"label\";s:19:\"Google Maps API Key\";s:11:\"description\";s:271:\"Follow the steps in <a href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#key\" target=\"_blank\" rel=\"noopener noreferrer\">the Google docs</a> to get the API key. This key applies to both the contact page map and Avada Builder google map element.\";s:2:\"id\";s:8:\"gmap_api\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}s:17:\"validate_callback\";s:42:\"fusion_fusionredux_validate_google_api_key\";}s:13:\"gmap_api_type\";a:8:{s:5:\"label\";s:15:\"Google API Type\";s:11:\"description\";s:394:\"Select the Google API type that should be used to load your map. The JavaScript API allows for more options and custom styling, but could be charged for by Google depending on map loads, while the embed API can be used for free regardless of map loads. For more information please see the <a href=\"https://cloud.google.com/maps-platform/user-guide/\" target=\"_blank\">Google Maps Users Guide</a>.\";s:2:\"id\";s:13:\"gmap_api_type\";s:7:\"default\";s:2:\"js\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"js\";s:6:\"JS API\";s:5:\"embed\";s:9:\"Embed API\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:22:\"#fusion-gmap-container\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:15:\"Edit Google Map\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_embed_address\";a:7:{s:5:\"label\";s:7:\"Address\";s:11:\"description\";s:283:\"Add the address of the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates. ex: 12.381068,-1.492711.\";s:2:\"id\";s:18:\"gmap_embed_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"gmap_embed_map_type\";a:8:{s:5:\"label\";s:8:\"Map Type\";s:11:\"description\";s:41:\"Select the type of google map to display.\";s:2:\"id\";s:19:\"gmap_embed_map_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:12:\"gmap_address\";a:7:{s:5:\"label\";s:18:\"Google Map Address\";s:11:\"description\";s:411:\"Add the address to the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Single address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates with latlng=. ex: latlng=12.381068,-1.492711. For multiple addresses, separate addresses by using the | symbol. ex: Address 1|Address 2|Address 3.\";s:2:\"id\";s:12:\"gmap_address\";s:7:\"default\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"gmap_type\";a:8:{s:5:\"label\";s:15:\"Google Map Type\";s:11:\"description\";s:46:\"Controls the type of google map that displays.\";s:2:\"id\";s:9:\"gmap_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";s:6:\"hybrid\";s:6:\"Hybrid\";s:7:\"terrain\";s:7:\"Terrain\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"gmap_dimensions\";a:8:{s:5:\"label\";s:21:\"Google Map Dimensions\";s:11:\"description\";s:95:\"Controls the width and height of the google map. NOTE: height does not accept percentage value.\";s:2:\"id\";s:15:\"gmap_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:14:\"gmap_topmargin\";a:7:{s:5:\"label\";s:21:\"Google Map Top Margin\";s:11:\"description\";s:105:\"This is only applied to google maps that are not 100% width. It controls the distance to menu/page title.\";s:2:\"id\";s:14:\"gmap_topmargin\";s:7:\"default\";s:4:\"55px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--gmap_topmargin\";s:7:\"element\";s:17:\".avada-google-map\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:4:\"55px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:22:\"gmap_dimensions[width]\";i:1;s:3:\"===\";i:2;s:4:\"100%\";}}}}}}}s:14:\"map_zoom_level\";a:8:{s:5:\"label\";s:14:\"Map Zoom Level\";s:11:\"description\";s:143:\"Choose the zoom level for the map. 0 corresponds to a map of the earth fully zoomed out, and larger zoom levels zoom in at a higher resolution.\";s:2:\"id\";s:14:\"map_zoom_level\";s:7:\"default\";i:8;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:0;s:3:\"max\";i:22;s:4:\"step\";i:1;}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:7:\"map_pin\";a:7:{s:5:\"label\";s:11:\"Address Pin\";s:11:\"description\";s:46:\"Turn on to display the google map address pin.\";s:2:\"id\";s:7:\"map_pin\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_pin_animation\";a:7:{s:5:\"label\";s:21:\"Address Pin Animation\";s:11:\"description\";s:65:\"Turn on to enable address pin animation when the map first loads.\";s:2:\"id\";s:18:\"gmap_pin_animation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_popup\";a:7:{s:5:\"label\";s:18:\"Map Popup On Click\";s:11:\"description\";s:97:\"Turn on to require a click to display the popup graphic with address info for the pin on the map.\";s:2:\"id\";s:9:\"map_popup\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_scrollwheel\";a:7:{s:5:\"label\";s:25:\"Map Zoom With Scrollwheel\";s:11:\"description\";s:189:\"Turn on to enable zooming using the mouse scroll wheel. Use Cmd/Ctrl key + scroll to zoom. If set to no, zooming through two-finger movements (cooperative gesture handling) will be enabled.\";s:2:\"id\";s:15:\"map_scrollwheel\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_scale\";a:7:{s:5:\"label\";s:9:\"Map Scale\";s:11:\"description\";s:40:\"Turn on to display the google map scale.\";s:2:\"id\";s:9:\"map_scale\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_zoomcontrol\";a:7:{s:5:\"label\";s:32:\"Map Zoom &amp; Pan Control Icons\";s:11:\"description\";s:69:\"Turn on to display the google map zoom control and pan control icons.\";s:2:\"id\";s:15:\"map_zoomcontrol\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}}}s:33:\"google_map_design_styling_section\";a:6:{s:5:\"label\";s:18:\"Google Map Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:33:\"google_map_design_styling_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:9:{s:26:\"google_map_disabled_note_1\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:26:\"google_map_disabled_note_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:38:\"google_map_styling_important_note_info\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:278:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the google map that displays on the \"Contact\" page template, they do not control the google map element.  These options are only available for the JS API type.</div>\";s:2:\"id\";s:38:\"google_map_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}}s:11:\"map_styling\";a:8:{s:5:\"label\";s:22:\"Select the Map Styling\";s:11:\"description\";s:133:\"Controls the google map styles. Default is google style, Theme is our style, or choose Custom to select your own style options below.\";s:2:\"id\";s:11:\"map_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"default\";s:15:\"Default Styling\";s:5:\"theme\";s:13:\"Theme Styling\";s:6:\"custom\";s:14:\"Custom Styling\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:17:\"map_overlay_color\";a:7:{s:5:\"label\";s:17:\"Map Overlay Color\";s:11:\"description\";s:137:\"Custom styling setting only. Pick any overlaying color for the map besides pure black or white. Works best with &quot;roadmap&quot; type.\";s:2:\"id\";s:17:\"map_overlay_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_styling\";a:8:{s:5:\"label\";s:16:\"Info Box Styling\";s:11:\"description\";s:66:\"Custom styling setting only. Controls the styling of the info box.\";s:2:\"id\";s:19:\"map_infobox_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:7:\"default\";s:15:\"Default Infobox\";s:6:\"custom\";s:14:\"Custom Infobox\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_content\";a:7:{s:5:\"label\";s:16:\"Info Box Content\";s:11:\"description\";s:207:\"Custom styling setting only. Type in custom info box content to replace the default address string. For multiple addresses, separate info box contents by using the | symbol. ex: InfoBox 1|InfoBox 2|InfoBox 3\";s:2:\"id\";s:19:\"map_infobox_content\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"map_infobox_bg_color\";a:7:{s:5:\"label\";s:25:\"Info Box Background Color\";s:11:\"description\";s:68:\"Custom styling setting only. Controls the info box background color.\";s:2:\"id\";s:20:\"map_infobox_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_infobox_text_color\";a:7:{s:5:\"label\";s:19:\"Info Box Text Color\";s:11:\"description\";s:62:\"Custom styling setting only. Controls the info box text color.\";s:2:\"id\";s:22:\"map_infobox_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_custom_marker_icon\";a:7:{s:5:\"label\";s:18:\"Custom Marker Icon\";s:11:\"description\";s:228:\"Custom styling setting only. Use full image urls for custom marker icons or input &quot;theme&quot; for our custom marker. For multiple addresses, separate icons by using the | symbol or use one for all. ex: Icon 1|Icon 2|Icon 3\";s:2:\"id\";s:22:\"map_custom_marker_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}}}}}s:6:\"search\";a:6:{s:5:\"label\";s:6:\"Search\";s:2:\"id\";s:14:\"heading_search\";s:8:\"priority\";i:23;s:4:\"icon\";s:14:\"el-icon-search\";s:8:\"alt_icon\";s:14:\"fusiona-search\";s:6:\"fields\";a:2:{s:27:\"search_form_options_section\";a:6:{s:5:\"label\";s:11:\"Search Form\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"search_form_options_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:21:\"search_filter_results\";a:6:{s:5:\"label\";s:31:\"Limit Search Results Post Types\";s:11:\"description\";s:74:\"Turn on to limit the search results to specific post types you can choose.\";s:2:\"id\";s:21:\"search_filter_results\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:14:\"search_content\";a:9:{s:5:\"label\";s:22:\"Search Results Content\";s:11:\"description\";s:61:\"Controls the type of content that displays in search results.\";s:2:\"id\";s:14:\"search_content\";s:7:\"default\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:4:\"post\";s:5:\"Posts\";s:4:\"page\";s:5:\"Pages\";s:15:\"avada_portfolio\";s:15:\"Portfolio Items\";s:9:\"avada_faq\";s:9:\"FAQ Items\";s:7:\"product\";s:20:\"WooCommerce Products\";s:12:\"tribe_events\";s:21:\"Events Calendar Posts\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_filter_results\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:27:\"search_limit_to_post_titles\";a:6:{s:5:\"label\";s:27:\"Limit Search to Post Titles\";s:11:\"description\";s:48:\"Turn on to limit the search to post titles only.\";s:2:\"id\";s:27:\"search_limit_to_post_titles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"search_form_design\";a:7:{s:5:\"label\";s:18:\"Search Form Design\";s:11:\"description\";s:40:\"Controls the design of the search forms.\";s:2:\"id\";s:18:\"search_form_design\";s:7:\"default\";s:5:\"clean\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"classic\";s:7:\"Classic\";s:5:\"clean\";s:5:\"Clean\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-search-form-$\";s:12:\"remove_attrs\";a:2:{i:0;s:26:\"fusion-search-form-classic\";i:1;s:24:\"fusion-search-form-clean\";}}}}s:11:\"live_search\";a:7:{s:5:\"label\";s:18:\"Enable Live Search\";s:11:\"description\";s:90:\"Turn on to enable live search results on menu search field and other fitting search forms.\";s:2:\"id\";s:11:\"live_search\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:22:\"searchform_live_search\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:11:\"live_search\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:26:\"live_search_min_char_count\";a:9:{s:5:\"label\";s:35:\"Live Search Minimal Character Count\";s:11:\"description\";s:324:\"Set the minimal character count to trigger the live search.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"live_search_min_char_count\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"searchform_live_search_min_char_count\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:14:\"min_char_count\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:28:\"live_search_results_per_page\";a:8:{s:5:\"label\";s:27:\"Live Search Number of Posts\";s:11:\"description\";s:348:\"Controls the number of posts that should be displayed as search result suggestions.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:28:\"live_search_results_per_page\";s:7:\"default\";s:3:\"100\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:2:\"10\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:8:\"per_page\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"live_search_results_height\";a:8:{s:5:\"label\";s:36:\"Live Search Results Container Height\";s:11:\"description\";s:345:\"Controls the height of the container in which the search results will be listed.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"live_search_results_height\";s:7:\"default\";s:3:\"250\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"5\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--live_search_results_height\";s:7:\"element\";s:22:\".fusion-search-results\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"live_search_display_featured_image\";a:7:{s:5:\"label\";s:34:\"Live Search Display Featured Image\";s:11:\"description\";s:330:\"Turn on to display the featured image of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:34:\"live_search_display_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:13:\"show_feat_img\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:29:\"live_search_display_post_type\";a:7:{s:5:\"label\";s:29:\"Live Search Display Post Type\";s:11:\"description\";s:325:\"Turn on to display the post type of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:29:\"live_search_display_post_type\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:17:\"display_post_type\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:27:\"search_page_options_section\";a:6:{s:5:\"label\";s:11:\"Search Page\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"search_page_options_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:13:{s:44:\"search_page_options_template_override_notice\";a:5:{s:2:\"id\";s:44:\"search_page_options_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:35:\"search_page_options_template_notice\";a:5:{s:2:\"id\";s:35:\"search_page_options_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"search_layout\";a:8:{s:5:\"label\";s:21:\"Search Results Layout\";s:11:\"description\";s:48:\"Controls the layout for the search results page.\";s:2:\"id\";s:13:\"search_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:6:{s:5:\"large\";s:5:\"Large\";s:6:\"medium\";s:6:\"Medium\";s:15:\"large alternate\";s:15:\"Large Alternate\";s:16:\"medium alternate\";s:16:\"Medium Alternate\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:8:\"Timeline\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"search_results_per_page\";a:8:{s:5:\"label\";s:33:\"Number of Search Results Per Page\";s:11:\"description\";s:47:\"Controls the number of search results per page.\";s:2:\"id\";s:23:\"search_results_per_page\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_pagination_type\";a:8:{s:5:\"label\";s:22:\"Search Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for the search results page.\";s:2:\"id\";s:22:\"search_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"search_grid_columns\";a:10:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:48:\"Controls the number of columns for grid layouts.\";s:2:\"id\";s:19:\"search_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_grid_column_spacing\";a:10:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:47:\"Controls the column spacing for search results.\";s:2:\"id\";s:26:\"search_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--search_grid_column_spacing\";s:7:\"element\";s:24:\".fusion-blog-layout-grid\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:21:\"search_content_length\";a:8:{s:5:\"label\";s:22:\"Search Content Display\";s:11:\"description\";s:104:\"Controls if the search results content displays as an excerpt or full content or is completely disabled.\";s:2:\"id\";s:21:\"search_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:7:\"excerpt\";s:7:\"Excerpt\";s:12:\"full_content\";s:12:\"Full Content\";s:7:\"no_text\";s:7:\"No Text\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:21:\"search_excerpt_length\";a:9:{s:5:\"label\";s:21:\"Search Excerpt Length\";s:11:\"description\";s:76:\"Controls the number of words (or characters) in the search results excerpts.\";s:2:\"id\";s:21:\"search_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"search_strip_html_excerpt\";a:8:{s:5:\"label\";s:30:\"Search Strip HTML from Excerpt\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for the search results page.\";s:2:\"id\";s:25:\"search_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_featured_images\";a:7:{s:5:\"label\";s:34:\"Featured Images for Search Results\";s:11:\"description\";s:54:\"Turn on to display featured images for search results.\";s:2:\"id\";s:22:\"search_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"search_meta\";a:9:{s:5:\"label\";s:19:\"Search Results Meta\";s:11:\"description\";s:84:\"Select the post meta data you want to be displayed in the individual search results.\";s:2:\"id\";s:11:\"search_meta\";s:7:\"default\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:5:\"multi\";b:1;s:7:\"choices\";a:7:{s:6:\"author\";s:6:\"Author\";s:4:\"date\";s:4:\"Date\";s:10:\"categories\";s:10:\"Categories\";s:4:\"tags\";s:4:\"Tags\";s:8:\"comments\";s:8:\"Comments\";s:9:\"read_more\";s:14:\"Read More Link\";s:9:\"post_type\";s:9:\"Post Type\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_new_search_position\";a:8:{s:5:\"label\";s:21:\"Search Field Position\";s:11:\"description\";s:67:\"Controls the position of the search bar on the search results page.\";s:2:\"id\";s:26:\"search_new_search_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"top\";s:13:\"Above Results\";s:6:\"bottom\";s:13:\"Below Results\";s:6:\"hidden\";s:4:\"Hide\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}}}}s:7:\"privacy\";a:6:{s:5:\"label\";s:7:\"Privacy\";s:2:\"id\";s:15:\"heading_privacy\";s:8:\"priority\";i:25;s:4:\"icon\";s:12:\"el-icon-user\";s:8:\"alt_icon\";s:15:\"fusiona-privacy\";s:6:\"fields\";a:26:{s:12:\"privacy_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:502:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options in this section will help to easier comply with data privacy regulations, like the European GDPR. When the \"Privacy Consent\" option is used, Avada will create a cookie with the name <b>\"privacy_embeds\"</b> on user clients browsing your site to manage and store user consent to load the different third party embeds and tracking scripts. You may want to add information about this cookie to your privacy page.</div>\";s:2:\"id\";s:12:\"privacy_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"gfonts_load_method\";a:7:{s:2:\"id\";s:18:\"gfonts_load_method\";s:5:\"label\";s:36:\"Google &amp; Font Awesome Fonts Mode\";s:11:\"description\";s:184:\"When set to &quot;Local&quot;, the Google and Font Awesome fonts set in Global Options will be downloaded to your server. Set to &quot;CDN&quot; to use the Google and FontAwesome CDNs.\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:3:\"cdn\";s:7:\"choices\";a:2:{s:5:\"local\";s:5:\"Local\";s:3:\"cdn\";s:3:\"CDN\";}s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_embeds\";a:6:{s:5:\"label\";s:15:\"Privacy Consent\";s:11:\"description\";s:79:\"Turn on to prevent embeds and scripts from loading until user consent is given.\";s:2:\"id\";s:14:\"privacy_embeds\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_expiry\";a:8:{s:5:\"label\";s:33:\"Privacy Consent Cookie Expiration\";s:11:\"description\";s:68:\"Controls how long the consent cookie should be stored for.  In days.\";s:2:\"id\";s:14:\"privacy_expiry\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"366\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"privacy_embed_types\";a:9:{s:5:\"label\";s:21:\"Privacy Consent Types\";s:11:\"description\";s:67:\"Select the types of embeds which you would like to require consent.\";s:2:\"id\";s:19:\"privacy_embed_types\";s:7:\"default\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"privacy_embed_defaults\";a:9:{s:5:\"label\";s:30:\"Privacy Selected Consent Types\";s:11:\"description\";s:138:\"Select the types of embeds which you would like to have checked by default.  This applies to both the privacy bar and the privacy element.\";s:2:\"id\";s:22:\"privacy_embed_defaults\";s:7:\"default\";a:0:{}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"privacy_bg_color\";a:7:{s:5:\"label\";s:36:\"Privacy Placeholder Background Color\";s:11:\"description\";s:59:\"Controls the background color for the privacy placeholders.\";s:2:\"id\";s:16:\"privacy_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--privacy_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:13:\"privacy_color\";a:7:{s:5:\"label\";s:30:\"Privacy Placeholder Text Color\";s:11:\"description\";s:51:\"Controls the text color for the embed placeholders.\";s:2:\"id\";s:13:\"privacy_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"--privacy_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:11:\"privacy_bar\";a:5:{s:5:\"label\";s:11:\"Privacy Bar\";s:11:\"description\";s:58:\"Turn on to enable a privacy bar at the bottom of the page.\";s:2:\"id\";s:11:\"privacy_bar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:19:\"privacy_bar_padding\";a:8:{s:5:\"label\";s:19:\"Privacy Bar Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the privacy bar area.\";s:2:\"id\";s:19:\"privacy_bar_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"15px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:25:\"--privacy_bar_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:28:\"--privacy_bar_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:26:\"--privacy_bar_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:27:\"--privacy_bar_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:20:\"privacy_bar_bg_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Background Color\";s:11:\"description\";s:50:\"Controls the background color for the privacy bar.\";s:2:\"id\";s:20:\"privacy_bar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--privacy_bar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"privacy_bar_font_size\";a:8:{s:5:\"label\";s:21:\"Privacy Bar Font Size\";s:11:\"description\";s:51:\"Controls the font size for the privacy bar content.\";s:2:\"id\";s:21:\"privacy_bar_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--privacy_bar_font_size\";}}}s:17:\"privacy_bar_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Text Color\";s:11:\"description\";s:52:\"Controls the text color for the privacy bar content.\";s:2:\"id\";s:17:\"privacy_bar_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--privacy_bar_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"privacy_bar_link_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Link Color\";s:11:\"description\";s:44:\"Controls the link color for the privacy bar.\";s:2:\"id\";s:22:\"privacy_bar_link_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--privacy_bar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"privacy_bar_link_hover_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Link Hover Color\";s:11:\"description\";s:50:\"Controls the link hover color for the privacy bar.\";s:2:\"id\";s:28:\"privacy_bar_link_hover_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--privacy_bar_link_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"privacy_bar_text\";a:7:{s:5:\"label\";s:16:\"Privacy Bar Text\";s:11:\"description\";s:59:\"Enter the text which you want to appear on the privacy bar.\";s:2:\"id\";s:16:\"privacy_bar_text\";s:7:\"default\";s:51:\"This website uses cookies and third party services.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_text\";a:7:{s:5:\"label\";s:23:\"Privacy Bar Button Text\";s:11:\"description\";s:56:\"Controls the button text for the privacy bar acceptance.\";s:2:\"id\";s:23:\"privacy_bar_button_text\";s:7:\"default\";s:2:\"OK\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_button_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_save\";a:7:{s:5:\"label\";s:32:\"Privacy Bar Button Save On Click\";s:11:\"description\";s:201:\"If enabled, when the button is clicked it will save the default consent selection.  If disabled the button will only save the preferences after a checkbox has been changed (bar will be hidden however).\";s:2:\"id\";s:23:\"privacy_bar_button_save\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:16:\"avadaPrivacyVars\";s:2:\"id\";s:6:\"button\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"privacy_bar_more\";a:7:{s:5:\"label\";s:20:\"Privacy Bar Settings\";s:11:\"description\";s:132:\"If enabled, a settings section will be added to show more information and to provide checkboxes for tracking and third party embeds.\";s:2:\"id\";s:16:\"privacy_bar_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_more_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:21:\"privacy_bar_more_text\";a:7:{s:5:\"label\";s:25:\"Privacy Bar Settings Text\";s:11:\"description\";s:52:\"Controls the link text for the privacy bar settings.\";s:2:\"id\";s:21:\"privacy_bar_more_text\";s:7:\"default\";s:8:\"Settings\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:29:\"privacy_bar_more_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_update_text\";a:7:{s:5:\"label\";s:30:\"Privacy Bar Update Button Text\";s:11:\"description\";s:74:\"Controls the button text for the privacy bar after a checkbox has changed.\";s:2:\"id\";s:23:\"privacy_bar_update_text\";s:7:\"default\";s:15:\"Update Settings\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:2;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_update_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:30:\"privacy_bar_headings_font_size\";a:7:{s:5:\"label\";s:29:\"Privacy Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the privacy bar heading text.\";s:2:\"id\";s:30:\"privacy_bar_headings_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}s:26:\"privacy_bar_headings_color\";a:7:{s:5:\"label\";s:26:\"Privacy Bar Headings Color\";s:11:\"description\";s:56:\"Controls the text color of the privacy bar heading font.\";s:2:\"id\";s:26:\"privacy_bar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--privacy_bar_headings_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"privacy_bar_content\";a:9:{s:5:\"label\";s:19:\"Privacy Bar Content\";s:11:\"description\";s:144:\"The privacy bar content uses a repeater field to select the content for each column. Click the &quot;Add&quot; button to add additional columns.\";s:2:\"id\";s:19:\"privacy_bar_content\";s:7:\"default\";a:0:{}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:5:\"title\";s:5:\"limit\";i:6;s:6:\"fields\";a:3:{s:4:\"type\";a:5:{s:2:\"id\";s:4:\"type\";s:4:\"type\";s:6:\"select\";s:11:\"description\";s:45:\"Select the type of cookie/content to display.\";s:7:\"default\";s:6:\"custom\";s:7:\"choices\";a:3:{s:6:\"custom\";s:6:\"Custom\";s:8:\"tracking\";s:16:\"Tracking Cookies\";s:6:\"embeds\";s:18:\"Third Party Embeds\";}}s:5:\"title\";a:4:{s:2:\"id\";s:5:\"title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Title for the content\";s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:2:\"id\";s:11:\"description\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:27:\"Description for the content\";s:7:\"default\";s:0:\"\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}s:18:\"privacy_bar_reject\";a:7:{s:5:\"label\";s:25:\"Privacy Bar Reject Button\";s:11:\"description\";s:91:\"If enabled, the privacy bar will be extended with a button that allows users to reject all.\";s:2:\"id\";s:18:\"privacy_bar_reject\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:26:\"privacy_bar_reject_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_reject_text\";a:7:{s:5:\"label\";s:30:\"Privacy Bar Reject Button Text\";s:11:\"description\";s:57:\"Controls the link text for the privacy bar reject button.\";s:2:\"id\";s:23:\"privacy_bar_reject_text\";s:7:\"default\";s:6:\"Reject\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:18:\"privacy_bar_reject\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:2;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_reject_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}}}s:6:\"extras\";a:6:{s:5:\"label\";s:6:\"Extras\";s:2:\"id\";s:13:\"extra_section\";s:8:\"priority\";i:24;s:4:\"icon\";s:12:\"el-icon-cogs\";s:8:\"alt_icon\";s:11:\"fusiona-cog\";s:6:\"fields\";a:5:{s:20:\"misc_options_section\";a:6:{s:5:\"label\";s:13:\"Miscellaneous\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"misc_options_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:21:{s:16:\"sidenav_behavior\";a:7:{s:5:\"label\";s:24:\"Side Navigation Behavior\";s:11:\"description\";s:89:\"Controls if the child pages show on click or hover for the side navigation page template.\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"default\";s:5:\"hover\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"hover\";s:5:\"Hover\";s:5:\"click\";s:5:\"Click\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:16:\"avadaSideNavVars\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"side_nav_font_size\";a:7:{s:5:\"label\";s:25:\"Side Navigation Font Size\";s:11:\"description\";s:86:\"Controls the font size for the menu text when using the side navigation page template.\";s:2:\"id\";s:18:\"side_nav_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--side_nav_font_size\";s:7:\"element\";s:9:\".side-nav\";}}}s:10:\"post_views\";a:6:{s:5:\"label\";s:18:\"Post Views Counter\";s:11:\"description\";s:214:\"Set the method to update the post views, or disable them entirely. &quot;Page Load&quot; option will update using PHP when a page is retrieved. &quot;Ajax&quot; will send an additional request after the page loads.\";s:2:\"id\";s:10:\"post_views\";s:7:\"default\";s:9:\"page_load\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:9:\"page_load\";s:9:\"Page Load\";s:4:\"ajax\";s:4:\"Ajax\";s:8:\"disabled\";s:8:\"Disabled\";}}s:19:\"post_views_counting\";a:6:{s:5:\"label\";s:29:\"Post Views User Type Counting\";s:11:\"description\";s:62:\"Select which types of users will increase post views on visit.\";s:2:\"id\";s:19:\"post_views_counting\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:3:\"all\";s:3:\"All\";s:10:\"logged_out\";s:10:\"Logged Out\";s:10:\"non_admins\";s:10:\"Non-Admins\";}}s:26:\"featured_image_placeholder\";a:6:{s:5:\"label\";s:18:\"Image Placeholders\";s:11:\"description\";s:175:\"Turn on to display a placeholder image for posts that do not have a featured image. This allows the post to display on portfolio archives and related posts/projects carousels.\";s:2:\"id\";s:26:\"featured_image_placeholder\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:5:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";s:11:\"js_callback\";a:1:{i:0;s:17:\"noPortfolioOnPage\";}}}}s:12:\"excerpt_base\";a:6:{s:5:\"label\";s:24:\"Basis for Excerpt Length\";s:11:\"description\";s:63:\"Controls if the excerpt length is based on words or characters.\";s:2:\"id\";s:12:\"excerpt_base\";s:7:\"default\";s:5:\"words\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"words\";s:5:\"Words\";s:10:\"characters\";s:10:\"Characters\";}}s:16:\"disable_excerpts\";a:5:{s:5:\"label\";s:32:\"Display Excerpt Read More Symbol\";s:11:\"description\";s:72:\"Turn on to display the read more symbol on excerpts throughout the site.\";s:2:\"id\";s:16:\"disable_excerpts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:13:\"blog_subtitle\";a:6:{s:5:\"label\";s:24:\"Excerpt Read More Symbol\";s:11:\"description\";s:94:\"Set the excerpt read more symbol, HTML code is allowed. If left empty it will be set to [...].\";s:2:\"id\";s:24:\"excerpt_read_more_symbol\";s:7:\"default\";s:5:\"[...]\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"link_read_more\";a:6:{s:5:\"label\";s:44:\"Make Excerpt Symbol Link to Single Post Page\";s:11:\"description\";s:78:\"Turn on to have the read more symbol on excerpts link to the single post page.\";s:2:\"id\";s:14:\"link_read_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:12:\"avatar_shape\";a:7:{s:5:\"label\";s:12:\"Avatar Shape\";s:11:\"description\";s:72:\"Set the shape for Avatars used in comments, author info and other areas.\";s:2:\"id\";s:12:\"avatar_shape\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"square\";s:6:\"Square\";s:6:\"circle\";s:6:\"Circle\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:15:\"fusion-avatar-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-avatar-square\";i:1;s:20:\"fusion-avatar-circle\";}}}}s:14:\"comments_pages\";a:5:{s:5:\"label\";s:17:\"Comments on Pages\";s:11:\"description\";s:43:\"Turn on to allow comments on regular pages.\";s:2:\"id\";s:14:\"comments_pages\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"featured_images_pages\";a:6:{s:5:\"label\";s:24:\"Featured Images on Pages\";s:11:\"description\";s:52:\"Turn on to display featured images on regular pages.\";s:2:\"id\";s:21:\"featured_images_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"featured_images_pages_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:21:\"nofollow_social_links\";a:6:{s:5:\"label\";s:40:\"Add &quot;nofollow&quot; to social links\";s:11:\"description\";s:66:\"Turn on to add &quot;nofollow&quot; attribute to all social links.\";s:2:\"id\";s:21:\"nofollow_social_links\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"social_icons_new\";a:6:{s:5:\"label\";s:33:\"Open Social Icons in a New Window\";s:11:\"description\";s:54:\"Turn on to allow social icons to open in a new window.\";s:2:\"id\";s:16:\"social_icons_new\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"totop_position\";a:7:{s:5:\"label\";s:21:\"ToTop Button Position\";s:11:\"description\";s:97:\"Controls the position of the ToTop button. On mobiles also non-floating layouts will be floating.\";s:2:\"id\";s:14:\"totop_position\";s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"left\";s:4:\"Left\";s:13:\"left_floating\";s:13:\"Left Floating\";s:5:\"right\";s:5:\"Right\";s:14:\"right_floating\";s:14:\"Right Floating\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:14:\"totop_position\";s:7:\"trigger\";a:1:{i:0;s:18:\"updateToTopPostion\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"totop_border_radius\";a:7:{s:5:\"label\";s:19:\"ToTop Border Radius\";s:11:\"description\";s:128:\"Controls the border radius of the ToTop button. For non-floating layouts the border radius will only apply to the upper corners.\";s:2:\"id\";s:19:\"totop_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--totop_border_radius\";s:7:\"element\";s:6:\"#toTop\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"totop_scroll_down_only\";a:6:{s:5:\"label\";s:30:\"ToTop Show on Scroll Down Only\";s:11:\"description\";s:108:\"Turn on to show the ToTop button on scroll down only. Otherwise it will always show if the page is scrolled.\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"custom_scrollbar\";a:6:{s:5:\"label\";s:16:\"Custom Scrollbar\";s:11:\"description\";s:132:\"Turn on if you want to change the background and handle color of the scrollbar. Styling and support varies depending on the browser.\";s:2:\"id\";s:16:\"custom_scrollbar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:10:\"awb-scroll\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"scrollbar_background\";a:7:{s:5:\"label\";s:20:\"Scrollbar Background\";s:11:\"description\";s:48:\"Controls the background color for the scrollbar.\";s:2:\"id\";s:20:\"scrollbar_background\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--scrollbar_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:16:\"scrollbar_handle\";a:7:{s:5:\"label\";s:22:\"Scrollbar Handle Color\";s:11:\"description\";s:44:\"Controls the color for the scrollbar handle.\";s:2:\"id\";s:16:\"scrollbar_handle\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--scrollbar_handle\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:8:\"faq_slug\";a:5:{s:5:\"label\";s:8:\"FAQ Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:8:\"faq_slug\";s:7:\"default\";s:9:\"faq-items\";s:4:\"type\";s:4:\"text\";}}}s:21:\"related_posts_section\";a:5:{s:5:\"label\";s:24:\"Related Posts / Projects\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:21:\"related_posts_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:20:\"related_posts_layout\";a:7:{s:5:\"label\";s:31:\"Related Posts / Projects Layout\";s:11:\"description\";s:65:\"Controls the layout style for related posts and related projects.\";s:2:\"id\";s:20:\"related_posts_layout\";s:7:\"default\";s:17:\"title_on_rollover\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:17:\"title_on_rollover\";s:17:\"Title on rollover\";s:17:\"title_below_image\";s:17:\"Title below image\";}s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:20:\"number_related_posts\";a:7:{s:5:\"label\";s:34:\"Number of Related Posts / Projects\";s:11:\"description\";s:80:\"Controls the number of related posts and projects that display on a single post.\";s:2:\"id\";s:20:\"number_related_posts\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:28:\"number_related_posts_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:21:\"related_posts_columns\";a:8:{s:5:\"label\";s:40:\"Related Posts / Projects Maximum Columns\";s:11:\"description\";s:73:\"Controls the number of columns for the related posts and projects layout.\";s:2:\"id\";s:21:\"related_posts_columns\";s:7:\"default\";i:4;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:15:\"partial_refresh\";a:1:{s:29:\"related_posts_columns_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--related_posts_columns\";}}}s:28:\"related_posts_column_spacing\";a:8:{s:5:\"label\";s:39:\"Related Posts / Projects Column Spacing\";s:11:\"description\";s:82:\"Controls the amount of spacing between columns for the related posts and projects.\";s:2:\"id\";s:28:\"related_posts_column_spacing\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:15:\"partial_refresh\";a:1:{s:36:\"related_posts_column_spacing_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--related_posts_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:24:\"related_posts_image_size\";a:7:{s:5:\"label\";s:35:\"Related Posts / Projects Image Size\";s:11:\"description\";s:216:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for related posts and projects. IMPORTANT: Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:24:\"related_posts_image_size\";s:7:\"default\";s:7:\"cropped\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:5:\"Fixed\";s:4:\"full\";s:4:\"Auto\";}s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_image_size_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:22:\"related_posts_autoplay\";a:6:{s:5:\"label\";s:33:\"Related Posts / Projects Autoplay\";s:11:\"description\";s:59:\"Turn on to autoplay the related posts and project carousel.\";s:2:\"id\";s:22:\"related_posts_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:30:\"related_posts_autoplay_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_speed\";a:7:{s:5:\"label\";s:30:\"Related Posts / Projects Speed\";s:11:\"description\";s:78:\"Controls the speed of related posts and project carousel. ex: 1000 = 1 second.\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"default\";s:4:\"2500\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:18:\"fusionCarouselVars\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"related_posts_navigation\";a:6:{s:5:\"label\";s:40:\"Related Posts / Projects Show Navigation\";s:11:\"description\";s:53:\"Turn on to display navigation arrows on the carousel.\";s:2:\"id\";s:24:\"related_posts_navigation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_navigation_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_swipe\";a:6:{s:5:\"label\";s:37:\"Related Posts / Projects Mouse Scroll\";s:11:\"description\";s:53:\"Turn on to enable mouse drag control on the carousel.\";s:2:\"id\";s:19:\"related_posts_swipe\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:27:\"related_posts_swipe_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:25:\"related_posts_swipe_items\";a:7:{s:5:\"label\";s:37:\"Related Posts / Projects Scroll Items\";s:11:\"description\";s:101:\"Controls the number of items that scroll at one time. Set to 0 to scroll the number of visible items.\";s:2:\"id\";s:25:\"related_posts_swipe_items\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"15\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:33:\"related_posts_swipe_items_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}}}s:20:\"rollover_sub_section\";a:5:{s:5:\"label\";s:23:\"Featured Image Rollover\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"rollover_sub_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:11:{s:14:\"image_rollover\";a:6:{s:5:\"label\";s:14:\"Image Rollover\";s:11:\"description\";s:78:\"Turn on to display the rollover graphic on blog and portfolio featured images.\";s:2:\"id\";s:14:\"image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:12:\"full_refresh\";a:1:{s:29:\"image_rollover_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:24:\"image_rollover_direction\";a:8:{s:5:\"label\";s:24:\"Image Rollover Direction\";s:11:\"description\";s:313:\"Controls the direction the rollover starts from.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"image_rollover_direction\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:4:\"fade\";s:4:\"Fade\";s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:3:\"top\";s:3:\"Top\";s:12:\"center_horiz\";s:17:\"Center Horizontal\";s:15:\"center_vertical\";s:15:\"Center Vertical\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-image-rollover-direction-$\";s:12:\"remove_attrs\";a:7:{i:0;s:35:\"avada-image-rollover-direction-fade\";i:1;s:35:\"avada-image-rollover-direction-left\";i:2;s:36:\"avada-image-rollover-direction-right\";i:3;s:37:\"avada-image-rollover-direction-bottom\";i:4;s:34:\"avada-image-rollover-direction-top\";i:5;s:43:\"avada-image-rollover-direction-center_horiz\";i:6;s:46:\"avada-image-rollover-direction-center_vertical\";}}}}s:24:\"image_rollover_icon_size\";a:7:{s:5:\"label\";s:29:\"Image Rollover Icon Font Size\";s:11:\"description\";s:40:\"Controls the size of the rollover icons.\";s:2:\"id\";s:24:\"image_rollover_icon_size\";s:7:\"default\";s:4:\"15px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--image_rollover_icon_size\";}}}s:20:\"image_rollover_icons\";a:8:{s:5:\"label\";s:20:\"Image Rollover Icons\";s:11:\"description\";s:27:\"Choose which icons display.\";s:2:\"id\";s:20:\"image_rollover_icons\";s:7:\"default\";s:8:\"linkzoom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:8:\"linkzoom\";s:11:\"Link + Zoom\";s:4:\"link\";s:4:\"Link\";s:4:\"zoom\";s:4:\"Zoom\";s:2:\"no\";s:8:\"No Icons\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:12:\"full_refresh\";a:1:{s:28:\"image_rollover_icons_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:20:\"title_image_rollover\";a:7:{s:5:\"label\";s:20:\"Image Rollover Title\";s:11:\"description\";s:321:\"Turn on to display the post title in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"title_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:28:\"title_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:19:\"cats_image_rollover\";a:7:{s:5:\"label\";s:25:\"Image Rollover Categories\";s:11:\"description\";s:326:\"Turn on to display the post categories in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"cats_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:27:\"cats_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:26:\"icon_circle_image_rollover\";a:7:{s:5:\"label\";s:26:\"Image Rollover Icon Circle\";s:11:\"description\";s:333:\"Turn on to display the icon background circle in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"icon_circle_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-image-rollover-circle-yes\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-image-rollover-circle-no\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"image_gradient_top_color\";a:7:{s:5:\"label\";s:33:\"Image Rollover Gradient Top Color\";s:11:\"description\";s:321:\"Controls the top color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"image_gradient_top_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 20%))\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--image_gradient_top_color\";s:7:\"element\";s:21:\".fusion-image-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"image_gradient_bottom_color\";a:7:{s:5:\"label\";s:36:\"Image Rollover Gradient Bottom Color\";s:11:\"description\";s:324:\"Controls the bottom color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:27:\"image_gradient_bottom_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:29:\"--image_gradient_bottom_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_text_color\";a:7:{s:5:\"label\";s:28:\"Image Rollover Element Color\";s:11:\"description\";s:337:\"Controls the color of image rollover text and icon circular backgrounds.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:25:\"image_rollover_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--image_rollover_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_icon_color\";a:7:{s:5:\"label\";s:25:\"Image Rollover Icon Color\";s:11:\"description\";s:319:\"Controls the color of the icons in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:25:\"image_rollover_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--image_rollover_icon_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:22:\"pagination_box_section\";a:5:{s:5:\"label\";s:10:\"Pagination\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"pagination_box_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:30:\"pagination_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:222:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all pagination throughout the site, including the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:30:\"pagination_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"pagination_sizing\";a:7:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:17:\"Pagination Sizing\";s:11:\"description\";s:63:\"Set on which dimension the pagination box size should be based.\";s:2:\"id\";s:17:\"pagination_sizing\";s:7:\"default\";s:12:\"width_height\";s:7:\"choices\";a:2:{s:12:\"width_height\";s:18:\"Width/Height Based\";s:7:\"padding\";s:13:\"Padding Based\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"avada-has-pagination-$\";s:12:\"remove_attrs\";a:2:{i:0;s:28:\"avada-has-pagination-padding\";i:1;s:33:\"avada-has-pagination-width_height\";}}}}s:23:\"pagination_width_height\";a:8:{s:5:\"label\";s:27:\"Pagination Box Width/Height\";s:11:\"description\";s:58:\"Controls the width and height of the displayed page links.\";s:2:\"id\";s:23:\"pagination_width_height\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"5\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_width_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"pagination_box_padding\";a:8:{s:5:\"label\";s:22:\"Pagination Box Padding\";s:11:\"description\";s:49:\"Controls the padding inside the pagination boxes.\";s:2:\"id\";s:22:\"pagination_box_padding\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:30:\"--pagination_box_padding-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:31:\"--pagination_box_padding-height\";s:6:\"choice\";s:6:\"height\";}}}s:23:\"pagination_border_width\";a:7:{s:5:\"label\";s:23:\"Pagination Border Width\";s:11:\"description\";s:54:\"Controls the border width of the displayed page links.\";s:2:\"id\";s:23:\"pagination_border_width\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"25\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_border_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:24:\"pagination_border_radius\";a:7:{s:5:\"label\";s:24:\"Pagination Border Radius\";s:11:\"description\";s:125:\"Controls the border radius of the displayed page links. Values of half the overall width or higher will yield circular links.\";s:2:\"id\";s:24:\"pagination_border_radius\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--pagination_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"pagination_text_display\";a:6:{s:5:\"label\";s:23:\"Pagination Text Display\";s:11:\"description\";s:54:\"Turn on to display the &quot;Previous/Next&quot; text.\";s:2:\"id\";s:23:\"pagination_text_display\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"fusion-show-pagination-text\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"pagination_font_size\";a:6:{s:5:\"label\";s:20:\"Pagination Font Size\";s:11:\"description\";s:41:\"Controls the size of the pagination text.\";s:2:\"id\";s:20:\"pagination_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--pagination_font_size\";}}}s:16:\"pagination_range\";a:7:{s:5:\"label\";s:16:\"Pagination Range\";s:11:\"description\";s:75:\"Controls the number of page links displayed left and right of current page.\";s:2:\"id\";s:16:\"pagination_range\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}s:26:\"pagination_start_end_range\";a:7:{s:5:\"label\";s:28:\"Pagination Start / End Range\";s:11:\"description\";s:86:\"Controls the number of page links displayed at the start and at the end of pagination.\";s:2:\"id\";s:26:\"pagination_start_end_range\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:34:\"pagination_start_end_range_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}}}s:15:\"gridbox_section\";a:5:{s:5:\"label\";s:14:\"Grid / Masonry\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:15:\"gridbox_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:9:{s:35:\"gridbox_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:302:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Grid Box Styling global options that apply to grid boxes throughout the site; blog grid and timeline, portfolio boxed layout and WooCommerce boxes. Blog / Portfolio elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"timeline_bg_color\";a:6:{s:5:\"label\";s:14:\"Grid Box Color\";s:11:\"description\";s:49:\"Controls the background color for the grid boxes.\";s:2:\"id\";s:17:\"timeline_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:19:\"--timeline_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:36:\"--timeline_bg_color-20px-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:4:\"20px\";}}}i:2;a:2:{s:4:\"name\";s:35:\"--timeline_bg_color-not-transparent\";s:8:\"callback\";a:2:{i:0;s:25:\"get_non_transparent_color\";i:1;s:0:\"\";}}}}s:14:\"timeline_color\";a:7:{s:5:\"label\";s:18:\"Grid Element Color\";s:11:\"description\";s:83:\"Controls the color of borders/date box/timeline dots and arrows for the grid boxes.\";s:2:\"id\";s:14:\"timeline_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--timeline_color\";s:11:\"js_callback\";a:1:{i:0;s:21:\"timeLineColorCallback\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-has-transparent-timeline_color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"grid_separator_style_type\";a:7:{s:5:\"label\";s:20:\"Grid Separator Style\";s:11:\"description\";s:229:\"Controls the line style of grid separators. <strong>NOTE:</strong> For blog and portfolio grids at least one meta data field must be enabled and excerpt or full content must be shown in order that the separator will be displayed.\";s:2:\"id\";s:25:\"grid_separator_style_type\";s:7:\"default\";s:12:\"double|solid\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"none\";s:8:\"No Style\";s:12:\"single|solid\";s:19:\"Single Border Solid\";s:12:\"double|solid\";s:19:\"Double Border Solid\";s:13:\"single|dashed\";s:20:\"Single Border Dashed\";s:13:\"double|dashed\";s:20:\"Double Border Dashed\";s:13:\"single|dotted\";s:20:\"Single Border Dotted\";s:13:\"double|dotted\";s:20:\"Double Border Dotted\";s:6:\"shadow\";s:6:\"Shadow\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:1:{i:0;s:14:\"updateGridSeps\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_separator_color\";a:7:{s:5:\"label\";s:20:\"Grid Separator Color\";s:11:\"description\";s:49:\"Controls the line style color of grid separators.\";s:2:\"id\";s:20:\"grid_separator_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--grid_separator_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:36:\"avada-has-transparent-grid-sep-color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_masonry_heading\";a:4:{s:5:\"label\";s:15:\"Masonry Options\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"grid_masonry_heading\";s:4:\"type\";s:4:\"info\";}s:35:\"gridbox_masonry_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:285:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Masonry global options that apply to the Blog / Portfolio / Gallery elements in addition to Blog and Portfolio archives. Blog / Portfolio / Gallery elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_masonry_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"masonry_grid_ratio\";a:7:{s:5:\"label\";s:26:\"Masonry Image Aspect Ratio\";s:11:\"description\";s:286:\"Set the ratio to decide when an image should become landscape (ratio being width : height) and portrait (ratio being height : width). <strong>IMPORTANT:</strong> The value of \"1.0\" represents a special case, which will use the auto calculated ratios like in versions prior to Avada 5.5.\";s:2:\"id\";s:18:\"masonry_grid_ratio\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";d:1;s:3:\"max\";d:4;s:4:\"step\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"full_refresh\";a:1:{s:26:\"masonry_grid_ratio_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}s:20:\"masonry_width_double\";a:7:{s:5:\"label\";s:17:\"Masonry 2x2 Width\";s:11:\"description\";s:381:\"This option decides when a square 1x1 image should become 2x2. This will not apply to images that highly favor landscape or portrait layouts. <strong>IMPORTANT:</strong> There is a “Masonry Image Layout” setting for every image in the WP media library that allows you to manually set how an image will appear (1x1, landscape, portrait or 2x2), regardless of the original ratio.\";s:2:\"id\";s:20:\"masonry_width_double\";s:7:\"default\";s:4:\"2000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:200;s:3:\"max\";i:5120;s:4:\"step\";i:1;}s:12:\"full_refresh\";a:1:{s:28:\"masonry_width_double_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}}}}}s:8:\"advanced\";a:7:{s:5:\"label\";s:8:\"Advanced\";s:2:\"id\";s:16:\"heading_advanced\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:25;s:4:\"icon\";s:14:\"el-icon-puzzle\";s:8:\"alt_icon\";s:17:\"fusiona-dashboard\";s:6:\"fields\";a:3:{s:22:\"theme_features_section\";a:5:{s:5:\"label\";s:8:\"Features\";s:2:\"id\";s:22:\"theme_features_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:25:{s:23:\"enable_language_updates\";a:6:{s:5:\"label\";s:23:\"Enable Language Updates\";s:11:\"description\";s:165:\"If your site is using a language other than English, enabling this option will allow you to get updated language files for your locale as soon as they are available.\";s:2:\"id\";s:23:\"enable_language_updates\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"dependencies_status\";a:6:{s:5:\"label\";s:40:\"Avada&#039;s Option Network Dependencies\";s:11:\"description\";s:381:\"Avada&#039;s Option Network consists of Global Options, Page Options and Builder Options and each of them have dependent options ON by default. This means the only options you see are the only ones currently available for your selection. However, if you wish to disable this feature, simply turn this option off, and all dependencies will be disabled (requires save &amp; refresh).\";s:2:\"id\";s:19:\"dependencies_status\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_code_block_encoding\";a:6:{s:5:\"label\";s:19:\"Code Block Encoding\";s:11:\"description\";s:92:\"Turn on to enable encoding in the Avada Builder code block and syntax highlighting elements.\";s:2:\"id\";s:27:\"disable_code_block_encoding\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"disable_megamenu\";a:6:{s:5:\"label\";s:16:\"Legacy Mega Menu\";s:11:\"description\";s:48:\"Turn on to enable Avada&#039;s legacy mega menu.\";s:2:\"id\";s:16:\"disable_megamenu\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"theme_features_disable_megamenu\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"status_widget_areas\";a:6:{s:5:\"label\";s:19:\"Legacy Widget Areas\";s:11:\"description\";s:55:\"Turn on to enable the legacy widget areas of WordPress.\";s:2:\"id\";s:19:\"status_widget_areas\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"status_avada_studio\";a:6:{s:5:\"label\";s:12:\"Avada Studio\";s:11:\"description\";s:31:\"Turn on to enable Avada studio.\";s:2:\"id\";s:19:\"status_avada_studio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"avada_rev_styles\";a:7:{s:5:\"label\";s:34:\"Avada Styles For Slider Revolution\";s:11:\"description\";s:80:\"Turn on to enable the Avada styles and use the default Slider Revolution styles.\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:28:\"--avada-rev-image-shadow-top\";s:13:\"value_pattern\";s:91:\"url(\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/shadow-top.png\")\";s:7:\"element\";s:12:\".shadow-left\";}i:1;a:3:{s:4:\"name\";s:31:\"--avada-rev-image-shadow-bottom\";s:13:\"value_pattern\";s:94:\"url(\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/shadow-bottom.png\")\";s:7:\"element\";s:13:\".shadow-right\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-rev-slider-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:12:\"avadaRevVars\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"trigger\";a:2:{i:0;s:15:\"DestoryRevStyle\";i:1;s:12:\"AddRevStyles\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"avada_styles_dropdowns\";a:6:{s:5:\"label\";s:21:\"Avada Dropdown Styles\";s:11:\"description\";s:154:\"Turn on to enable the Avada styles for dropdown/select fields site wide. This should be done if you experience any issues with 3rd party plugin dropdowns.\";s:2:\"id\";s:22:\"avada_styles_dropdowns\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:21:\"avada-dropdown-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaSelectVars\";s:2:\"id\";s:15:\"avada_drop_down\";s:7:\"trigger\";a:2:{i:0;s:18:\"DestoryAvadaSelect\";i:1;s:14:\"AddAvadaSelect\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:27:\"disable_mobile_image_hovers\";a:6:{s:5:\"label\";s:37:\"CSS Image Hover Animations on Mobiles\";s:11:\"description\";s:56:\"Turn on to enable CSS image hover animations on mobiles.\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"avadaMobileImageVars\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"trigger\";a:1:{i:0;s:32:\"fusionDeactivateMobileImagHovers\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"status_yt\";a:7:{s:5:\"label\";s:19:\"YouTube API Scripts\";s:11:\"description\";s:38:\"Turn on to enable YouTube API scripts.\";s:2:\"id\";s:9:\"status_yt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:4:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"fusionBlogVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"status_vimeo\";a:7:{s:5:\"label\";s:17:\"Vimeo API Scripts\";s:11:\"description\";s:36:\"Turn on to enable Vimeo API scripts.\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:3:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"status_gmap\";a:6:{s:5:\"label\";s:18:\"Google Map Scripts\";s:11:\"description\";s:29:\"Turn on to enable google map.\";s:2:\"id\";s:11:\"status_gmap\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"status_totop\";a:7:{s:5:\"label\";s:12:\"ToTop Script\";s:11:\"description\";s:81:\"Turn on to enable the ToTop script which adds the scrolling to top functionality.\";s:2:\"id\";s:12:\"status_totop\";s:7:\"default\";s:7:\"desktop\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:18:\"desktop_and_mobile\";s:20:\"Desktop &amp; Mobile\";s:7:\"desktop\";s:7:\"Desktop\";s:6:\"mobile\";s:6:\"Mobile\";s:3:\"off\";s:3:\"Off\";}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:7:\"desktop\";i:1;s:16:\"does-not-contain\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:16:\"no-desktop-totop\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:12:\"status_totop\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"status_fontawesome\";a:8:{s:5:\"label\";s:12:\"Font Awesome\";s:11:\"description\";s:128:\"Choose which Font Awesome icon subsets you want to load. Note that Light subset can only be used if Font Awesome Pro is enabled.\";s:2:\"id\";s:18:\"status_fontawesome\";s:7:\"default\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:4:{s:3:\"fab\";s:6:\"Brands\";s:3:\"far\";s:7:\"Regular\";s:3:\"fas\";s:5:\"Solid\";s:3:\"fal\";s:5:\"Light\";}s:9:\"transport\";s:11:\"postMessage\";}s:28:\"fontawesome_v4_compatibility\";a:6:{s:5:\"label\";s:29:\"Font Awesome v4 Compatibility\";s:11:\"description\";s:62:\"Turn on to enable support for Font Awesome 4 icon code format.\";s:2:\"id\";s:28:\"fontawesome_v4_compatibility\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"status_fontawesome_pro\";a:6:{s:5:\"label\";s:16:\"Font Awesome Pro\";s:11:\"description\";s:260:\"Font Awesome Pro <a href=\"https://fontawesome.com/buy/standard\" target=\"_blank\" rel=\"noopener noreferrer\">license</a> is required and you need to <a href=\"https://fontawesome.com/account/cdn\" target=\"_blank\" rel=\"noopener noreferrer\">whitelist</a> your domain.\";s:2:\"id\";s:22:\"status_fontawesome_pro\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_outline\";a:6:{s:5:\"label\";s:12:\"CSS Outlines\";s:11:\"description\";s:86:\"Turn on to enable browser specific CSS element outlines used to improve accessibility.\";s:2:\"id\";s:14:\"status_outline\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"fusion-disable-outline\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"status_opengraph\";a:6:{s:5:\"label\";s:20:\"Open Graph Meta Tags\";s:11:\"description\";s:296:\"Turn on to enable open graph meta tags which are mainly used when sharing pages on social networking sites like Facebook. <strong>IMPORTANT:</strong> Some optimization plugins, like e.g. Yoast SEO, add their own implementation of this, and if you want to use that, this option should be disabled.\";s:2:\"id\";s:16:\"status_opengraph\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"disable_date_rich_snippet_pages\";a:6:{s:5:\"label\";s:13:\"Rich Snippets\";s:11:\"description\";s:172:\"Turn on to enable rich snippets data site wide. If set to &quot;On&quot;, you can also control individual items below. If set to &quot;Off&quot; all items will be disabled.\";s:2:\"id\";s:31:\"disable_date_rich_snippet_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:26:\"disable_rich_snippet_title\";a:7:{s:5:\"label\";s:19:\"Rich Snippets Title\";s:11:\"description\";s:52:\"Turn on to enable title rich snippet data site wide.\";s:2:\"id\";s:26:\"disable_rich_snippet_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_rich_snippet_author\";a:7:{s:5:\"label\";s:25:\"Rich Snippets Author Info\";s:11:\"description\";s:53:\"Turn on to enable author rich snippet data site wide.\";s:2:\"id\";s:27:\"disable_rich_snippet_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:25:\"disable_rich_snippet_date\";a:7:{s:5:\"label\";s:30:\"Rich Snippets Last Update Date\";s:11:\"description\";s:57:\"Turn on to enable udate date rich snippet data site wide.\";s:2:\"id\";s:25:\"disable_rich_snippet_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"disable_rich_snippet_faq\";a:7:{s:5:\"label\";s:17:\"Rich Snippets FAQ\";s:11:\"description\";s:54:\"Turn on to enable the FAQ rich snippet data site wide.\";s:2:\"id\";s:24:\"disable_rich_snippet_faq\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:34:\"enable_block_editor_backend_styles\";a:6:{s:5:\"label\";s:37:\"Enable WP Block Editor Backend Styles\";s:11:\"description\";s:77:\"Turn on to enable Avada&#039;s backend style support for the WP block editor.\";s:2:\"id\";s:34:\"enable_block_editor_backend_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"load_block_styles\";a:7:{s:5:\"label\";s:26:\"Load Frontend Block Styles\";s:11:\"description\";s:126:\"Select &quot;Auto&quot; to automatically detect if there are blocks present in your page, and load block-styles in the footer.\";s:2:\"id\";s:17:\"load_block_styles\";s:7:\"default\";s:2:\"on\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auto\";s:4:\"Auto\";s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:7:\"refresh\";}}}s:26:\"tracking_head_body_section\";a:5:{s:5:\"label\";s:27:\"Code Fields (Tracking etc.)\";s:2:\"id\";s:26:\"tracking_head_body_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:16:\"google_analytics\";a:7:{s:5:\"label\";s:13:\"Tracking Code\";s:11:\"description\";s:128:\"Paste your tracking code here. This will be added into the header template of your theme. Place code inside &lt;script&gt; tags.\";s:2:\"id\";s:16:\"google_analytics\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_head\";a:7:{s:5:\"label\";s:26:\"Space before &lt;/head&gt;\";s:11:\"description\";s:121:\"Only accepts JavaScript code wrapped with &lt;script&gt; tags and HTML markup that is valid inside the &lt;/head&gt; tag.\";s:2:\"id\";s:10:\"space_head\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_body\";a:7:{s:5:\"label\";s:26:\"Space before &lt;/body&gt;\";s:11:\"description\";s:114:\"Only accepts JavaScript code, wrapped with &lt;script&gt; tags and valid HTML markup inside the &lt;/body&gt; tag.\";s:2:\"id\";s:10:\"space_body\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:18:\"post_types_section\";a:5:{s:5:\"label\";s:10:\"Post Types\";s:2:\"id\";s:18:\"post_types_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:6:{s:20:\"status_fusion_slider\";a:6:{s:5:\"label\";s:12:\"Avada Slider\";s:11:\"description\";s:35:\"Turn on to enable the Avada Slider.\";s:2:\"id\";s:20:\"status_fusion_slider\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_eslider\";a:6:{s:5:\"label\";s:14:\"Elastic Slider\";s:11:\"description\";s:37:\"Turn on to enable the elastic slider.\";s:2:\"id\";s:14:\"status_eslider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"status_fusion_forms\";a:6:{s:5:\"label\";s:11:\"Avada Forms\";s:11:\"description\";s:34:\"Turn on to enable the Avada Forms.\";s:2:\"id\";s:19:\"status_fusion_forms\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"status_awb_Off_Canvas\";a:6:{s:5:\"label\";s:16:\"Avada Off Canvas\";s:11:\"description\";s:39:\"Turn on to enable the Avada Off Canvas.\";s:2:\"id\";s:21:\"status_awb_Off_Canvas\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"status_fusion_portfolio\";a:6:{s:5:\"label\";s:15:\"Avada Portfolio\";s:11:\"description\";s:38:\"Turn on to enable the Avada Portfolio.\";s:2:\"id\";s:23:\"status_fusion_portfolio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"status_fusion_faqs\";a:6:{s:5:\"label\";s:10:\"Avada FAQs\";s:11:\"description\";s:33:\"Turn on to enable the Avada Faqs.\";s:2:\"id\";s:18:\"status_fusion_faqs\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}}}}}s:11:\"maintenance\";a:6:{s:5:\"label\";s:16:\"Maintenance Mode\";s:2:\"id\";s:19:\"heading_maintenance\";s:8:\"priority\";i:26;s:4:\"icon\";s:11:\"el-icon-off\";s:8:\"alt_icon\";s:17:\"fusiona-power-off\";s:6:\"fields\";a:7:{s:16:\"maintenance_mode\";a:6:{s:5:\"label\";s:4:\"Mode\";s:11:\"description\";s:177:\"Set your site to Maintenance Mode to take it offline temporarily (status code 503), or to Coming Soon mode (status code 200), taking it offline until it is ready to be launched.\";s:2:\"id\";s:16:\"maintenance_mode\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:0:\"\";s:3:\"Off\";s:11:\"maintenance\";s:11:\"Maintenance\";s:11:\"coming_soon\";s:11:\"Coming Soon\";}}s:24:\"maintenance_redirect_url\";a:6:{s:5:\"label\";s:12:\"URL Redirect\";s:11:\"description\";s:109:\"If set, this option will redirect users without access to the URL given. Enter with protocol (e.g. https://).\";s:2:\"id\";s:24:\"maintenance_redirect_url\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}}s:20:\"maintenance_template\";a:8:{s:5:\"label\";s:13:\"Page Template\";s:11:\"description\";s:73:\"Select an Avada Library template for the Maintenance or Coming Soon page.\";s:2:\"id\";s:20:\"maintenance_template\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:1:{i:0;s:16:\"Default Template\";}s:10:\"quick_edit\";a:3:{s:5:\"label\";s:13:\"Edit Template\";s:4:\"type\";s:8:\"template\";s:5:\"items\";a:0:{}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:24:\"maintenance_redirect_url\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";}}}s:22:\"maintenance_user_roles\";a:8:{s:5:\"label\";s:21:\"User Roles For Access\";s:11:\"description\";s:129:\"Select the user roles that should be able to access the site when. <strong>NOTE:</strong> Administrators will always have access.\";s:2:\"id\";s:22:\"maintenance_user_roles\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:6:\"editor\";s:6:\"Editor\";s:6:\"author\";s:6:\"Author\";s:11:\"contributor\";s:11:\"Contributor\";s:10:\"subscriber\";s:10:\"Subscriber\";s:13:\"wpseo_manager\";s:11:\"SEO Manager\";s:12:\"wpseo_editor\";s:10:\"SEO Editor\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}}s:19:\"maintenance_exclude\";a:6:{s:5:\"label\";s:7:\"Exclude\";s:11:\"description\";s:117:\"Exclude parts of your site like feed, pages, or archives from Maintenance or Coming Soon mode. Add one slug per line.\";s:2:\"id\";s:19:\"maintenance_exclude\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}}s:22:\"maintenance_page_title\";a:6:{s:5:\"label\";s:19:\"Page Title HTML Tag\";s:11:\"description\";s:83:\"This will also be used in the default page template. Leave empty for default title.\";s:2:\"id\";s:22:\"maintenance_page_title\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:24:\"maintenance_redirect_url\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";}}}s:23:\"maintenance_robots_meta\";a:7:{s:5:\"label\";s:15:\"Robots Meta Tag\";s:11:\"description\";s:88:\"Decide whether the Maintenance or Coming Soon page should get indexed by search engines.\";s:2:\"id\";s:23:\"maintenance_robots_meta\";s:7:\"default\";s:7:\"noindex\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"index\";s:12:\"Index/Follow\";s:7:\"noindex\";s:16:\"Noindex/Nofollow\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:24:\"maintenance_redirect_url\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";}}}}}s:11:\"performance\";a:7:{s:5:\"label\";s:11:\"Performance\";s:2:\"id\";s:19:\"heading_performance\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:25;s:4:\"icon\";s:16:\"el-icon-time-alt\";s:8:\"alt_icon\";s:13:\"fusiona-check\";s:6:\"fields\";a:25:{s:10:\"svg_upload\";a:7:{s:5:\"label\";s:16:\"SVG Media Upload\";s:11:\"description\";s:98:\"Enable upload of SVG files and improve performance through their smaller image and logo file size.\";s:2:\"id\";s:10:\"svg_upload\";s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:6:\"Enable\";s:8:\"disabled\";s:7:\"Disable\";}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"pw_jpeg_quality\";a:7:{s:5:\"label\";s:23:\"WordPress Image Quality\";s:11:\"description\";s:459:\"Controls the quality of the generated image sizes for every uploaded image. Ranges between 0 and 100 percent. Higher values lead to better image qualities but also higher file sizes. <strong>NOTE:</strong> After changing this value, please install and run the <a target=\"_blank\" href=\"https://test-site.wlvrotary.org/wp-admin/plugin-install.php?s=Regenerate+Thumbnails&tab=search&type=term\" title=\"Regenerate Thumbnails\">Regenerate Thumbnails</a> plugin once.\";s:2:\"id\";s:15:\"pw_jpeg_quality\";s:7:\"default\";s:2:\"82\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"wp_big_image_size_threshold\";a:7:{s:5:\"label\";s:34:\"WordPress Big Image Size Threshold\";s:11:\"description\";s:207:\"Sets the threshold for image height and width, above which WordPress will scale down newly uploaded images to this values as max-width or max-height. Set to &quot;0&quot; to disable the threshold completely.\";s:2:\"id\";s:27:\"wp_big_image_size_threshold\";s:7:\"default\";s:4:\"2560\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:9:\"lazy_load\";a:7:{s:5:\"label\";s:18:\"Image Lazy Loading\";s:11:\"description\";s:219:\"Choose your preferred lazy loading method for your website\'s images to improve performance. <strong>IMPORTANT:</strong> The WordPress native method can cause issues with dynamically loaded elements like image carousels.\";s:2:\"id\";s:9:\"lazy_load\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:4:\"None\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"lazy_load_iframes\";a:7:{s:5:\"label\";s:19:\"Iframe Lazy Loading\";s:11:\"description\";s:91:\"Choose your preferred lazy loading method for your website\'s iframe to improve performance.\";s:2:\"id\";s:17:\"lazy_load_iframes\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:4:\"None\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"font_face_display\";a:7:{s:5:\"label\";s:19:\"Font Face Rendering\";s:11:\"description\";s:315:\"Choose &quot;Swap All&quot; for faster rendering with possible flash of unstyled text (FOUT) or &quot;Block&quot; for clean rendering but longer wait time until first paint. &quot;Swap Non-Icon Fonts&quot; will use a mix of the first 2 methods (&quot;swap&quot; for text fonts and &quot;block&quot; for icon-fonts).\";s:2:\"id\";s:17:\"font_face_display\";s:7:\"default\";s:5:\"block\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:5:\"block\";s:5:\"Block\";s:4:\"swap\";s:19:\"Swap Non-Icon Fonts\";s:8:\"swap-all\";s:8:\"Swap All\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"preload_fonts\";a:7:{s:5:\"label\";s:17:\"Preload Key Fonts\";s:11:\"description\";s:210:\"Make a selection to prioritize fetching resources that will be requested later in page load. This improves page load time as the browser caches preloaded resources so they are available immediately when needed.\";s:2:\"id\";s:13:\"preload_fonts\";s:7:\"default\";s:10:\"icon_fonts\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:3:\"All\";s:12:\"google_fonts\";s:12:\"Google Fonts\";s:10:\"icon_fonts\";s:10:\"Icon Fonts\";s:4:\"none\";s:4:\"None\";}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"preload_fonts_variants\";a:9:{s:5:\"label\";s:28:\"Preload Google Font Variants\";s:11:\"description\";s:99:\"Select the variants of Google fonts that should get preloaded. Leave empty to preload all variants.\";s:2:\"id\";s:22:\"preload_fonts_variants\";s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:17:{i:100;s:15:\"Ultra-Light 100\";s:10:\"100-italic\";s:22:\"Ultra-Light 100 Italic\";i:200;s:9:\"Light 200\";s:10:\"200-italic\";s:16:\"Light 200 Italic\";i:300;s:8:\"Book 300\";s:10:\"300-italic\";s:15:\"Book 300 Italic\";i:400;s:10:\"Normal 400\";s:10:\"400-italic\";s:17:\"Normal 400 Italic\";i:500;s:10:\"Medium 500\";s:10:\"500-italic\";s:17:\"Medium 500 Italic\";i:600;s:13:\"Semi-Bold 600\";s:10:\"600-italic\";s:20:\"Semi-Bold 600 Italic\";i:700;s:8:\"Bold 700\";s:10:\"700-italic\";s:15:\"Bold 700 Italic\";i:800;s:14:\"Extra-Bold 800\";s:10:\"900-italic\";s:21:\"Ultra-Bold 900 Italic\";i:900;s:14:\"Ultra-Bold 900\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:21:\"preload_fonts_subsets\";a:9:{s:5:\"label\";s:27:\"Preload Google Font Subsets\";s:11:\"description\";s:97:\"Select the subsets of Google fonts that should get preloaded. Leave empty to preload all subsets.\";s:2:\"id\";s:21:\"preload_fonts_subsets\";s:7:\"default\";s:5:\"latin\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:28:{s:6:\"arabic\";s:5:\"Latin\";s:7:\"bengali\";s:7:\"Bengali\";s:16:\"chinese-hongkong\";s:16:\"Chinese Hongkong\";s:18:\"chinese-simplified\";s:18:\"Chinese Simplified\";s:19:\"chinese-traditional\";s:19:\"Chinese Traditional\";s:8:\"cyrillic\";s:8:\"Cyrillic\";s:12:\"cyrillic-ext\";s:17:\"Cyrillic Extended\";s:10:\"devanagari\";s:10:\"Devanagari\";s:5:\"greek\";s:5:\"Greek\";s:9:\"greek-ext\";s:14:\"Greek Extended\";s:8:\"gujarati\";s:8:\"Gujarati\";s:8:\"gurmukhi\";s:8:\"Gurmukhi\";s:6:\"hebrew\";s:6:\"Hebrew\";s:8:\"japanese\";s:8:\"Japanese\";s:7:\"kannada\";s:7:\"Kannada\";s:5:\"khmer\";s:5:\"Khmer\";s:6:\"korean\";s:6:\"Korean\";s:5:\"latin\";s:5:\"Latin\";s:9:\"latin-ext\";s:14:\"Latin Extended\";s:9:\"malayalam\";s:9:\"Malayalam\";s:7:\"myanmar\";s:7:\"Myanmar\";s:5:\"oriya\";s:5:\"Oriya\";s:7:\"sinhala\";s:7:\"Sinhala\";s:5:\"tamil\";s:5:\"Tamil\";s:6:\"telugu\";s:6:\"Telugu\";s:4:\"thai\";s:4:\"Thai\";s:7:\"tibetan\";s:7:\"Tibetan\";s:10:\"vietnamese\";s:10:\"Vietnamese\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"emojis_disabled\";a:7:{s:5:\"label\";s:13:\"Emojis Script\";s:11:\"description\";s:99:\"If you don&#039;t use emojis you can improve performance by removing WordPress&#039; emojis script.\";s:2:\"id\";s:15:\"emojis_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:6:\"Enable\";s:8:\"disabled\";s:7:\"Disable\";}s:9:\"transport\";s:11:\"postMessage\";}s:23:\"jquery_migrate_disabled\";a:7:{s:5:\"label\";s:21:\"jQuery Migrate Script\";s:11:\"description\";s:100:\"If you are not using any deprecated jQuery code, you can disable this script to improve performance.\";s:2:\"id\";s:23:\"jquery_migrate_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:6:\"Enable\";s:8:\"disabled\";s:7:\"Disable\";}s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_jquery\";a:6:{s:5:\"label\";s:21:\"Load jQuery In Footer\";s:11:\"description\";s:227:\"Set to &#039;on&#039; to defer loading of jQuery to the footer of the page. This will only take effect if no other jQuery dependent scripts are added to the head. Turning this on can cause JS scripts to break, use with caution.\";s:2:\"id\";s:12:\"defer_jquery\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_styles\";a:6:{s:5:\"label\";s:26:\"Load Stylesheets In Footer\";s:11:\"description\";s:238:\"Set to &#039;on&#039; to defer loading of the stylesheets to the footer of the page. This improves page load time by making the styles non-render-blocking. Depending on the connection speed, a flash of unstyled content (FOUC) might occur.\";s:2:\"id\";s:12:\"defer_styles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"gzip_status\";a:6:{s:5:\"label\";s:23:\"Enable Gzip Compression\";s:11:\"description\";s:176:\"Set to \'on\' to add Gzip Compression rules to the .htaccess file. <strong>IMPORTANT:</strong> This option works only on Apache web servers with mod_gzip and mod_deflate enabled.\";s:2:\"id\";s:11:\"gzip_status\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"video_facade\";a:7:{s:5:\"label\";s:19:\"Enable Video Facade\";s:11:\"description\";s:160:\"Use video facade in order to load video player only when video is played. <strong>IMPORTANT:</strong> This option is only applied to YouTube and Vimeo elements.\";s:2:\"id\";s:12:\"video_facade\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:11:\"postMessage\";}s:18:\"clear_object_cache\";a:6:{s:5:\"label\";s:19:\"Clear Object Cache \";s:11:\"description\";s:205:\"Set to \'on\' to clear WP\'s object cache on post edit and post deletion. This is useful, if your setup or hoster uses persistent object caching, to make sure that queries update when you add or remove posts.\";s:2:\"id\";s:18:\"clear_object_cache\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"dynamic_compiler_section\";a:4:{s:5:\"label\";s:20:\"Dynamic CSS &amp; JS\";s:2:\"id\";s:24:\"dynamic_compiler_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"css_cache_method\";a:7:{s:5:\"label\";s:20:\"CSS Compiling Method\";s:11:\"description\";s:281:\"Select &quot;File&quot; mode to compile the dynamic CSS to files (a separate file will be created for each of your pages &amp; posts inside of the uploads/fusion-styles folder), &quot;Database&quot; mode to cache the CSS in your database, or select &quot;Disabled&quot; to disable.\";s:2:\"id\";s:16:\"css_cache_method\";s:7:\"default\";s:4:\"file\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"file\";s:4:\"File\";s:2:\"db\";s:8:\"Database\";s:3:\"off\";s:8:\"Disabled\";}s:9:\"transport\";s:11:\"postMessage\";}s:30:\"css_combine_third_party_assets\";a:7:{s:5:\"label\";s:29:\"Combine Third Party CSS Files\";s:11:\"description\";s:449:\"When enabled, third party CSS files will be combined into Avada\'s main stylesheet. Plugins affected are WooCommerce, The Events Calendar, Slider Revolution, ConvertPlus, Contact Form 7 and bbPress. <strong>IMPORTANT:</strong> Enabling this option is not recommended when you are are using third party file combining services, like cache plugins. <strong>NOTE:</strong> When this option is changed, Avada Caches have to be reset for changes to apply.\";s:2:\"id\";s:30:\"css_combine_third_party_assets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"css_cache_method\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"file\";}}}s:19:\"media_queries_async\";a:6:{s:5:\"label\";s:39:\"Load Media-Queries Files Asynchronously\";s:11:\"description\";s:140:\"When enabled, the CSS media-queries will be enqueued separately and then loaded asynchronously, improving performance on mobile and desktop.\";s:2:\"id\";s:19:\"media_queries_async\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"critical_css\";a:6:{s:5:\"label\";s:19:\"Enable Critical CSS\";s:11:\"description\";s:125:\"Set to \'on\' to enable the generation of critical CSS. Once enabled, a critical CSS page will be added to the Avada dashboard.\";s:2:\"id\";s:12:\"critical_css\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"cache_server_ip\";a:6:{s:5:\"label\";s:15:\"Cache Server IP\";s:11:\"description\";s:201:\"For unique cases where you are using CloudFlare and a cache server, ex: varnish cache. Enter your cache server IP to clear the Global Options dynamic CSS cache. Consult with your server admin for help.\";s:2:\"id\";s:15:\"cache_server_ip\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"js_compiler\";a:6:{s:5:\"label\";s:18:\"Enable JS Compiler\";s:11:\"description\";s:174:\"By default all the JavaScript files are combined. Disabling the JS compiler will load non-combined JavaScript files. This will have an impact on the performance of your site.\";s:2:\"id\";s:11:\"js_compiler\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"pwa_section\";a:4:{s:5:\"label\";s:19:\"Progressive Web App\";s:2:\"id\";s:11:\"pwa_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:19:\"pwa_required_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:389:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> To use the Avada PWA feature you need to install and activate the latest version of the PWA plugin. Please <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-plugins\">visit the Avada Plugins page</a> to install and activate the plugin and then refresh Global Options to edit the options.</div>\";s:2:\"id\";s:19:\"pwa_required_notice\";s:4:\"type\";s:6:\"custom\";}}}s:11:\"woocommerce\";a:0:{}s:10:\"custom_css\";a:6:{s:5:\"label\";s:10:\"Custom CSS\";s:2:\"id\";s:18:\"custom_css_section\";s:8:\"priority\";i:27;s:4:\"icon\";s:11:\"el-icon-css\";s:8:\"alt_icon\";s:12:\"fusiona-code\";s:6:\"fields\";a:1:{s:10:\"custom_css\";a:6:{s:5:\"label\";s:8:\"CSS Code\";s:11:\"description\";s:287:\"Enter your CSS code in the field below. Do not include any tags or HTML in the field. Custom CSS entered here will override the theme CSS. In some cases, the <code>!important</code> tag may be needed. Don&#039;t URL encode image or svg paths. Contents of this field will be auto encoded.\";s:2:\"id\";s:10:\"custom_css\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:5:{s:8:\"language\";s:3:\"css\";s:6:\"height\";i:450;s:5:\"theme\";s:6:\"chrome\";s:8:\"minLines\";i:40;s:8:\"maxLines\";i:50;}}}}s:17:\"shortcode_styling\";a:3:{s:5:\"label\";s:22:\"Avada Builder Elements\";s:2:\"id\";s:17:\"shortcode_styling\";s:4:\"icon\";s:23:\"fusiona-element-options\";}s:13:\"import_export\";a:6:{s:5:\"label\";s:13:\"Import/Export\";s:2:\"id\";s:13:\"import_export\";s:8:\"priority\";i:27;s:4:\"icon\";s:11:\"el-icon-css\";s:8:\"alt_icon\";s:17:\"fusiona-loop-alt2\";s:6:\"fields\";a:2:{s:9:\"import_to\";a:6:{s:5:\"label\";s:21:\"Import Global Options\";s:11:\"description\";s:99:\"Import Global Options. You can import via file, copy and paste or select an Avada prebuilt website.\";s:2:\"id\";s:9:\"import_to\";s:4:\"type\";s:6:\"import\";s:5:\"demos\";a:0:{}s:7:\"context\";s:2:\"TO\";}s:9:\"export_to\";a:6:{s:5:\"label\";s:21:\"Export Global Options\";s:11:\"description\";s:77:\"Export your Global Options. You can either export as a file or copy the data.\";s:2:\"id\";s:9:\"export_to\";s:4:\"type\";s:6:\"export\";s:7:\"context\";s:2:\"TO\";s:4:\"text\";s:21:\"Export Global Options\";}}}}','no'),(1219,'eventon_events_page_id','1725','yes'),(1220,'_eventon_create_pages','1','yes'),(1222,'evcal_options_evcal_1','a:301:{s:14:\"evcal_cal_hide\";s:2:\"no\";s:19:\"evcal_cal_hide_past\";s:2:\"no\";s:13:\"evcal_past_ev\";s:10:\"local_time\";s:22:\"evcal_header_generator\";s:2:\"no\";s:7:\"evo_rtl\";s:2:\"no\";s:22:\"evo_hide_shortcode_btn\";s:2:\"no\";s:16:\"evo_lang_corresp\";s:2:\"no\";s:14:\"evo_php_coding\";s:2:\"no\";s:14:\"evo_login_link\";s:0:\"\";s:21:\"evo_dis_icshtmldecode\";s:2:\"no\";s:16:\"evcal_move_trash\";s:2:\"no\";s:20:\"evcal_mark_completed\";s:2:\"no\";s:18:\"evo_content_filter\";s:3:\"evo\";s:23:\"evo_settings_query_type\";s:7:\"default\";s:10:\"evo_schema\";s:2:\"no\";s:28:\"evcal_schema_disable_section\";s:10:\"everywhere\";s:17:\"evo_remove_jsonld\";s:2:\"no\";s:25:\"evo_remove_jsonld_section\";s:10:\"everywhere\";s:15:\"evo_noevent_set\";s:7:\"default\";s:22:\"evo_noevent_btn_action\";s:4:\"none\";s:16:\"evo_noevent_link\";s:0:\"\";s:19:\"evo_delete_settings\";s:2:\"no\";s:26:\"evo_disable_csv_formatting\";s:2:\"no\";s:17:\"_evo_email_encode\";s:3:\"def\";s:18:\"evcal_cal_gmap_api\";s:2:\"no\";s:26:\"evcal_gmap_disable_section\";s:8:\"complete\";s:16:\"evo_gmap_api_key\";s:0:\"\";s:17:\"evcal_gmap_scroll\";s:2:\"no\";s:17:\"evcal_gmap_format\";s:7:\"roadmap\";s:20:\"evcal_gmap_zoomlevel\";s:2:\"18\";s:16:\"evcal_gmap_style\";s:7:\"default\";s:16:\"evo_gmap_iconurl\";s:0:\"\";s:17:\"evo_hide_location\";s:2:\"no\";s:11:\"evo_gen_map\";s:2:\"no\";s:14:\"evo_global_tzo\";s:19:\"America/Los_Angeles\";s:11:\"evo_tzo_all\";s:2:\"no\";s:10:\"evo_utcoff\";s:2:\"no\";s:19:\"evcal_header_format\";s:0:\"\";s:19:\"evo_usewpdateformat\";s:2:\"no\";s:9:\"evo_timeF\";s:2:\"no\";s:11:\"evo_timeF_v\";s:0:\"\";s:18:\"evo_show_localtime\";s:2:\"no\";s:12:\"evo_gmt_hide\";s:2:\"no\";s:20:\"evo_minute_increment\";s:2:\"60\";s:15:\"evo_time_offset\";s:0:\"\";s:15:\"evcal_hide_sort\";s:2:\"no\";s:23:\"evcal_hide_filter_icons\";s:2:\"no\";s:13:\"evo_cal_theme\";s:0:\"\";s:17:\"evo_theme_current\";s:7:\"default\";s:13:\"evcal_hexcode\";s:6:\"66819a\";s:8:\"evoclr_1\";s:0:\"\";s:8:\"evoclr_2\";s:0:\"\";s:14:\"evcal_font_fam\";s:0:\"\";s:24:\"evcal_font_fam_secondary\";s:0:\"\";s:16:\"evcal_arrow_hide\";s:2:\"no\";s:15:\"evo_arrow_right\";s:2:\"no\";s:16:\"evo_fte_override\";s:2:\"no\";s:11:\"evcal__ftec\";s:0:\"\";s:16:\"evcal_header1_fc\";s:0:\"\";s:10:\"evcal__fc2\";s:0:\"\";s:10:\"evcal__sot\";s:0:\"\";s:11:\"evcal__sotH\";s:0:\"\";s:12:\"evcal__jm001\";s:0:\"\";s:12:\"evcal__jm002\";s:0:\"\";s:13:\"evcal__jm001H\";s:0:\"\";s:13:\"evcal__jm002H\";s:0:\"\";s:12:\"evcal__jm003\";s:0:\"\";s:12:\"evcal__jm004\";s:0:\"\";s:13:\"evcal__jm003H\";s:0:\"\";s:13:\"evcal__jm004H\";s:0:\"\";s:12:\"evcal__jm006\";s:0:\"\";s:12:\"evcal__jm007\";s:0:\"\";s:12:\"evcal__jm008\";s:0:\"\";s:12:\"evcal__jm009\";s:0:\"\";s:13:\"evcal__thm001\";s:0:\"\";s:13:\"evcal__thm002\";s:0:\"\";s:14:\"evcal__thm001H\";s:0:\"\";s:14:\"evcal__thm002H\";s:0:\"\";s:12:\"evcal__jm010\";s:0:\"\";s:12:\"evcal__jm011\";s:0:\"\";s:13:\"evcal__jm010H\";s:0:\"\";s:13:\"evcal__jm011H\";s:0:\"\";s:12:\"evcal__jm01A\";s:0:\"\";s:13:\"evcal__jm01AH\";s:0:\"\";s:16:\"evcal_loader_001\";s:0:\"\";s:16:\"evcal_loader_002\";s:0:\"\";s:7:\"evose_1\";s:0:\"\";s:7:\"evose_2\";s:0:\"\";s:7:\"evose_4\";s:0:\"\";s:7:\"evose_5\";s:0:\"\";s:7:\"evosr_1\";s:0:\"\";s:7:\"evosr_2\";s:0:\"\";s:7:\"evosr_3\";s:0:\"\";s:7:\"evosr_4\";s:0:\"\";s:7:\"evosr_5\";s:0:\"\";s:7:\"evosr_6\";s:0:\"\";s:7:\"evosr_7\";s:0:\"\";s:7:\"evosr_8\";s:0:\"\";s:7:\"evosr_9\";s:0:\"\";s:8:\"evosr_10\";s:0:\"\";s:8:\"evo_001a\";s:0:\"\";s:8:\"evo_001b\";s:0:\"\";s:8:\"evo_tzoa\";s:0:\"\";s:8:\"evo_tzob\";s:0:\"\";s:9:\"evo_rep_1\";s:0:\"\";s:10:\"evo_rep_1c\";s:0:\"\";s:10:\"evo_rep_2c\";s:0:\"\";s:9:\"evo_noe_1\";s:0:\"\";s:10:\"evo_noe_1c\";s:0:\"\";s:9:\"evo_noe_2\";s:0:\"\";s:10:\"evo_noe_2c\";s:0:\"\";s:13:\"evcal__evcbrb\";s:0:\"\";s:10:\"evcal__fc3\";s:6:\"66819a\";s:12:\"evcal__fc3st\";s:0:\"\";s:10:\"evcal__fc6\";s:0:\"\";s:10:\"evcal__fc7\";s:0:\"\";s:11:\"evcal__bgc4\";s:0:\"\";s:12:\"evcal__bgc4h\";s:0:\"\";s:11:\"evcal__bgc5\";s:0:\"\";s:12:\"evcal__bgc5h\";s:0:\"\";s:17:\"fs_eventtop_tag_1\";s:0:\"\";s:17:\"fs_eventtop_tag_2\";s:0:\"\";s:21:\"evcal__cancel_event_1\";s:0:\"\";s:21:\"evcal__cancel_event_2\";s:0:\"\";s:22:\"evcal__cancel_event_3x\";s:0:\"\";s:22:\"evcal__cancel_event_4x\";s:0:\"\";s:18:\"fs_eventtop_est_1a\";s:0:\"\";s:18:\"fs_eventtop_est_1b\";s:0:\"\";s:18:\"fs_eventtop_est_2a\";s:0:\"\";s:18:\"fs_eventtop_est_2b\";s:0:\"\";s:18:\"fs_eventtop_est_3a\";s:0:\"\";s:18:\"fs_eventtop_est_3b\";s:0:\"\";s:22:\"fs_eventtop_featured_1\";s:0:\"\";s:22:\"fs_eventtop_featured_2\";s:0:\"\";s:19:\"evoeventtop_cmd_btn\";s:0:\"\";s:20:\"evoeventtop_cmd_btnA\";s:0:\"\";s:17:\"evoeventtop_live1\";s:0:\"\";s:17:\"evoeventtop_live2\";s:0:\"\";s:20:\"evcal__colorful_text\";s:0:\"\";s:10:\"evcal__fc4\";s:0:\"\";s:12:\"evcal_fs_001\";s:4:\"18px\";s:10:\"evcal__fc5\";s:0:\"\";s:10:\"evcal__bc1\";s:0:\"\";s:14:\"evcal__bc1_rgb\";s:0:\"\";s:12:\"evcal__bc1in\";s:0:\"\";s:16:\"evcal_getdir_001\";s:0:\"\";s:16:\"evcal_getdir_002\";s:0:\"\";s:11:\"evo_ec_link\";s:0:\"\";s:17:\"evcal_gen_btn_bgc\";s:0:\"\";s:16:\"evcal_gen_btn_fc\";s:0:\"\";s:18:\"evcal_gen_btn_bgcx\";s:0:\"\";s:17:\"evcal_gen_btn_fcx\";s:0:\"\";s:15:\"evo_btn_2nd_bgc\";s:0:\"\";s:13:\"evo_btn_2nd_c\";s:0:\"\";s:16:\"evo_btn_2nd_bgch\";s:0:\"\";s:14:\"evo_btn_2nd_ch\";s:0:\"\";s:14:\"evcal_closebtn\";s:0:\"\";s:15:\"evcal_closebtnx\";s:0:\"\";s:14:\"evo_color_lb_1\";s:0:\"\";s:14:\"evo_color_lb_2\";s:0:\"\";s:14:\"evo_color_lb_3\";s:0:\"\";s:14:\"evo_color_lb_4\";s:0:\"\";s:17:\"evcal_repinst_btn\";s:0:\"\";s:21:\"evcal_repinst_btn_txt\";s:0:\"\";s:12:\"evo_health_1\";s:0:\"\";s:12:\"evo_health_2\";s:0:\"\";s:12:\"evo_health_3\";s:0:\"\";s:12:\"evo_health_4\";s:0:\"\";s:10:\"evo_live1b\";s:0:\"\";s:9:\"evo_live2\";s:0:\"\";s:9:\"evo_live3\";s:0:\"\";s:10:\"evo_live4a\";s:0:\"\";s:10:\"evo_live4b\";s:0:\"\";s:10:\"evo_live5a\";s:0:\"\";s:10:\"evo_live5b\";s:0:\"\";s:15:\"evo_googlefonts\";s:2:\"no\";s:15:\"evo_fontawesome\";s:2:\"no\";s:14:\"evcal_css_head\";s:2:\"no\";s:19:\"evcal_concat_styles\";s:2:\"no\";s:27:\"evo_load_scripts_only_onevo\";s:2:\"no\";s:27:\"evo_load_all_styles_onpages\";s:2:\"no\";s:16:\"evo_dis_jqmobile\";s:2:\"no\";s:14:\"evo_dis_moment\";s:2:\"no\";s:13:\"evo_dis_jitsi\";s:2:\"no\";s:10:\"evcal__ecI\";s:0:\"\";s:11:\"evcal__ecIz\";s:4:\"18px\";s:14:\"evcal__fai_001\";s:16:\"fa-align-justify\";s:14:\"evcal__fai_002\";s:8:\"fa-clock\";s:18:\"evcal__fai_repeats\";s:9:\"fa-repeat\";s:14:\"evcal__fai_vir\";s:8:\"fa-globe\";s:17:\"evcal__fai_health\";s:12:\"fa-heartbeat\";s:14:\"evcal__fai_003\";s:13:\"fa-map-marker\";s:14:\"evcal__fai_004\";s:13:\"fa-headphones\";s:14:\"evcal__fai_005\";s:13:\"fa-tachometer\";s:14:\"evcal__fai_006\";s:7:\"fa-link\";s:16:\"evcal__fai_relev\";s:16:\"fa-calendar-plus\";s:14:\"evcal__fai_007\";s:9:\"fa-ticket\";s:14:\"evcal__fai_008\";s:13:\"fa-calendar-o\";s:15:\"evcal__fai_008a\";s:7:\"fa-road\";s:7:\"evo_etl\";s:2:\"[]\";s:15:\"evotop_location\";s:4:\"both\";s:19:\"evo_widget_eventtop\";s:2:\"no\";s:30:\"evo_eventtop_customfield_icons\";s:2:\"no\";s:17:\"evo_showeditevent\";s:2:\"no\";s:26:\"evo_eventtop_progress_hide\";s:2:\"no\";s:13:\"evo_hide_live\";s:2:\"no\";s:22:\"evo_eventtop_style_def\";s:2:\"_2\";s:20:\"evo_ftimg_height_sty\";s:6:\"direct\";s:14:\"evo_ftimghover\";s:2:\"no\";s:14:\"evo_ftimgclick\";s:2:\"no\";s:15:\"evo_ftimgheight\";s:0:\"\";s:12:\"evo_ftim_mag\";s:2:\"no\";s:29:\"evcal_default_event_image_set\";s:2:\"no\";s:25:\"evcal_default_event_image\";s:0:\"\";s:16:\"evo_locimgheight\";s:0:\"\";s:12:\"evo_addtocal\";s:3:\"all\";s:12:\"evo_morelass\";s:2:\"no\";s:12:\"evo_opencard\";s:2:\"no\";s:20:\"evo_card_http_filter\";s:2:\"no\";s:7:\"evo_ecl\";s:1479:\"{&quot;1&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;ftimage&quot;,&quot;h&quot;:&quot;&quot;}},&quot;2&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;eventdetails&quot;,&quot;h&quot;:&quot;&quot;}},&quot;3&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;virtual&quot;,&quot;h&quot;:&quot;&quot;}},&quot;4&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;health&quot;,&quot;h&quot;:&quot;&quot;}},&quot;5&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;time&quot;,&quot;h&quot;:&quot;&quot;},&quot;2&quot;:{&quot;n&quot;:&quot;location&quot;,&quot;h&quot;:&quot;&quot;}},&quot;6&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;learnmore&quot;,&quot;h&quot;:&quot;&quot;},&quot;2&quot;:{&quot;n&quot;:&quot;addtocal&quot;,&quot;h&quot;:&quot;&quot;}},&quot;7&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;repeats&quot;,&quot;h&quot;:&quot;&quot;}},&quot;8&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;organizer&quot;,&quot;h&quot;:&quot;&quot;}},&quot;9&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;locImg&quot;,&quot;h&quot;:&quot;&quot;}},&quot;10&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;gmap&quot;,&quot;h&quot;:&quot;&quot;}},&quot;11&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;addtocal&quot;,&quot;h&quot;:&quot;&quot;}},&quot;12&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;relatedEvents&quot;,&quot;h&quot;:&quot;&quot;}},&quot;13&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;evosocial&quot;,&quot;h&quot;:&quot;&quot;}},&quot;14&quot;:{&quot;1&quot;:{&quot;n&quot;:&quot;getdirection&quot;,&quot;h&quot;:&quot;&quot;}}}\";s:15:\"evcal_cmf_count\";s:1:\"3\";s:10:\"evcal_af_1\";s:2:\"no\";s:13:\"evcal_ec_f1a1\";s:0:\"\";s:13:\"evcal_ec_f1a2\";s:4:\"text\";s:15:\"evcal__fai_00c1\";s:11:\"fa-asterisk\";s:13:\"evcal_ec_f1a3\";s:2:\"no\";s:13:\"evcal_ec_f1a4\";s:3:\"all\";s:13:\"evcal_ec_f1a5\";s:2:\"no\";s:10:\"evcal_af_2\";s:2:\"no\";s:13:\"evcal_ec_f2a1\";s:0:\"\";s:13:\"evcal_ec_f2a2\";s:4:\"text\";s:15:\"evcal__fai_00c2\";s:11:\"fa-asterisk\";s:13:\"evcal_ec_f2a3\";s:2:\"no\";s:13:\"evcal_ec_f2a4\";s:3:\"all\";s:13:\"evcal_ec_f2a5\";s:2:\"no\";s:10:\"evcal_af_3\";s:2:\"no\";s:13:\"evcal_ec_f3a1\";s:0:\"\";s:13:\"evcal_ec_f3a2\";s:4:\"text\";s:15:\"evcal__fai_00c3\";s:11:\"fa-asterisk\";s:13:\"evcal_ec_f3a3\";s:2:\"no\";s:13:\"evcal_ec_f3a4\";s:3:\"all\";s:13:\"evcal_ec_f3a5\";s:2:\"no\";s:12:\"evcal_eventt\";s:0:\"\";s:13:\"evcal_eventt2\";s:0:\"\";s:11:\"evcal_ett_3\";s:2:\"no\";s:13:\"evcal_eventt3\";s:0:\"\";s:11:\"evcal_ett_4\";s:2:\"no\";s:13:\"evcal_eventt4\";s:0:\"\";s:11:\"evcal_ett_5\";s:2:\"no\";s:13:\"evcal_eventt5\";s:0:\"\";s:11:\"evcal_mdt_1\";s:2:\"no\";s:16:\"evcal_mdt_name_1\";s:0:\"\";s:14:\"evcal_mdt_img1\";s:2:\"no\";s:14:\"evcal_mdta_1_1\";s:2:\"no\";s:19:\"evcal_mdta_name_1_1\";s:0:\"\";s:14:\"evcal_mdta_1_2\";s:2:\"no\";s:19:\"evcal_mdta_name_1_2\";s:0:\"\";s:11:\"evcal_mdt_2\";s:2:\"no\";s:16:\"evcal_mdt_name_2\";s:0:\"\";s:14:\"evcal_mdt_img2\";s:2:\"no\";s:14:\"evcal_mdta_2_1\";s:2:\"no\";s:19:\"evcal_mdta_name_2_1\";s:0:\"\";s:14:\"evcal_mdta_2_2\";s:2:\"no\";s:19:\"evcal_mdta_name_2_2\";s:0:\"\";s:11:\"evcal_mdt_3\";s:2:\"no\";s:16:\"evcal_mdt_name_3\";s:0:\"\";s:14:\"evcal_mdt_img3\";s:2:\"no\";s:14:\"evcal_mdta_3_1\";s:2:\"no\";s:19:\"evcal_mdta_name_3_1\";s:0:\"\";s:14:\"evcal_mdta_3_2\";s:2:\"no\";s:19:\"evcal_mdta_name_3_2\";s:0:\"\";s:25:\"evo_event_archive_page_id\";s:1:\"0\";s:31:\"evo_event_archive_page_template\";s:23:\"archive-ajde_events.php\";s:14:\"evo_event_slug\";s:0:\"\";s:22:\"evo_ditch_sin_template\";s:2:\"no\";s:15:\"evo_textstr_sin\";s:0:\"\";s:15:\"evo_textstr_plu\";s:0:\"\";s:17:\"evosm_disable_ogs\";s:2:\"no\";s:7:\"evosm_1\";s:2:\"no\";s:14:\"evosm_loggedin\";s:2:\"no\";s:19:\"evosm_comments_hide\";s:2:\"no\";s:20:\"evosm_show_monthyear\";s:2:\"no\";s:20:\"evosm_eventtop_style\";s:5:\"color\";s:9:\"evosm_som\";s:2:\"no\";s:14:\"evosm_diencode\";s:2:\"no\";s:13:\"eventonsm_fbs\";s:2:\"no\";s:12:\"eventonsm_tw\";s:2:\"no\";s:12:\"eventonsm_ln\";s:2:\"no\";s:12:\"eventonsm_pn\";s:2:\"no\";s:15:\"eventonsm_email\";s:2:\"no\";s:16:\"evcal_paypal_pay\";s:2:\"no\";s:14:\"evcal_pp_email\";s:0:\"\";s:12:\"evcal_pp_cur\";s:3:\"AUD\";s:9:\"_evo_zoom\";s:2:\"no\";s:13:\"_evo_zoom_key\";s:0:\"\";s:16:\"_evo_zoom_secret\";s:0:\"\";s:23:\"evosr_default_search_on\";s:2:\"no\";s:15:\"EVOSR_showfield\";s:2:\"no\";s:20:\"EVOSR_advance_search\";s:2:\"no\";s:20:\"EVOSR_default_search\";s:2:\"no\";s:9:\"cmd_count\";i:0;}','yes'),(11978,'_transient_timeout_fusion_tos_flat','1673933013','no');
INSERT INTO `wpwlvrot_options` VALUES (11979,'_transient_fusion_tos_flat','a:715:{s:6:\"layout\";a:7:{s:5:\"label\";s:6:\"Layout\";s:11:\"description\";s:25:\"Controls the site layout.\";s:2:\"id\";s:6:\"layout\";s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"boxed\";s:5:\"Boxed\";s:4:\"wide\";s:4:\"Wide\";}s:6:\"output\";a:4:{i:0;a:6:{s:7:\"element\";s:4:\"html\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:19:\"avada-html-layout-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"avada-html-layout-boxed\";i:1;s:22:\"avada-html-layout-wide\";}}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:13:\"layout-$-mode\";s:12:\"remove_attrs\";a:2:{i:0;s:17:\"layout-boxed-mode\";i:1;s:16:\"layout-wide-mode\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:11:\"site_layout\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionPositionSubmenus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:11:\"layout_mode\";s:7:\"trigger\";a:2:{i:0;s:21:\"fusionSliderReTrigger\";i:1;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"site_width\";a:10:{s:5:\"label\";s:10:\"Site Width\";s:11:\"description\";s:32:\"Controls the overall site width.\";s:2:\"id\";s:10:\"site_width\";s:7:\"default\";s:6:\"1200px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:4:\"desc\";s:0:\"\";s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:12:\"--site_width\";}i:1;a:2:{s:4:\"name\";s:16:\"--site_width-int\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:28:\"avada-has-site-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"100%\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:32:\"avada-has-site-width-100-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:10:\"site_width\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:36:\"site_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"site_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:17:\"site_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:13:\"margin_offset\";a:9:{s:5:\"label\";s:28:\"Boxed Mode Top/Bottom Offset\";s:11:\"description\";s:55:\"Controls the top/bottom offset of the boxed background.\";s:2:\"id\";s:13:\"margin_offset\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:19:\"--margin_offset-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:22:\"--margin_offset-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:30:\"--margin_offset-top-no-percent\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}i:3;a:3:{s:4:\"name\";s:33:\"--margin_offset-bottom-no-percent\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"is-zero-or-empty\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-zero-margin-offset-top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"scroll_offset\";a:8:{s:5:\"label\";s:29:\"Boxed Mode Offset Scroll Mode\";s:11:\"description\";s:145:\"Choose how the page will scroll. Framed scrolling will keep the offset in place, while Full scrolling removes the offset when scrolling the page.\";s:2:\"id\";s:13:\"scroll_offset\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"framed\";s:16:\"Framed Scrolling\";s:4:\"full\";s:14:\"Full Scrolling\";}s:7:\"default\";s:4:\"full\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:3:\"===\";i:1;s:6:\"framed\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:24:\"avada-html-layout-framed\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:22:\"layout-scroll-offset-$\";s:12:\"remove_attrs\";a:2:{i:0;s:27:\"layout-scroll-offset-framed\";i:1;s:25:\"layout-scroll-offset-full\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"scroll_offset\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"boxed_modal_shadow\";a:8:{s:5:\"label\";s:22:\"Boxed Mode Shadow Type\";s:11:\"description\";s:53:\"Controls the type of shadow your boxed mode displays.\";s:2:\"id\";s:18:\"boxed_modal_shadow\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:9:\"No Shadow\";s:5:\"light\";s:12:\"Light Shadow\";s:6:\"medium\";s:13:\"Medium Shadow\";s:4:\"hard\";s:11:\"Hard Shadow\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:30:\"avada-has-boxed-modal-shadow-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-boxed-modal-shadow-none\";i:1;s:34:\"avada-has-boxed-modal-shadow-light\";i:2;s:35:\"avada-has-boxed-modal-shadow-medium\";i:3;s:33:\"avada-has-boxed-modal-shadow-hard\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"main_padding\";a:7:{s:5:\"label\";s:20:\"Page Content Padding\";s:11:\"description\";s:49:\"Controls the top/bottom padding for page content.\";s:2:\"id\";s:12:\"main_padding\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:18:\"--main_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--main_padding-top-or-55px\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:4:\"55px\";}}i:2;a:2:{s:4:\"name\";s:21:\"--main_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}}}s:13:\"page_template\";a:7:{s:5:\"label\";s:21:\"Default Page Template\";s:11:\"description\";s:33:\"Choose the default page template.\";s:2:\"id\";s:13:\"page_template\";s:7:\"default\";s:9:\"100_width\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:9:\"100_width\";s:10:\"100% Width\";s:10:\"site_width\";s:10:\"Site Width\";}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"hundredp_padding\";a:7:{s:5:\"label\";s:18:\"100% Width Padding\";s:11:\"description\";s:179:\"Controls the left and right padding for page content when using 100% site width, 100% width page template or 100% width post option. This does not affect Avada Builder containers.\";s:2:\"id\";s:16:\"hundredp_padding\";s:7:\"default\";s:4:\"30px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:4:{i:0;a:1:{s:4:\"name\";s:18:\"--hundredp_padding\";}i:1;a:2:{s:4:\"name\";s:35:\"--hundredp_padding-fallback_to_zero\";s:8:\"callback\";s:16:\"fallback_to_zero\";}i:2;a:2:{s:4:\"name\";s:38:\"--hundredp_padding-fallback_to_zero_px\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:3:\"0px\";}}i:3;a:2:{s:4:\"name\";s:50:\"--hundredp_padding-hundred_percent_negative_margin\";s:8:\"callback\";a:2:{i:0;s:31:\"hundred_percent_negative_margin\";i:1;s:0:\"\";}}}}s:27:\"single_sidebar_layouts_info\";a:4:{s:5:\"label\";s:22:\"Single Sidebar Layouts\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"single_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:13:\"sidebar_width\";a:7:{s:5:\"label\";s:20:\"Single Sidebar Width\";s:11:\"description\";s:67:\"Controls the width of the sidebar when only one sidebar is present.\";s:2:\"id\";s:13:\"sidebar_width\";s:7:\"default\";s:3:\"24%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:15:\"--sidebar_width\";}}}s:14:\"sidebar_gutter\";a:6:{s:5:\"label\";s:21:\"Single Sidebar Gutter\";s:11:\"description\";s:65:\"Controls the space between the main content and a single sidebar.\";s:2:\"id\";s:14:\"sidebar_gutter\";s:7:\"default\";s:2:\"6%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--sidebar_gutter\";}}}s:25:\"dual_sidebar_layouts_info\";a:4:{s:5:\"label\";s:20:\"Dual Sidebar Layouts\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"dual_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:17:\"sidebar_2_1_width\";a:7:{s:5:\"label\";s:20:\"Dual Sidebar Width 1\";s:11:\"description\";s:63:\"Controls the width of sidebar 1 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_1_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_1_width\";}}}s:17:\"sidebar_2_2_width\";a:7:{s:5:\"label\";s:20:\"Dual Sidebar Width 2\";s:11:\"description\";s:63:\"Controls the width of sidebar 2 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_2_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_2_width\";}}}s:19:\"dual_sidebar_gutter\";a:6:{s:5:\"label\";s:19:\"Dual Sidebar Gutter\";s:11:\"description\";s:91:\"Controls the space between the main content and the sidebar when dual sidebars are present.\";s:2:\"id\";s:19:\"dual_sidebar_gutter\";s:7:\"default\";s:2:\"4%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--dual_sidebar_gutter\";}}}s:10:\"responsive\";a:6:{s:5:\"label\";s:17:\"Responsive Design\";s:11:\"description\";s:87:\"Turn on to use the responsive design features. If set to off, the fixed layout is used.\";s:2:\"id\";s:10:\"responsive\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{i:1;s:2:\"On\";i:0;s:3:\"Off\";}}s:21:\"grid_main_break_point\";a:9:{s:5:\"label\";s:26:\"Grid Responsive Breakpoint\";s:11:\"description\";s:121:\"Controls when grid layouts (blog/portfolio) start to break into smaller columns. Further breakpoints are auto calculated.\";s:2:\"id\";s:21:\"grid_main_break_point\";s:7:\"default\";s:4:\"1000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:3:\"360\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--grid_main_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"side_header_break_point\";a:9:{s:5:\"label\";s:28:\"Header Responsive Breakpoint\";s:11:\"description\";s:62:\"Controls when the desktop header changes to the mobile header.\";s:2:\"id\";s:23:\"side_header_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--side_header_break_point\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"content_break_point\";a:9:{s:5:\"label\";s:34:\"Site Content Responsive Breakpoint\";s:11:\"description\";s:130:\"Controls when the site content area changes to the mobile layout. This includes all content below the header including the footer.\";s:2:\"id\";s:19:\"content_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--content_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"sidebar_break_point\";a:8:{s:5:\"label\";s:29:\"Sidebar Responsive Breakpoint\";s:11:\"description\";s:51:\"Controls when sidebars change to the mobile layout.\";s:2:\"id\";s:19:\"sidebar_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"mobile_zoom\";a:8:{s:5:\"label\";s:18:\"Mobile Device Zoom\";s:11:\"description\";s:50:\"Turn on to enable pinch to zoom on mobile devices.\";s:2:\"id\";s:11:\"mobile_zoom\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:41:\"element_responsive_breakpoints_info_title\";a:5:{s:5:\"label\";s:30:\"Element Responsive Breakpoints\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:41:\"element_responsive_breakpoints_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"visibility_small\";a:8:{s:5:\"label\";s:12:\"Small Screen\";s:11:\"description\";s:73:\"Controls when the small screen options and visibility should take effect.\";s:2:\"id\";s:16:\"visibility_small\";s:7:\"default\";s:3:\"640\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"visibility_medium\";a:8:{s:5:\"label\";s:13:\"Medium Screen\";s:11:\"description\";s:74:\"Controls when the medium screen options and visibility should take effect.\";s:2:\"id\";s:17:\"visibility_medium\";s:7:\"default\";s:4:\"1024\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"visibility_large\";a:7:{s:5:\"label\";s:12:\"Large Screen\";s:11:\"description\";s:100:\"Any screen larger than that which is defined as the medium screen will be counted as a large screen.\";s:2:\"id\";s:16:\"visibility_large\";s:10:\"full_width\";b:0;s:4:\"type\";s:3:\"raw\";s:7:\"content\";s:59:\"<div id=\"fusion-visibility-large\">> <span>1024</span></div>\";s:11:\"option_name\";s:14:\"fusion_options\";}s:32:\"responsive_typography_info_title\";a:5:{s:5:\"label\";s:21:\"Responsive Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:32:\"responsive_typography_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:22:\"typography_sensitivity\";a:9:{s:5:\"label\";s:33:\"Responsive Typography Sensitivity\";s:11:\"description\";s:83:\"Set to 0 to disable responsive typography. Increase the value for a greater effect.\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--typography_sensitivity\";}}}s:17:\"typography_factor\";a:9:{s:5:\"label\";s:24:\"Minimum Font Size Factor\";s:11:\"description\";s:112:\"The minimum font-size of elements affected by responsive typography is body font-size multiplied by this factor.\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"4\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--typography_factor\";}}}s:13:\"color_palette\";a:5:{s:5:\"label\";s:13:\"Color Palette\";s:11:\"description\";s:537:\"Set your global color palette. The colors defined here can be used from other global options, from page options and element options. For best results, the 8 colors of the core palette should be set from lightest to darkest. <strong>IMPORTANT NOTE:</strong> If a global color that is used by other options gets deleted, these corresponding options will display a default color instead. Colors are internally stored with a fixed counter. Thus, adding a new color after deleting an old one, will set the same internal name to the new color.\";s:2:\"id\";s:13:\"color_palette\";s:7:\"default\";a:8:{s:6:\"color1\";a:2:{s:5:\"color\";s:19:\"rgba(255,255,255,1)\";s:5:\"label\";s:7:\"Color 1\";}s:6:\"color2\";a:2:{s:5:\"color\";s:19:\"rgba(249,249,251,1)\";s:5:\"label\";s:7:\"Color 2\";}s:6:\"color3\";a:2:{s:5:\"color\";s:19:\"rgba(242,243,245,1)\";s:5:\"label\";s:7:\"Color 3\";}s:6:\"color4\";a:2:{s:5:\"color\";s:19:\"rgba(101,189,125,1)\";s:5:\"label\";s:7:\"Color 4\";}s:6:\"color5\";a:2:{s:5:\"color\";s:18:\"rgba(25,143,217,1)\";s:5:\"label\";s:7:\"Color 5\";}s:6:\"color6\";a:2:{s:5:\"color\";s:16:\"rgba(67,69,73,1)\";s:5:\"label\";s:7:\"Color 6\";}s:6:\"color7\";a:2:{s:5:\"color\";s:16:\"rgba(33,35,38,1)\";s:5:\"label\";s:7:\"Color 7\";}s:6:\"color8\";a:2:{s:5:\"color\";s:16:\"rgba(20,22,23,1)\";s:5:\"label\";s:7:\"Color 8\";}}s:4:\"type\";s:13:\"color-palette\";}s:13:\"primary_color\";a:6:{s:5:\"label\";s:13:\"Primary Color\";s:11:\"description\";s:57:\"Controls the main highlight color throughout the website.\";s:2:\"id\";s:13:\"primary_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:6:{i:0;a:2:{s:4:\"name\";s:15:\"--primary_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:19:\"--primary_color-85a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.85\";}}i:2;a:2:{s:4:\"name\";s:18:\"--primary_color-7a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.7\";}}i:3;a:2:{s:4:\"name\";s:18:\"--primary_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}}i:4;a:2:{s:4:\"name\";s:19:\"--primary_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}}i:5;a:2:{s:4:\"name\";s:18:\"--primary_color-2a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.2\";}}}}s:15:\"slider_position\";a:8:{s:5:\"label\";s:15:\"Slider Position\";s:11:\"description\";s:58:\"Controls if the slider displays below or above the header.\";s:2:\"id\";s:15:\"slider_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"below\";s:5:\"Below\";s:5:\"above\";s:5:\"Above\";}s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:22:\"change_slider_position\";i:1;a:1:{s:7:\"element\";s:18:\"#sliders-container\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:45:\"header_global_header_override_template_notice\";a:5:{s:2:\"id\";s:45:\"header_global_header_override_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:447:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Header override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>, or <a href=\"https://test-site.wlvrotary.org/wp-admin/post.php?post=690&action=edit\" target=\"_blank\">edit the header</a>.</div>\";s:4:\"type\";s:6:\"custom\";s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:17:\".fusion-tb-header\";}s:9:\"shortcuts\";a:1:{i:0;a:4:{s:10:\"aria_label\";s:11:\"Edit Header\";s:4:\"icon\";s:14:\"fusiona-header\";s:11:\"open_parent\";b:1;s:35:\"link_to_template_if_override_active\";s:6:\"header\";}}}}s:44:\"header_global_header_template_content_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_position\";a:8:{s:5:\"label\";s:15:\"Header Position\";s:11:\"description\";s:205:\"Controls the position of the header to be in the top, left or right of the site. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:15:\"header_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:3:\"top\";s:3:\"Top\";s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";}s:15:\"partial_refresh\";a:2:{s:34:\"header_position_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_position_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:21:\"avadaFusionSliderVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:1:{s:11:\"js_callback\";a:1:{i:0;s:22:\"change_header_position\";}}}}s:13:\"header_layout\";a:10:{s:5:\"label\";s:22:\"Select a Header Layout\";s:11:\"description\";s:322:\"Controls the general layout of the header. Headers 2-5 allow additional content areas via the header content options 1-3. Header 6 only allows parent level menu items, no child levels will display. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:13:\"header_layout\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:7:{s:2:\"v1\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:90:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/header7.jpg\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:3:{s:47:\"header_content_header_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:46:\"header_content_header_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:28:\"header_content_header_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:18:\"Edit Header Layout\";s:4:\"icon\";s:14:\"fusiona-header\";s:11:\"open_parent\";b:1;s:5:\"order\";i:1;}i:1;a:5:{s:10:\"aria_label\";s:10:\"Add Slider\";s:4:\"icon\";s:15:\"fusiona-uniF61C\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:10:\"add-slider\";s:5:\"order\";i:4;}i:2;a:5:{s:10:\"aria_label\";s:18:\"Add Page Title Bar\";s:4:\"icon\";s:18:\"fusiona-page_title\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:7:\"add-ptb\";s:5:\"order\";i:5;}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"fusion-header-layout-$\";s:12:\"remove_attrs\";a:7:{i:0;s:23:\"fusion-header-layout-v1\";i:1;s:23:\"fusion-header-layout-v2\";i:2;s:23:\"fusion-header-layout-v3\";i:3;s:23:\"fusion-header-layout-v4\";i:4;s:23:\"fusion-header-layout-v5\";i:5;s:23:\"fusion-header-layout-v6\";i:6;s:23:\"fusion-header-layout-v7\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_layout\";s:7:\"trigger\";a:1:{i:0;s:31:\"fusionReSettStickySidebarStatus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_left_content\";a:9:{s:5:\"label\";s:16:\"Header Content 1\";s:11:\"description\";s:59:\"Controls the content that displays in the top left section.\";s:2:\"id\";s:19:\"header_left_content\";s:7:\"default\";s:12:\"social_links\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:12:\"Contact Info\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leave Empty\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:53:\"header_content_header_left_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_left_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_content_header_left_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:20:\"header_right_content\";a:9:{s:5:\"label\";s:16:\"Header Content 2\";s:11:\"description\";s:60:\"Controls the content that displays in the top right section.\";s:2:\"id\";s:20:\"header_right_content\";s:7:\"default\";s:10:\"navigation\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:12:\"Contact Info\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leave Empty\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:54:\"header_content_header_right_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:53:\"header_content_header_right_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"header_content_header_right_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:17:\"header_v4_content\";a:9:{s:5:\"label\";s:16:\"Header Content 3\";s:11:\"description\";s:63:\"Controls the content that displays in the middle right section.\";s:2:\"id\";s:17:\"header_v4_content\";s:7:\"default\";s:18:\"tagline_and_search\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:7:\"tagline\";s:7:\"Tagline\";s:6:\"search\";s:6:\"Search\";s:18:\"tagline_and_search\";s:18:\"Tagline And Search\";s:6:\"banner\";s:6:\"Banner\";s:4:\"none\";s:11:\"Leave Empty\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:15:\"partial_refresh\";a:3:{s:51:\"header_content_header_v4_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:50:\"header_content_header_v4_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:32:\"header_content_header_v4_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:13:\"header_number\";a:8:{s:5:\"label\";s:29:\"Phone Number For Contact Info\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:13:\"header_number\";s:7:\"default\";s:28:\"Call Us Today! 1.555.555.555\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:33:\".fusion-contact-info-phone-number\";s:8:\"function\";s:4:\"html\";}}}s:12:\"header_email\";a:8:{s:5:\"label\";s:30:\"Email Address For Contact Info\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:12:\"header_email\";s:7:\"default\";s:19:\"info@yourdomain.com\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:34:\".fusion-contact-info-email-address\";s:8:\"function\";s:4:\"html\";s:13:\"value_pattern\";s:24:\"<a href=\"mailto:$\">$</a>\";}}}s:14:\"header_tagline\";a:8:{s:5:\"label\";s:21:\"Tagline For Content 3\";s:11:\"description\";s:105:\"This content will display if you have &quot;Tagline&quot; selected for the Header Content 3 option above.\";s:2:\"id\";s:14:\"header_tagline\";s:7:\"default\";s:19:\"Insert Tagline Here\";s:4:\"type\";s:8:\"textarea\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"function\";s:4:\"html\";}}}s:18:\"header_banner_code\";a:9:{s:5:\"label\";s:25:\"Banner Code For Content 3\";s:11:\"description\";s:194:\"This content will display if you have &quot;Banner&quot; selected for the Header Content 3 option above. Add HTML banner code for Header Content 3. Elements, like buttons, can be used here also.\";s:2:\"id\";s:18:\"header_banner_code\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:2:{s:8:\"language\";s:4:\"html\";s:5:\"theme\";s:6:\"chrome\";}s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:1:{s:26:\"header_content_banner_code\";a:4:{s:8:\"selector\";s:32:\".fusion-header-content-3-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:22:\"avada_header_content_3\";s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:39:\"header_global_header_template_bg_notice\";a:4:{s:2:\"id\";s:39:\"header_global_header_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_bg_image\";a:8:{s:5:\"label\";s:32:\"Background Image For Header Area\";s:11:\"description\";s:384:\"Select an image for the header background. If left empty, the header background color will be used. For top headers the image displays on top of the header background color and will only display if header background color opacity is set to 1. For side headers the image displays behind the header background color so the header background opacity must be set below 1 to see the image.\";s:2:\"id\";s:15:\"header_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-header-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:109:\"Turn on to have the header background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:14:\"header_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:24:\"avada-has-header-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"header_bg_parallax\";a:7:{s:5:\"label\";s:25:\"Parallax Background Image\";s:11:\"description\";s:103:\"Turn on to use a parallax scrolling effect on the background image. Only works for top header position.\";s:2:\"id\";s:18:\"header_bg_parallax\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:3;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-header-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_bg_repeat\";a:9:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:16:\"header_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:18:\"--header_bg_repeat\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"avada-header-bg-$\";s:12:\"remove_attrs\";a:4:{i:0;s:22:\"avada-header-bg-repeat\";i:1;s:24:\"avada-header-bg-repeat-x\";i:2;s:24:\"avada-header-bg-repeat-y\";i:3;s:25:\"avada-header-bg-no-repeat\";}}}}s:44:\"header_global_header_template_styling_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:17:\"side_header_width\";a:9:{s:5:\"label\";s:36:\"Header Width For Left/Right Position\";s:11:\"description\";s:52:\"Controls the width of the left or right side header.\";s:2:\"id\";s:17:\"side_header_width\";s:7:\"default\";s:3:\"280\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:19:\"--side_header_width\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:1:{s:4:\"name\";s:23:\"--side_header_width-int\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:6:\"resize\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_padding\";a:8:{s:5:\"label\";s:14:\"Header Padding\";s:11:\"description\";s:58:\"Controls the top/right/bottom/left padding for the header.\";s:2:\"id\";s:14:\"header_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:20:\"--header_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:23:\"--header_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:21:\"--header_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:22:\"--header_padding-right\";s:6:\"choice\";s:5:\"right\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:6:\"bottom\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:21:\"header_padding_bottom\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"header_shadow\";a:6:{s:5:\"label\";s:13:\"Header Shadow\";s:11:\"description\";s:40:\"Turn on to display a header drop shadow.\";s:2:\"id\";s:13:\"header_shadow\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:55:\".fusion-top-header .fusion-header-wrapper, #side-header\";s:9:\"className\";s:20:\"fusion-header-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_100_width\";a:7:{s:5:\"label\";s:17:\"100% Header Width\";s:11:\"description\";s:114:\"Turn on to have the header area display at 100% width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:16:\"header_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"wide\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:26:\"avada-has-header-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"header_bg_color\";a:7:{s:5:\"label\";s:23:\"Header Background Color\";s:11:\"description\";s:288:\"Controls the background color and opacity for the header. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay. Transparent headers are disabled on all archive pages due to technical limitations.\";s:2:\"id\";s:15:\"header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"archive_header_bg_color\";a:7:{s:5:\"label\";s:31:\"Archive Header Background Color\";s:11:\"description\";s:247:\"Controls the background color and opacity for the header on archive pages, search page and 404 page. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay.\";s:2:\"id\";s:23:\"archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--archive_header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_border_color\";a:9:{s:5:\"label\";s:19:\"Header Border Color\";s:11:\"description\";s:117:\"Controls the border colors for the header. If using left or right header position it controls the menu divider lines.\";s:2:\"id\";s:19:\"header_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_border_color\";s:7:\"element\";s:35:\".fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-header-border-color-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_top_bg_color\";a:8:{s:5:\"label\";s:27:\"Header Top Background Color\";s:11:\"description\";s:76:\"Controls the background color of the top header section used in Headers 2-5.\";s:2:\"id\";s:19:\"header_top_bg_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_top_bg_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:30:\"avada-header-top-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"tagline_font_size\";a:9:{s:5:\"label\";s:24:\"Header Tagline Font Size\";s:11:\"description\";s:64:\"Controls the font size for the tagline text when using header 4.\";s:2:\"id\";s:17:\"tagline_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--tagline_font_size\";s:7:\"element\";s:22:\".fusion-header-tagline\";}}}s:18:\"tagline_font_color\";a:8:{s:5:\"label\";s:25:\"Header Tagline Font Color\";s:11:\"description\";s:65:\"Controls the font color for the tagline text when using header 4.\";s:2:\"id\";s:18:\"tagline_font_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--tagline_font_color\";s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:43:\"header_global_header_template_sticky_notice\";a:4:{s:2:\"id\";s:43:\"header_global_header_template_sticky_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"header_sticky\";a:7:{s:5:\"label\";s:13:\"Sticky Header\";s:11:\"description\";s:34:\"Turn on to enable a sticky header.\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:40:\"header_content_sticky_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"header_content_sticky_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:21:\"header_content_sticky\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"fusion-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_tablet\";a:7:{s:5:\"label\";s:24:\"Sticky Header on Tablets\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on tablets.\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-tablet-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_mobile\";a:7:{s:5:\"label\";s:24:\"Sticky Header on Mobiles\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on mobiles.\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-mobile-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"header_sticky_shrinkage\";a:7:{s:5:\"label\";s:23:\"Sticky Header Animation\";s:11:\"description\";s:124:\"Turn on to allow the sticky header to animate to a smaller height when activated. Only works with header v1 - v3, v6 and v7.\";s:2:\"id\";s:23:\"header_sticky_shrinkage\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-sticky-shrinkage\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"header_sticky_type2_layout\";a:8:{s:5:\"label\";s:40:\"Sticky Header Display For Headers 4 - 5 \";s:11:\"description\";s:70:\"Controls what displays in the sticky header when using header v4 - v5.\";s:2:\"id\";s:26:\"header_sticky_type2_layout\";s:7:\"default\";s:9:\"menu_only\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:9:\"menu_only\";s:9:\"Menu Only\";s:13:\"menu_and_logo\";s:16:\"Menu + Logo Area\";}s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:5;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:6;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v7\";}}s:15:\"partial_refresh\";a:3:{s:45:\"header_sticky_type2_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:44:\"header_sticky_type2_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_sticky_type2_layout_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}}s:20:\"header_sticky_shadow\";a:7:{s:5:\"label\";s:20:\"Sticky Header Shadow\";s:11:\"description\";s:47:\"Turn on to display a sticky header drop shadow.\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"trigger\";a:2:{i:0;s:5:\"ready\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:14:\".fusion-header\";s:9:\"className\";s:20:\"fusion-sticky-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"header_sticky_bg_color\";a:8:{s:5:\"label\";s:30:\"Sticky Header Background Color\";s:11:\"description\";s:52:\"Controls the background color for the sticky header.\";s:2:\"id\";s:22:\"header_sticky_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--header_sticky_bg_color\";s:7:\"element\";s:53:\".fusion-arrow-svg,.fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:19:\"fusionContainerVars\";s:2:\"id\";s:28:\"is_sticky_header_transparent\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:46:\"fusion-element-render-fusion_builder_container\";}s:8:\"callback\";s:25:\"fusionReturnColorAlphaInt\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"header_sticky_menu_color\";a:7:{s:5:\"label\";s:29:\"Sticky Header Menu Font Color\";s:11:\"description\";s:59:\"Controls the color for main menu text in the sticky header.\";s:2:\"id\";s:24:\"header_sticky_menu_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--header_sticky_menu_color\";s:7:\"element\";s:17:\".fusion-main-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_sticky_nav_padding\";a:8:{s:5:\"label\";s:31:\"Sticky Header Menu Item Padding\";s:11:\"description\";s:63:\"Controls the space between each menu item in the sticky header.\";s:2:\"id\";s:25:\"header_sticky_nav_padding\";s:7:\"default\";s:2:\"35\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--header_sticky_nav_padding\";s:7:\"element\";s:41:\".fusion-main-menu,.fusion-logo-background\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"header_sticky_nav_font_size\";a:8:{s:5:\"label\";s:34:\"Sticky Header Navigation Font Size\";s:11:\"description\";s:62:\"Controls the font size of the menu items in the sticky header.\";s:2:\"id\";s:27:\"header_sticky_nav_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--header_sticky_nav_font_size\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}s:43:\"menu_global_header_override_template_notice\";a:5:{s:2:\"id\";s:43:\"menu_global_header_override_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Header override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:34:\"menu_global_header_template_notice\";a:4:{s:2:\"id\";s:34:\"menu_global_header_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:10:\"nav_height\";a:11:{s:5:\"label\";s:16:\"Main Menu Height\";s:11:\"description\";s:145:\"Controls the menu height.<span id=\"fusion-menu-height-hint\" style=\"display:inline\">  To match the logo height set to <strong>140</strong>.</span>\";s:2:\"id\";s:10:\"nav_height\";s:7:\"default\";s:2:\"94\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--nav_height\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:14:\"Edit Main Menu\";s:4:\"link\";s:74:\"https://test-site.wlvrotary.org/wp-admin/nav-menus.php?action=edit&menu=31\";s:5:\"order\";i:3;}}}}s:20:\"menu_highlight_style\";a:10:{s:5:\"label\";s:25:\"Main Menu Highlight Style\";s:11:\"description\";s:508:\"Controls the highlight style for main menu links and also affects the look of menu dropdowns. Arrow style cannot work with a transparent header background. Bar highlights will display vertically on side header layouts. <strong>IMPORTANT:</strong> Arrow & Background style can require configuration of other options depending on desired effect. <a href=\"https://theme-fusion.com/documentation/avada/main-menu-highlight-styles/\" target=\"_blank\" rel=\"noopener noreferrer\">See this post for more information</a>.\";s:2:\"id\";s:20:\"menu_highlight_style\";s:7:\"default\";s:3:\"bar\";s:7:\"choices\";a:5:{s:3:\"bar\";s:7:\"Top Bar\";s:9:\"bottombar\";s:10:\"Bottom Bar\";s:5:\"arrow\";s:5:\"Arrow\";s:10:\"background\";s:10:\"Background\";s:9:\"textcolor\";s:10:\"Color Only\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:28:\"avada-menu-highlight-style-$\";s:12:\"remove_attrs\";a:5:{i:0;s:30:\"avada-menu-highlight-style-bar\";i:1;s:36:\"avada-menu-highlight-style-bottombar\";i:2;s:32:\"avada-menu-highlight-style-arrow\";i:3;s:37:\"avada-menu-highlight-style-background\";i:4;s:36:\"avada-menu-highlight-style-textcolor\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:19:\"nav_highlight_style\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:46:\"menu_highlight_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"menu_highlight_style_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"menu_highlight_style_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:25:\"menu_highlight_background\";a:8:{s:5:\"label\";s:36:\"Main Menu Highlight Background Color\";s:11:\"description\";s:53:\"Controls the background color of main menu highlight.\";s:2:\"id\";s:25:\"menu_highlight_background\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--menu_highlight_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"menu_arrow_size\";a:9:{s:5:\"label\";s:20:\"Main Menu Arrow Size\";s:11:\"description\";s:53:\"Controls the width and height of the main menu arrow.\";s:2:\"id\";s:15:\"menu_arrow_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:4:\"type\";s:10:\"dimensions\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:23:\"--menu_arrow_size-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:24:\"--menu_arrow_size-height\";s:6:\"choice\";s:6:\"height\";}i:2;a:3:{s:4:\"name\";s:55:\"--menu_arrow_size-width-header_border_color_condition_5\";s:6:\"choice\";s:5:\"width\";s:8:\"callback\";a:2:{i:0;s:31:\"header_border_color_condition_5\";i:1;s:0:\"\";}}}}s:20:\"nav_highlight_border\";a:10:{s:5:\"label\";s:28:\"Main Menu Highlight Bar Size\";s:11:\"description\";s:44:\"Controls the size of the menu highlight bar.\";s:2:\"id\";s:20:\"nav_highlight_border\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--nav_highlight_border\";s:13:\"value_pattern\";s:3:\"$px\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;s:1:\"0\";}}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"nav_highlight_border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:5:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}s:9:\"condition\";a:5:{i:0;s:20:\"menu_highlight_style\";i:1;s:3:\"===\";i:2;s:3:\"bar\";i:3;s:1:\"$\";i:4;s:1:\"0\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"nav_padding\";a:8:{s:5:\"label\";s:22:\"Main Menu Item Padding\";s:11:\"description\";s:55:\"Controls the right padding for menu text (left on RTL).\";s:2:\"id\";s:11:\"nav_padding\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:13:\"--nav_padding\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:2:{s:4:\"name\";s:21:\"--nav_padding-no-zero\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:3:\"$px\";i:1;s:0:\"\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"nav_padding\";i:1;s:2:\"==\";i:2;s:1:\"0\";}}}}}}}s:18:\"mobile_nav_padding\";a:8:{s:5:\"label\";s:32:\"Main Menu Item Padding On Mobile\";s:11:\"description\";s:110:\"Controls the right padding for menu text (left on RTL) when the normal desktop menu is used on mobile devices.\";s:2:\"id\";s:18:\"mobile_nav_padding\";s:7:\"default\";s:2:\"25\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--mobile_nav_padding\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"megamenu_shadow\";a:8:{s:5:\"label\";s:21:\"Main Menu Drop Shadow\";s:11:\"description\";s:51:\"Turn on to display a drop shadow on menu dropdowns.\";s:2:\"id\";s:15:\"megamenu_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-megamenu-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:28:\"main_menu_sub_menu_animation\";a:9:{s:5:\"label\";s:47:\"Main Menu Dropdown / Legacy Mega Menu Animation\";s:11:\"description\";s:46:\"Controls the animation type for all sub-menus.\";s:2:\"id\";s:28:\"main_menu_sub_menu_animation\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"fade\";s:7:\"choices\";a:2:{s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:5:\"Slide\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"fusion-sub-menu-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-sub-menu-fade\";i:1;s:21:\"fusion-sub-menu-slide\";}}}s:29:\"dropdown_menu_top_border_size\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Top Border Size\";s:11:\"description\";s:65:\"Controls top border size of dropdown menus and legacy mega menus.\";s:2:\"id\";s:29:\"dropdown_menu_top_border_size\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--dropdown_menu_top_border_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"dropdown_menu_width\";a:9:{s:5:\"label\";s:24:\"Main Menu Dropdown Width\";s:11:\"description\";s:35:\"Controls the width of the dropdown.\";s:2:\"id\";s:19:\"dropdown_menu_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--dropdown_menu_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"mainmenu_dropdown_vertical_padding\";a:9:{s:5:\"label\";s:31:\"Main Menu Dropdown Item Padding\";s:11:\"description\";s:56:\"Controls the top/bottom padding for dropdown menu items.\";s:2:\"id\";s:34:\"mainmenu_dropdown_vertical_padding\";s:7:\"default\";s:2:\"12\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--mainmenu_dropdown_vertical_padding\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:33:\"mainmenu_dropdown_display_divider\";a:8:{s:5:\"label\";s:26:\"Main Menu Dropdown Divider\";s:11:\"description\";s:57:\"Turn on to display a divider line on dropdown menu items.\";s:2:\"id\";s:33:\"mainmenu_dropdown_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:35:\"avada-has-mainmenu-dropdown-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:31:\"menu_display_dropdown_indicator\";a:9:{s:5:\"label\";s:28:\"Main Menu Dropdown Indicator\";s:11:\"description\";s:68:\"Turn on to display arrow indicators next to parent level menu items.\";s:2:\"id\";s:31:\"menu_display_dropdown_indicator\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:3:{s:6:\"parent\";s:6:\"Parent\";s:12:\"parent_child\";s:14:\"Parent + Child\";s:4:\"none\";s:4:\"None\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:3:{s:57:\"header_menu_display_dropdown_indicator_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:56:\"header_menu_display_dropdown_indicator_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:38:\"header_menu_display_dropdown_indicator\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:20:\"main_nav_search_icon\";a:7:{s:5:\"label\";s:21:\"Main Menu Search Icon\";s:11:\"description\";s:52:\"Turn on to display the search icon in the main menu.\";s:2:\"id\";s:20:\"main_nav_search_icon\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:46:\"header_main_nav_search_icon_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_main_nav_search_icon_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"header_main_nav_search_icon\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-has-main-nav-search-icon\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"main_nav_search_layout\";a:9:{s:5:\"label\";s:23:\"Main Menu Search Layout\";s:11:\"description\";s:55:\"Controls the layout of the search bar in the main menu.\";s:2:\"id\";s:22:\"main_nav_search_layout\";s:7:\"default\";s:7:\"overlay\";s:7:\"choices\";a:2:{s:8:\"dropdown\";s:9:\"Drop-Down\";s:7:\"overlay\";s:12:\"Menu Overlay\";}s:4:\"type\";s:15:\"radio-buttonset\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:20:\"main_nav_search_icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:1:{s:30:\"main_nav_search_layout_refresh\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:8:\"dropdown\";i:1;s:7:\"overlay\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";a:2:{i:0;s:32:\"fusion-main-menu-search-dropdown\";i:1;s:31:\"fusion-main-menu-search-overlay\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"main_nav_icon_circle\";a:6:{s:5:\"label\";s:29:\"Main Menu Icon Circle Borders\";s:11:\"description\";s:64:\"Turn on to display a circle border on the cart and search icons.\";s:2:\"id\";s:20:\"main_nav_icon_circle\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"fusion-has-main-nav-icon-circle\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"main_nav_highlight_radius\";a:6:{s:5:\"label\";s:27:\"Menu Highlight Label Radius\";s:11:\"description\";s:61:\"Controls the border radius of all your menu highlight labels.\";s:2:\"id\";s:25:\"main_nav_highlight_radius\";s:7:\"default\";s:3:\"2px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--main_nav_highlight_radius\";s:7:\"element\";s:50:\".fusion-menu-highlight-label, .awb-menu__highlight\";}}}s:17:\"menu_sub_bg_color\";a:8:{s:5:\"label\";s:35:\"Main Menu Dropdown Background Color\";s:11:\"description\";s:56:\"Controls the background color of the main menu dropdown.\";s:2:\"id\";s:17:\"menu_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_sub_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_bg_hover_color\";a:8:{s:5:\"label\";s:41:\"Main Menu Dropdown Background Hover Color\";s:11:\"description\";s:62:\"Controls the background hover color of the main menu dropdown.\";s:2:\"id\";s:19:\"menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--menu_bg_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"menu_sub_sep_color\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Separator Color\";s:11:\"description\";s:63:\"Controls the color of the separators in the main menu dropdown.\";s:2:\"id\";s:18:\"menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--menu_sub_sep_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";a:3:{i:0;s:76:\".fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents\";i:1;s:74:\".fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents\";i:2;s:74:\".fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents\";}s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:1:\"0\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:18:\"menu_sub_sep_color\";}}}}s:17:\"menu_h45_bg_color\";a:8:{s:5:\"label\";s:47:\"Main Menu Background Color For Header 4 &amp; 5\";s:11:\"description\";s:72:\"Controls the background color of the main menu when using header 4 or 5.\";s:2:\"id\";s:17:\"menu_h45_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_h45_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"main_menu_typography_info\";a:4:{s:5:\"label\";s:20:\"Main Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"main_menu_typography_info\";s:4:\"type\";s:4:\"info\";}s:14:\"nav_typography\";a:10:{s:2:\"id\";s:14:\"nav_typography\";s:5:\"label\";s:16:\"Menus Typography\";s:11:\"description\";s:72:\"These settings control the typography for all main menu top-level items.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:25:\"text_transform_no_inherit\";b:1;s:5:\"class\";s:17:\"avada-no-fontsize\";s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:14:\"nav_typography\";}}i:1;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:26:\"--nav_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:3;a:2:{s:4:\"name\";s:27:\"--nav_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:4;a:3:{s:4:\"name\";s:31:\"--nav_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:22:\"--nav_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-65a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.65000000000000002220446049250313080847263336181640625;}}i:7;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-35a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.34999999999999997779553950749686919152736663818359375;}}i:8;a:2:{s:4:\"name\";s:31:\"--nav_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:15:\"menu_text_align\";a:11:{s:5:\"label\";s:20:\"Main Menu Text Align\";s:11:\"description\";s:75:\"Controls the main menu text alignment for top headers 4-5 and side headers.\";s:2:\"id\";s:15:\"menu_text_align\";s:7:\"default\";s:6:\"center\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--menu_text_align\";s:7:\"element\";s:17:\".fusion-main-menu\";}}s:6:\"output\";a:3:{i:0;a:0:{}i:1;a:0:{}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"menu-text-align-left\";i:1;s:22:\"menu-text-align-center\";i:2;s:21:\"menu-text-align-right\";}}}s:15:\"partial_refresh\";a:3:{s:41:\"menu_text_align_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"menu_text_align_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"menu_text_align_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:22:\"menu_hover_first_color\";a:6:{s:5:\"label\";s:33:\"Main Menu Font Hover/Active Color\";s:11:\"description\";s:97:\"Controls the color for main menu text hover and active states, highlight bar and dropdown border.\";s:2:\"id\";s:22:\"menu_hover_first_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:24:\"--menu_hover_first_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:28:\"--menu_hover_first_color-65a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.65\";}}}}s:14:\"menu_sub_color\";a:8:{s:5:\"label\";s:29:\"Main Menu Dropdown Font Color\";s:11:\"description\";s:47:\"Controls the color for main menu dropdown text.\";s:2:\"id\";s:14:\"menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"nav_dropdown_font_size\";a:9:{s:5:\"label\";s:28:\"Main Menu Dropdown Font Size\";s:11:\"description\";s:51:\"Controls the font size for main menu dropdown text.\";s:2:\"id\";s:22:\"nav_dropdown_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--nav_dropdown_font_size\";}}}s:31:\"flyout_menu_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:224:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Flyout Menu Options are only available when using Header Layout #6 or Mobile Flyout Menu. Your current setup does not utilize the flyout menu.</div>\";s:2:\"id\";s:31:\"flyout_menu_important_note_info\";s:4:\"type\";s:6:\"custom\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}}s:26:\"flyout_menu_icon_font_size\";a:9:{s:5:\"label\";s:26:\"Flyout Menu Icon Font Size\";s:11:\"description\";s:49:\"Controls the font size for the flyout menu icons.\";s:2:\"id\";s:26:\"flyout_menu_icon_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:28:\"--flyout_menu_icon_font_size\";}i:1;a:2:{s:4:\"name\";s:31:\"--flyout_menu_icon_font_size_px\";s:8:\"callback\";a:1:{i:0;s:11:\"units_to_px\";}}}}s:24:\"flyout_nav_icons_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Icon Padding\";s:11:\"description\";s:63:\"Controls the right padding for flyout menu icons (left on RTL).\";s:2:\"id\";s:24:\"flyout_nav_icons_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_nav_icons_padding\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"flyout_menu_icon_color\";a:8:{s:5:\"label\";s:22:\"Flyout Menu Icon Color\";s:11:\"description\";s:44:\"Controls the color of the flyout menu icons.\";s:2:\"id\";s:22:\"flyout_menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--flyout_menu_icon_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_icon_hover_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Icon Hover Color\";s:11:\"description\";s:50:\"Controls the hover color of the flyout menu icons.\";s:2:\"id\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_icon_hover_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_background_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Background Color\";s:11:\"description\";s:48:\"Controls the background color of the flyout menu\";s:2:\"id\";s:28:\"flyout_menu_background_color\";s:7:\"default\";s:96:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 6%))\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_background_color\";s:7:\"element\";s:22:\".fusion-flyout-menu-bg\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"flyout_menu_direction\";a:9:{s:5:\"label\";s:21:\"Flyout Menu Direction\";s:11:\"description\";s:51:\"Controls the direction the flyout menu starts from.\";s:2:\"id\";s:21:\"flyout_menu_direction\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:6:\"select\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:5:{s:4:\"fade\";s:4:\"Fade\";s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:3:\"top\";s:3:\"Top\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:29:\"avada-flyout-menu-direction-$\";s:12:\"remove_attrs\";a:5:{i:0;s:32:\"avada-flyout-menu-direction-fade\";i:1;s:32:\"avada-flyout-menu-direction-left\";i:2;s:33:\"avada-flyout-menu-direction-right\";i:3;s:34:\"avada-flyout-menu-direction-bottom\";i:4;s:31:\"avada-flyout-menu-direction-top\";}}}}s:24:\"flyout_menu_item_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Item Padding\";s:11:\"description\";s:47:\"Controls the padding between flyout menu items.\";s:2:\"id\";s:24:\"flyout_menu_item_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_menu_item_padding\";s:7:\"element\";s:19:\".fusion-flyout-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"no_secondary_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:227:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Secondary Top Menu Options are only available when using Header Layouts #2-5. Your current Header Layout does not utilize the secondary top menu.</div>\";s:2:\"id\";s:22:\"no_secondary_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}}s:23:\"topmenu_dropwdown_width\";a:9:{s:5:\"label\";s:29:\"Secondary Menu Dropdown Width\";s:11:\"description\";s:50:\"Controls the width of the secondary menu dropdown.\";s:2:\"id\";s:23:\"topmenu_dropwdown_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--topmenu_dropwdown_width\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"header_top_first_border_color\";a:8:{s:5:\"label\";s:28:\"Secondary Menu Divider Color\";s:11:\"description\";s:61:\"Controls the divider color of the first level secondary menu.\";s:2:\"id\";s:29:\"header_top_first_border_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_first_border_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"header_top_sub_bg_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Background Color\";s:11:\"description\";s:61:\"Controls the background color of the secondary menu dropdown.\";s:2:\"id\";s:23:\"header_top_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--header_top_sub_bg_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"header_top_menu_bg_hover_color\";a:8:{s:5:\"label\";s:46:\"Secondary Menu Dropdown Background Hover Color\";s:11:\"description\";s:67:\"Controls the background hover color of the secondary menu dropdown.\";s:2:\"id\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_top_menu_bg_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"header_top_menu_sub_sep_color\";a:8:{s:5:\"label\";s:39:\"Secondary Menu Dropdown Separator Color\";s:11:\"description\";s:68:\"Controls the color of the separators in the secondary menu dropdown.\";s:2:\"id\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_menu_sub_sep_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"secondary_menu_typography_info\";a:5:{s:5:\"label\";s:29:\"Secondary Top Menu Typography\";s:2:\"id\";s:30:\"secondary_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}}s:14:\"snav_font_size\";a:9:{s:5:\"label\";s:24:\"Secondary Menu Font Size\";s:11:\"description\";s:47:\"Controls the font size for secondary menu text.\";s:2:\"id\";s:14:\"snav_font_size\";s:7:\"default\";s:4:\"12px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--snav_font_size\";}}}s:11:\"sec_menu_lh\";a:9:{s:5:\"label\";s:26:\"Secondary Menu Line Height\";s:11:\"description\";s:44:\"Controls the line height for secondary menu.\";s:2:\"id\";s:11:\"sec_menu_lh\";s:7:\"default\";s:4:\"48px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:13:\"--sec_menu_lh\";}i:1;a:3:{s:4:\"name\";s:16:\"--top-bar-height\";s:7:\"element\";s:14:\".fusion-header\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:11:\"calc($ / 2)\";i:1;s:6:\"21.5px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"sec_menu_lh\";i:1;s:1:\">\";i:2;s:2:\"43\";}}}}}}}s:10:\"snav_color\";a:8:{s:5:\"label\";s:25:\"Secondary Menu Font Color\";s:11:\"description\";s:43:\"Controls the color for secondary menu text.\";s:2:\"id\";s:10:\"snav_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--snav_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_top_menu_sub_color\";a:8:{s:5:\"label\";s:34:\"Secondary Menu Dropdown Font Color\";s:11:\"description\";s:52:\"Controls the color for secondary menu dropdown text.\";s:2:\"id\";s:25:\"header_top_menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--header_top_menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"header_top_menu_sub_hover_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Font Hover Color\";s:11:\"description\";s:58:\"Controls the hover color for secondary menu dropdown text.\";s:2:\"id\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:33:\"--header_top_menu_sub_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"no_responsive_mode_info_1\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:280:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please enable responsive mode. Mobile menus are only available when you\'re using the responsive mode. To enable it please go to the \"Responsive\" section and set the \"Responsive Design\" option to ON.</div>\";s:2:\"id\";s:25:\"no_responsive_mode_info_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"0\";}}}s:19:\"no_mobile_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Because of the design of your Header Layout #6, only a few options are available here. More options are available when using Header Layouts #1-5 or 7. The rest of the options for Header Layout #6 are on the Flyout Menu and Main Menu tab.</div>\";s:2:\"id\";s:19:\"no_mobile_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}}s:18:\"mobile_menu_design\";a:10:{s:5:\"label\";s:24:\"Mobile Menu Design Style\";s:11:\"description\";s:96:\"Controls the design of the mobile menu. Flyout design style only allows parent level menu items.\";s:2:\"id\";s:18:\"mobile_menu_design\";s:7:\"default\";s:7:\"classic\";s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:3:{s:7:\"classic\";s:7:\"Classic\";s:6:\"modern\";s:6:\"Modern\";s:6:\"flyout\";s:6:\"Flyout\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"mobile-menu-design-$\";s:12:\"remove_attrs\";a:3:{i:0;s:26:\"mobile-menu-design-classic\";i:1;s:25:\"mobile-menu-design-modern\";i:2;s:25:\"mobile-menu-design-flyout\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_design_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_design_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_design_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:28:\"mobile_menu_icons_top_margin\";a:9:{s:5:\"label\";s:28:\"Mobile Menu Icons Top Margin\";s:11:\"description\";s:82:\"Controls the top margin for the icons in the modern and flyout mobile menu design.\";s:2:\"id\";s:28:\"mobile_menu_icons_top_margin\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_icons_top_margin\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"mobile_menu_nav_height\";a:9:{s:5:\"label\";s:32:\"Mobile Menu Dropdown Item Height\";s:11:\"description\";s:47:\"Controls the height of each dropdown menu item.\";s:2:\"id\";s:22:\"mobile_menu_nav_height\";s:7:\"default\";s:2:\"42\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_menu_nav_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"mobile_nav_submenu_slideout\";a:8:{s:5:\"label\";s:31:\"Mobile Menu Dropdown Slide Outs\";s:11:\"description\";s:60:\"Turn on to allow dropdown sections to slide out when tapped.\";s:2:\"id\";s:27:\"mobile_nav_submenu_slideout\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:16:\"submenu_slideout\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionMobileMenu\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"mobile_menu_search\";a:7:{s:5:\"label\";s:37:\"Display Mobile Menu Search Icon/Field\";s:11:\"description\";s:60:\"Turn on to display the search icon/field in the mobile menu.\";s:2:\"id\";s:18:\"mobile_menu_search\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_search_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_search_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_search_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:29:\"mobile_menu_submenu_indicator\";a:7:{s:5:\"label\";s:30:\"Mobile Menu Sub-Menu Indicator\";s:11:\"description\";s:69:\"Turn on to display the mobile menu sub-menu indicator: &quot;-&quot;.\";s:2:\"id\";s:29:\"mobile_menu_submenu_indicator\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:25:\".fusion-mobile-nav-holder\";s:9:\"className\";s:33:\"fusion-mobile-menu-indicator-hide\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"mobile_header_bg_color\";a:9:{s:5:\"label\";s:30:\"Mobile Header Background Color\";s:11:\"description\";s:62:\"Controls the background color of the header on mobile devices.\";s:2:\"id\";s:22:\"mobile_header_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-mobile-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:0;}}}s:30:\"mobile_archive_header_bg_color\";a:8:{s:5:\"label\";s:38:\"Mobile Archive Header Background Color\";s:11:\"description\";s:75:\"Controls the background color of the archive page header on mobile devices.\";s:2:\"id\";s:30:\"mobile_archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"mobile_menu_background_color\";a:8:{s:5:\"label\";s:28:\"Mobile Menu Background Color\";s:11:\"description\";s:86:\"Controls the background color of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:28:\"mobile_menu_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"mobile_menu_hover_color\";a:8:{s:5:\"label\";s:34:\"Mobile Menu Background Hover Color\";s:11:\"description\";s:64:\"Controls the background hover color of the mobile menu dropdown.\";s:2:\"id\";s:23:\"mobile_menu_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--mobile_menu_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_border_color\";a:8:{s:5:\"label\";s:24:\"Mobile Menu Border Color\";s:11:\"description\";s:95:\"Controls the border and divider colors of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:24:\"mobile_menu_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_toggle_color\";a:8:{s:5:\"label\";s:24:\"Mobile Menu Toggle Color\";s:11:\"description\";s:50:\"Controls the color of the mobile menu toggle icon.\";s:2:\"id\";s:24:\"mobile_menu_toggle_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_toggle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"mobile_menu_typography_info\";a:5:{s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"mobile_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}}s:22:\"mobile_menu_typography\";a:11:{s:2:\"id\";s:22:\"mobile_menu_typography\";s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:54:\"These settings control the typography for mobile menu.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:25:\"text_transform_no_inherit\";b:1;s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:11:{i:0;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:22:\"mobile_menu_typography\";}}i:1;a:2:{s:4:\"name\";s:34:\"--mobile_menu_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:3:{s:4:\"name\";s:39:\"--mobile_menu_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:30:\"--mobile_menu_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:2:{s:4:\"name\";s:35:\"--mobile_menu_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:7;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";}i:8;a:2:{s:4:\"name\";s:39:\"--mobile_menu_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:9;a:3:{s:4:\"name\";s:45:\"--mobile_menu_typography-font-size-30-or-24px\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"30px\";i:1;s:4:\"24px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}i:10;a:3:{s:4:\"name\";s:47:\"--mobile_menu_typography-font-size-open-submenu\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"20px\";i:1;s:45:\"var(--mobile_menu_typography-font-size, 13px)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"30\";}}}}}}}s:28:\"mobile_menu_font_hover_color\";a:8:{s:5:\"label\";s:23:\"Mobile Menu Hover Color\";s:11:\"description\";s:99:\"Controls the hover color of the mobile menu item. Also, used to highlight current mobile menu item.\";s:2:\"id\";s:28:\"mobile_menu_font_hover_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_font_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"mobile_menu_text_align\";a:9:{s:5:\"label\";s:22:\"Mobile Menu Text Align\";s:11:\"description\";s:40:\"Controls the mobile menu text alignment.\";s:2:\"id\";s:22:\"mobile_menu_text_align\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:6:{s:7:\"element\";s:28:\"nav.fusion-mobile-nav-holder\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"fusion-mobile-menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:34:\"fusion-mobile-menu-text-align-left\";i:1;s:36:\"fusion-mobile-menu-text-align-center\";i:2;s:35:\"fusion-mobile-menu-text-align-right\";}s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:1:{s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:18:\"mobile_menu_design\";i:1;s:3:\"!==\";i:2;s:6:\"flyout\";}}}}}}}s:19:\"header_v6_used_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:219:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Legacy Mega Menu Options are only available when using Header Layouts #1-5. Your current Header Layout #6 does not utilize the mega menu.</div>\";s:2:\"id\";s:19:\"header_v6_used_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}}}s:18:\"legacy_mega_notice\";a:4:{s:2:\"id\";s:18:\"legacy_mega_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:340:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant mega menu setup, we recommend using the library mega menus. To create a Mega Menu, visit the <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-library\" target=\"_blank\">Avada Library</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:22:\"megamenu_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:185:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Legacy Mega Menu is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:22:\"megamenu_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:14:\"megamenu_width\";a:10:{s:5:\"label\";s:34:\"Legacy Mega Menu Wrapper Max Width\";s:11:\"description\";s:139:\"Controls the max width of the legacy mega menu. On boxed side header layouts, &quot;Viewport Width&quot; will match &quot;Site Width&quot;.\";s:2:\"id\";s:14:\"megamenu_width\";s:4:\"type\";s:6:\"select\";s:7:\"default\";s:10:\"site_width\";s:7:\"choices\";a:3:{s:10:\"site_width\";s:10:\"Site Width\";s:14:\"viewport_width\";s:10:\"100% Width\";s:12:\"custom_width\";s:12:\"Custom Width\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:19:\"megamenu_base_width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:18:\"megamenu_max_width\";a:8:{s:5:\"label\";s:26:\"Legacy Mega Menu Max-Width\";s:11:\"description\";s:47:\"Controls the max width of the legacy mega menu.\";s:2:\"id\";s:18:\"megamenu_max_width\";s:7:\"default\";s:4:\"1200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"4096\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:12:\"custom_width\";}}s:15:\"partial_refresh\";a:3:{s:44:\"megamenu_max_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"megamenu_max_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"megamenu_max_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:31:\"megamenu_interior_content_width\";a:8:{s:5:\"label\";s:39:\"Legacy Mega Menu Interior Content Width\";s:11:\"description\";s:103:\"For full width mega menus select if the interior menu content is contained to site width or 100% width.\";s:2:\"id\";s:31:\"megamenu_interior_content_width\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:14:\"viewport_width\";s:7:\"choices\";a:2:{s:10:\"site_width\";s:10:\"Site Width\";s:14:\"viewport_width\";s:10:\"100% Width\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:14:\"viewport_width\";}}s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"megamenu_title_size\";a:8:{s:5:\"label\";s:34:\"Legacy Mega Menu Column Title Size\";s:11:\"description\";s:51:\"Controls the font size for mega menu column titles.\";s:2:\"id\";s:19:\"megamenu_title_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--megamenu_title_size\";s:7:\"element\";s:22:\".fusion-megamenu-title\";}}}s:30:\"megamenu_item_vertical_padding\";a:8:{s:5:\"label\";s:38:\"Legacy Mega Menu Dropdown Item Padding\";s:11:\"description\";s:61:\"Controls the top/bottom padding for mega menu dropdown items.\";s:2:\"id\";s:30:\"megamenu_item_vertical_padding\";s:7:\"default\";s:1:\"7\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--megamenu_item_vertical_padding\";s:7:\"element\";s:24:\".fusion-megamenu-submenu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"megamenu_item_display_divider\";a:7:{s:5:\"label\";s:29:\"Legacy Mega Menu Item Divider\";s:11:\"description\";s:62:\"Turn on to display a divider between mega menu dropdown items.\";s:2:\"id\";s:29:\"megamenu_item_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-megamenu-item-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"menu_icons_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:381:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Icons are available for both the main and dropdown menus. However, the options below only apply to the main menu. Dropdown menu icons do not use these options below, they follow the dropdown font size and color. The icons themselves can be added to your menu items in the Appearance > Menus section.</div>\";s:2:\"id\";s:15:\"menu_icons_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"menu_icon_position\";a:8:{s:5:\"label\";s:23:\"Main Menu Icon Position\";s:11:\"description\";s:37:\"Controls the main menu icon position.\";s:2:\"id\";s:18:\"menu_icon_position\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:4:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";}s:4:\"type\";s:6:\"select\";s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:26:\"avada-menu-icon-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:28:\"avada-menu-icon-position-top\";i:1;s:30:\"avada-menu-icon-position-right\";i:2;s:31:\"avada-menu-icon-position-bottom\";i:3;s:29:\"avada-menu-icon-position-left\";}}}s:15:\"partial_refresh\";a:3:{s:44:\"menu_icon_position_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"menu_icon_position_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"menu_icon_position_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:14:\"menu_icon_size\";a:7:{s:5:\"label\";s:19:\"Main Menu Icon Size\";s:11:\"description\";s:46:\"Controls the size of the top-level menu icons.\";s:2:\"id\";s:14:\"menu_icon_size\";s:7:\"default\";s:2:\"14\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_icon_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"menu_icon_color\";a:6:{s:5:\"label\";s:20:\"Main Menu Icon Color\";s:11:\"description\";s:52:\"Controls the color of the top-level main menu icons.\";s:2:\"id\";s:15:\"menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--menu_icon_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"menu_icon_hover_color\";a:6:{s:5:\"label\";s:26:\"Main Menu Icon Hover Color\";s:11:\"description\";s:58:\"Controls the hover color of the top-level main menu icons.\";s:2:\"id\";s:21:\"menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--menu_icon_hover_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_thumbnail_size\";a:8:{s:5:\"label\";s:24:\"Mega Menu Thumbnail Size\";s:11:\"description\";s:149:\"Controls the width and height of the top-level mega menu thumbnails. Use &quot;auto&quot; for automatic resizing if you added either width or height.\";s:2:\"id\";s:19:\"menu_thumbnail_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:27:\"--menu_thumbnail_size-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:17:\".fusion-main-menu\";}i:1;a:3:{s:4:\"name\";s:28:\"--menu_thumbnail_size-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}s:14:\"logo_alignment\";a:9:{s:5:\"label\";s:14:\"Logo Alignment\";s:11:\"description\";s:88:\"Controls the logo alignment. &quot;Center&quot; only works on Header 5 and Side Headers.\";s:2:\"id\";s:14:\"logo_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--logo_alignment\";}}s:6:\"output\";a:5:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:14:\"logo_alignment\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"mobile-logo-pos-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"mobile-logo-pos-left\";i:1;s:22:\"mobile-logo-pos-center\";i:2;s:21:\"mobile-logo-pos-right\";}}i:3;a:5:{s:7:\"element\";s:41:\".side-header-wrapper .side-header-content\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:4;a:5:{s:7:\"element\";s:48:\".side-header-wrapper .fusion-main-menu-container\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:18:\"fusion-logo-menu-$\";s:12:\"remove_attrs\";a:3:{i:0;s:21:\"fusion-logo-menu-left\";i:1;s:23:\"fusion-logo-menu-center\";i:2;s:22:\"fusion-logo-menu-right\";}}}}s:11:\"logo_margin\";a:9:{s:5:\"label\";s:12:\"Logo Margins\";s:11:\"description\";s:56:\"Controls the top/right/bottom/left margins for the logo.\";s:2:\"id\";s:11:\"logo_margin\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"34px\";s:6:\"bottom\";s:4:\"34px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:4:{i:0;a:4:{s:4:\"name\";s:17:\"--logo_margin-top\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:1;a:4:{s:4:\"name\";s:20:\"--logo_margin-bottom\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:2;a:4:{s:4:\"name\";s:18:\"--logo_margin-left\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:4:\"left\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:3;a:4:{s:4:\"name\";s:19:\"--logo_margin-right\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:5:\"right\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}}s:6:\"output\";a:6:{i:0;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:3:\"top\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:15:\"data-margin-top\";}i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:6:\"bottom\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:18:\"data-margin-bottom\";}i:3;a:3:{s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"logo_margin_bottom\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:4:\"left\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:16:\"data-margin-left\";}i:5;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:5:\"right\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:17:\"data-margin-right\";}}}s:15:\"logo_background\";a:9:{s:5:\"label\";s:15:\"Logo Background\";s:11:\"description\";s:53:\"Turn on to display a colored background for the logo.\";s:2:\"id\";s:15:\"logo_background\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:28:\"fusion-gutter-and-and-or-and\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:4;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:36:\".fusion-logo,.fusion-logo-background\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:25:\"avada-has-logo-background\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:21:\"logo_background_color\";a:8:{s:5:\"label\";s:21:\"Logo Background Color\";s:11:\"description\";s:43:\"Controls the background color for the logo.\";s:2:\"id\";s:21:\"logo_background_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:36:\"fusion-gutter-and-and-and-or-and-and\";s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:4;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:5;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:6;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--logo_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"logo_custom_link\";a:6:{s:5:\"label\";s:20:\"Logo Custom Link URL\";s:11:\"description\";s:95:\"Enter a custom URL the site logo should link to. Leave empty to let logo link to the home page.\";s:2:\"id\";s:16:\"logo_custom_link\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:17:\".fusion-logo-link\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:4:\"href\";s:13:\"value_pattern\";s:1:\"$\";}}}s:23:\"default_logo_info_title\";a:5:{s:5:\"label\";s:12:\"Default Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"default_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:4:\"logo\";a:9:{s:5:\"label\";s:12:\"Default Logo\";s:11:\"description\";s:35:\"Select an image file for your logo.\";s:2:\"id\";s:4:\"logo\";s:7:\"default\";s:78:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/logo.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:9:\"Edit Logo\";s:4:\"icon\";s:19:\"fusiona-plus-circle\";s:5:\"order\";i:2;}}}}s:11:\"logo_retina\";a:9:{s:5:\"label\";s:19:\"Retina Default Logo\";s:11:\"description\";s:107:\"Select an image file for the retina version of the logo. It should be exactly 2x the size of the main logo.\";s:2:\"id\";s:11:\"logo_retina\";s:7:\"default\";s:81:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/logo@2x.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:\"partial_refresh\";a:1:{s:27:\"partial_refresh_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"sticky_logo_info_title\";a:5:{s:5:\"label\";s:18:\"Sticky Header Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"sticky_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:18:\"sticky_header_logo\";a:9:{s:5:\"label\";s:18:\"Sticky Header Logo\";s:11:\"description\";s:49:\"Select an image file for your sticky header logo.\";s:2:\"id\";s:18:\"sticky_header_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:34:\"partial_refresh_sticky_header_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:22:\".fusion-logo-alignment\";s:9:\"className\";s:20:\"fusion-sticky-logo-1\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"sticky_header_logo_retina\";a:9:{s:5:\"label\";s:25:\"Retina Sticky Header Logo\";s:11:\"description\";s:130:\"Select an image file for the retina version of the sticky header logo. It should be exactly 2x the size of the sticky header logo.\";s:2:\"id\";s:25:\"sticky_header_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:\"partial_refresh\";a:1:{s:41:\"partial_refresh_sticky_header_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"mobile_logo_info_title\";a:5:{s:5:\"label\";s:11:\"Mobile Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"mobile_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:11:\"mobile_logo\";a:8:{s:5:\"label\";s:11:\"Mobile Logo\";s:11:\"description\";s:42:\"Select an image file for your mobile logo.\";s:2:\"id\";s:11:\"mobile_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:27:\"partial_refresh_mobile_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:18:\"mobile_logo_retina\";a:9:{s:5:\"label\";s:18:\"Retina Mobile Logo\";s:11:\"description\";s:116:\"Select an image file for the retina version of the mobile logo. It should be exactly 2x the size of the mobile logo.\";s:2:\"id\";s:18:\"mobile_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:\"partial_refresh\";a:1:{s:34:\"partial_refresh_mobile_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:8:\"fav_icon\";a:7:{s:5:\"label\";s:7:\"Favicon\";s:11:\"description\";s:55:\"Favicon for your website at 32px x 32px or 64px x 64px.\";s:2:\"id\";s:8:\"fav_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:20:\"fav_icon_apple_touch\";a:7:{s:5:\"label\";s:16:\"Apple Touch Icon\";s:11:\"description\";s:47:\"Favicon for Apple iOS devices at 180px x 180px.\";s:2:\"id\";s:20:\"fav_icon_apple_touch\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"fav_icon_android\";a:7:{s:5:\"label\";s:20:\"Android Devices Icon\";s:11:\"description\";s:51:\"Favicon for Android-based devices at 192px x 192px.\";s:2:\"id\";s:16:\"fav_icon_android\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:13:\"fav_icon_edge\";a:7:{s:5:\"label\";s:19:\"Microsoft Edge Icon\";s:11:\"description\";s:53:\"Favicon for Microsoft Edge browsers at 270px x 270px.\";s:2:\"id\";s:13:\"fav_icon_edge\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:39:\"page_title_bar_template_override_notice\";a:5:{s:2:\"id\";s:39:\"page_title_bar_template_override_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:334:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Page Title Bar override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"custom\";}s:30:\"page_title_bar_template_notice\";a:4:{s:2:\"id\";s:30:\"page_title_bar_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:345:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Page Title Bar Builder. To create a custom Page Title Bar Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"page_title_bar\";a:9:{s:5:\"label\";s:14:\"Page Title Bar\";s:11:\"description\";s:41:\"Controls how the page title bar displays.\";s:2:\"id\";s:14:\"page_title_bar\";s:7:\"default\";s:4:\"hide\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:20:\"Show Bar and Content\";s:12:\"content_only\";s:17:\"Show Content Only\";s:4:\"hide\";s:4:\"Hide\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:38:\"page_title_bar_contents_page_title_bar\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"avada-has-titlebar-$\";s:12:\"remove_attrs\";a:3:{i:0;s:23:\"avada-has-titlebar-hide\";i:1;s:34:\"avada-has-titlebar-bar_and_content\";i:2;s:31:\"avada-has-titlebar-content_only\";}}}}s:17:\"page_title_bar_bs\";a:9:{s:5:\"label\";s:40:\"Breadcrumbs / Search Bar Content Display\";s:11:\"description\";s:313:\"Controls what displays in the breadcrumbs area.   <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"page_title_bar_bs\";s:7:\"default\";s:11:\"breadcrumbs\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"none\";s:4:\"None\";s:11:\"breadcrumbs\";s:11:\"Breadcrumbs\";s:10:\"search_box\";s:10:\"Search Bar\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:19:\"page_title_bar_text\";a:8:{s:5:\"label\";s:23:\"Page Title Bar Headings\";s:11:\"description\";s:312:\"Turn on to display the page title bar headings.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"page_title_bar_text\";s:7:\"default\";s:1:\"1\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_page_title_bar_text\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:28:\"page_title_bar_styling_title\";a:6:{s:5:\"label\";s:22:\"Page Title Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"page_title_bar_styling_title\";s:6:\"hidden\";b:0;s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:20:\"page_title_100_width\";a:8:{s:5:\"label\";s:25:\"Page Title Bar 100% Width\";s:11:\"description\";s:389:\"Turn on to have the page title bar area display at 100% width according to the viewport size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_100_width\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-has-pagetitle-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_height\";a:8:{s:5:\"label\";s:21:\"Page Title Bar Height\";s:11:\"description\";s:318:\"Controls the height of the page title bar on desktop.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"page_title_height\";s:7:\"default\";s:5:\"300px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--page_title_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:24:\"page_title_mobile_height\";a:9:{s:5:\"label\";s:28:\"Page Title Bar Mobile Height\";s:11:\"description\";s:317:\"Controls the height of the page title bar on mobile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"page_title_mobile_height\";s:7:\"default\";s:5:\"240px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--page_title_mobile_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;a:2:{s:7:\"setting\";s:20:\"page_title_font_size\";s:8:\"addUnits\";b:1;}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"auto\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:39:\"avada-has-page-title-mobile-height-auto\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"page_title_bg_color\";a:8:{s:5:\"label\";s:31:\"Page Title Bar Background Color\";s:11:\"description\";s:317:\"Controls the background color of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"page_title_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--page_title_bg_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"page_title_border_color\";a:9:{s:5:\"label\";s:28:\"Page Title Bar Borders Color\";s:11:\"description\";s:314:\"Controls the border colors of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:23:\"page_title_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--page_title_border_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:4:\"none\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:23:\"page_title_border_color\";}}}}s:20:\"page_title_font_size\";a:9:{s:5:\"label\";s:32:\"Page Title Bar Heading Font Size\";s:11:\"description\";s:324:\"Controls the font size for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_font_size\";s:7:\"default\";s:4:\"54px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--page_title_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:22:\"page_title_line_height\";a:9:{s:5:\"label\";s:34:\"Page Title Bar Heading Line Height\";s:11:\"description\";s:326:\"Controls the line height for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"page_title_line_height\";s:7:\"default\";s:6:\"normal\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--page_title_line_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:16:\"page_title_color\";a:8:{s:5:\"label\";s:33:\"Page Title Bar Heading Font Color\";s:11:\"description\";s:324:\"Controls the text color of the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"page_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--page_title_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"page_title_subheader_font_size\";a:9:{s:5:\"label\";s:35:\"Page Title Bar Subheading Font Size\";s:11:\"description\";s:321:\"Controls the font size for the page titlebar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:30:\"page_title_subheader_font_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--page_title_subheader_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:26:\"page_title_subheader_color\";a:8:{s:5:\"label\";s:36:\"Page Title Bar Subheading Font Color\";s:11:\"description\";s:322:\"Controls the text color of the page title bar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"page_title_subheader_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--page_title_subheader_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"page_title_alignment\";a:9:{s:5:\"label\";s:29:\"Page Title Bar Text Alignment\";s:11:\"description\";s:430:\"Choose the title and subhead text alignment. Breadcrumbs / search field will be on opposite side for left / right alignment and below the title for center alignment.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_alignment\";s:7:\"default\";s:6:\"center\";s:6:\"hidden\";b:0;s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_page_title_alignment\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:29:\"page_title_bar_bg_image_title\";a:6:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"page_title_bar_bg_image_title\";s:4:\"icon\";b:1;s:6:\"hidden\";b:0;s:4:\"type\";s:4:\"info\";}s:13:\"page_title_bg\";a:9:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:380:\"Select an image for the page title bar background. If left empty, the page title bar background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:13:\"page_title_bg\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:15:\"--page_title_bg\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:20:\"page_title_bg_retina\";a:10:{s:5:\"label\";s:38:\"Retina Page Title Bar Background Image\";s:11:\"description\";s:404:\"Select an image for the retina version of the page title bar background. It should be exactly 2x the size of the page title bar background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"page_title_bg_retina\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:22:\"--page_title_bg_retina\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:20:\"var(--page_title_bg)\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:38:\"avada-has-pagetitlebar-retina-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"page_title_bg_full\";a:8:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:382:\"Turn on to have the page title bar background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:18:\"page_title_bg_full\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-pagetitle-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"page_title_bg_parallax\";a:8:{s:5:\"label\";s:25:\"Parallax Background Image\";s:11:\"description\";s:332:\"Turn on to use a parallax scrolling effect on the background image.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"page_title_bg_parallax\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-pagetitle-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_fading\";a:8:{s:5:\"label\";s:16:\"Fading Animation\";s:11:\"description\";s:316:\"Turn on to have the page title text fade on scroll.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaFadeVars\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"trigger\";a:1:{i:0;s:27:\"avadaTriggerPageTitleFading\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"breadcrumb_mobile\";a:7:{s:5:\"label\";s:29:\"Breadcrumbs on Mobile Devices\";s:11:\"description\";s:314:\"Turn on to display breadcrumbs on mobile devices.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"breadcrumb_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-breadcrumb-mobile-hidden\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"breacrumb_prefix\";a:7:{s:5:\"label\";s:18:\"Breadcrumbs Prefix\";s:11:\"description\";s:310:\"Controls the text before the breadcrumb menu.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"breacrumb_prefix\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:40:\"page_title_bar_contents_breacrumb_prefix\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:20:\"breadcrumb_separator\";a:7:{s:5:\"label\";s:21:\"Breadcrumbs Separator\";s:11:\"description\";s:320:\"Controls the type of separator between each breadcrumb.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"breadcrumb_separator\";s:7:\"default\";s:1:\"/\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breadcrumb_separator\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:21:\"breadcrumbs_font_size\";a:8:{s:5:\"label\";s:21:\"Breadcrumbs Font Size\";s:11:\"description\";s:313:\"Controls the font size for the breadcrumbs text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:21:\"breadcrumbs_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--breadcrumbs_font_size\";s:7:\"element\";s:43:\".fusion-page-title-bar, .fusion-breadcrumbs\";}}}s:22:\"breadcrumbs_text_color\";a:7:{s:5:\"label\";s:22:\"Breadcrumbs Text Color\";s:11:\"description\";s:313:\"Controls the text color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"breadcrumbs_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--breadcrumbs_text_color\";s:7:\"element\";s:43:\".fusion-page-title-bar, .fusion-breadcrumbs\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"breadcrumbs_text_hover_color\";a:7:{s:5:\"label\";s:28:\"Breadcrumbs Text Hover Color\";s:11:\"description\";s:319:\"Controls the text hover color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:28:\"breadcrumbs_text_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--breadcrumbs_text_hover_color\";s:7:\"element\";s:43:\".fusion-page-title-bar, .fusion-breadcrumbs\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"breadcrumb_show_categories\";a:7:{s:5:\"label\";s:36:\"Post Categories/Terms on Breadcrumbs\";s:11:\"description\";s:334:\"Turn on to display the post categories/terms in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"breadcrumb_show_categories\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:50:\"page_title_bar_contents_breadcrumb_show_categories\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:33:\"breadcrumb_show_post_type_archive\";a:7:{s:5:\"label\";s:33:\"Post Type Archives on Breadcrumbs\";s:11:\"description\";s:327:\"Turn on to display post type archives in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:33:\"breadcrumb_show_post_type_archive\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:20:\"breadcrumb_show_leaf\";a:7:{s:5:\"label\";s:24:\"Post Name on Breadcrumbs\";s:11:\"description\";s:322:\"Turn on to display the post name in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"breadcrumb_show_leaf\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breadcrumb_show_leaf\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:25:\"slidingbar_widgets_notice\";a:4:{s:2:\"id\";s:25:\"slidingbar_widgets_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:345:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant sliding bar setup, we recommend using the Avada Off Canvas Builder. To create an Off Canvas, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-off-canvas\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:18:\"slidingbar_widgets\";a:8:{s:5:\"label\";s:23:\"Sliding Bar on Desktops\";s:11:\"description\";s:47:\"Turn on to display the sliding bar on desktops.\";s:2:\"id\";s:18:\"slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:24:\".fusion-sliding-bar-area\";}s:9:\"shortcuts\";a:2:{i:0;a:2:{s:10:\"aria_label\";s:16:\"Edit Sliding Bar\";s:4:\"icon\";s:18:\"fusiona-arrow-down\";}i:1;a:2:{s:10:\"aria_label\";s:24:\"Edit Sliding Bar Widgets\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";}}}s:15:\"partial_refresh\";a:2:{s:38:\"sliding_bar_content_slidingbar_widgets\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:33:\"header_content_slidingbar_widgets\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-slidingbar-widgets\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"mobile_slidingbar_widgets\";a:7:{s:5:\"label\";s:21:\"Sliding Bar On Mobile\";s:11:\"description\";s:258:\"Turn on to display the sliding bar on mobiles. <strong>IMPORTANT:</strong> Due to mobile screen sizes and overlapping issues, when this option is enabled the triangle toggle style in the top right position will be forced for square and circle desktop styles.\";s:2:\"id\";s:25:\"mobile_slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"no-mobile-slidingbar\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"slidingbar_open_on_load\";a:7:{s:5:\"label\";s:29:\"Sliding Bar Open On Page Load\";s:11:\"description\";s:57:\"Turn on to have the sliding bar open when the page loads.\";s:2:\"id\";s:23:\"slidingbar_open_on_load\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"slidingbar_position\";a:9:{s:5:\"label\";s:20:\"Sliding Bar Position\";s:11:\"description\";s:93:\"Controls the position of the sliding bar to be in the top, right, bottom or left of the site.\";s:2:\"id\";s:19:\"slidingbar_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:39:\"sliding_bar_content_slidingbar_position\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"avada-has-slidingbar-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-slidingbar-position-top\";i:1;s:35:\"avada-has-slidingbar-position-right\";i:2;s:36:\"avada-has-slidingbar-position-bottom\";i:3;s:34:\"avada-has-slidingbar-position-left\";}}}}s:16:\"slidingbar_width\";a:8:{s:5:\"label\";s:17:\"Sliding Bar Width\";s:11:\"description\";s:60:\"Controls the width of the sliding bar on left/right layouts.\";s:2:\"id\";s:16:\"slidingbar_width\";s:7:\"default\";s:5:\"300px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:18:\"--slidingbar_width\";}i:1;a:2:{s:4:\"name\";s:32:\"--slidingbar_width-percent_to_vw\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-slidingbar-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"slidingbar_sticky\";a:7:{s:5:\"label\";s:18:\"Sticky Sliding Bar\";s:11:\"description\";s:39:\"Turn on to enable a sticky sliding bar.\";s:2:\"id\";s:17:\"slidingbar_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:5:\"right\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"left\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"slidingbar_widgets_columns\";a:8:{s:5:\"label\";s:29:\"Number of Sliding Bar Columns\";s:11:\"description\";s:50:\"Controls the number of columns in the sliding bar.\";s:2:\"id\";s:26:\"slidingbar_widgets_columns\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:46:\"sliding_bar_content_slidingbar_widgets_columns\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:27:\"slidingbar_column_alignment\";a:8:{s:5:\"label\";s:28:\"Sliding Bar Column Alignment\";s:11:\"description\";s:132:\"Allows your sliding bar columns to be stacked (one above the other) or floated (side by side) when using the left or right position.\";s:2:\"id\";s:27:\"slidingbar_column_alignment\";s:7:\"default\";s:7:\"stacked\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"stacked\";s:7:\"Stacked\";s:7:\"floated\";s:7:\"Floated\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:15:\"partial_refresh\";a:1:{s:47:\"sliding_bar_content_slidingbar_column_alignment\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:26:\"slidingbar_content_padding\";a:8:{s:5:\"label\";s:27:\"Sliding Bar Content Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the sliding bar area.\";s:2:\"id\";s:26:\"slidingbar_content_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:32:\"--slidingbar_content_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:35:\"--slidingbar_content_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:33:\"--slidingbar_content_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:34:\"--slidingbar_content_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:24:\"slidingbar_content_align\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Content Alignment\";s:11:\"description\";s:39:\"Controls sliding bar content alignment.\";s:2:\"id\";s:24:\"slidingbar_content_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_content_align\";s:7:\"element\";s:19:\".fusion-sliding-bar\";}}}s:25:\"sliding_bar_styling_title\";a:5:{s:5:\"label\";s:19:\"Sliding Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"sliding_bar_styling_title\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:23:\"slidingbar_toggle_style\";a:10:{s:5:\"label\";s:24:\"Sliding Bar Toggle Style\";s:11:\"description\";s:50:\"Controls the appearance of the sliding bar toggle.\";s:2:\"id\";s:23:\"slidingbar_toggle_style\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:4:{s:8:\"triangle\";s:8:\"Triangle\";s:9:\"rectangle\";s:9:\"Rectangle\";s:6:\"circle\";s:6:\"Circle\";s:4:\"menu\";s:14:\"Main Menu Icon\";}s:5:\"icons\";a:4:{s:8:\"triangle\";s:210:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><g transform=\"translate(-54.320053,-196.29156)\"><path d=\"m 54.320053,196.29156 h 24 v 24 z\" style=\"stroke-width:0\" /></g></svg>\";s:9:\"rectangle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 0h-24v24h24v-24z\"/></svg>\";s:6:\"circle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><circle cx=\"12\" cy=\"12\" r=\"12\"/></svg>\";s:4:\"menu\";s:176:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z\"/></svg><span class=\"screen-reader-text\">\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:43:\"sliding_bar_content_slidingbar_toggle_style\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:49:\"slidingbar_toggle_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:49:\"slidingbar_toggle_style_header_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-slidingbar-toggle-style--$\";s:12:\"remove_attrs\";a:4:{i:0;s:38:\"avada-slidingbar-toggle-style-triangle\";i:1;s:39:\"avada-slidingbar-toggle-style-rectangle\";i:2;s:36:\"avada-slidingbar-toggle-style-circle\";i:3;s:34:\"avada-slidingbar-toggle-style-menu\";}}}}s:19:\"slidingbar_bg_color\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Background Color\";s:11:\"description\";s:49:\"Controls the background color of the sliding bar.\";s:2:\"id\";s:19:\"slidingbar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--slidingbar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"slidingbar_divider_color\";a:7:{s:5:\"label\";s:30:\"Sliding Bar Item Divider Color\";s:11:\"description\";s:46:\"Controls the divider color in the sliding bar.\";s:2:\"id\";s:24:\"slidingbar_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"slidingbar_toggle_icon_color\";a:7:{s:5:\"label\";s:35:\"Sliding Bar Toggle/Close Icon Color\";s:11:\"description\";s:118:\"Controls the color of the sliding bar toggle icon and of the close icon when using the main menu icon as toggle style.\";s:2:\"id\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--slidingbar_toggle_icon_color\";s:7:\"element\";s:25:\".fusion-sb-toggle-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"slidingbar_font_size\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the sliding bar heading text.\";s:2:\"id\";s:20:\"slidingbar_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--slidingbar_font_size\";s:7:\"element\";s:11:\"#slidingbar\";}}}s:25:\"slidingbar_headings_color\";a:7:{s:5:\"label\";s:26:\"Sliding Bar Headings Color\";s:11:\"description\";s:56:\"Controls the text color of the sliding bar heading font.\";s:2:\"id\";s:25:\"slidingbar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--slidingbar_headings_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_text_color\";a:7:{s:5:\"label\";s:22:\"Sliding Bar Font Color\";s:11:\"description\";s:48:\"Controls the text color of the sliding bar font.\";s:2:\"id\";s:21:\"slidingbar_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--slidingbar_text_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_link_color\";a:7:{s:5:\"label\";s:22:\"Sliding Bar Link Color\";s:11:\"description\";s:53:\"Controls the text color of the sliding bar link font.\";s:2:\"id\";s:21:\"slidingbar_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 14%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--slidingbar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"slidingbar_link_color_hover\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Link Hover Color\";s:11:\"description\";s:59:\"Controls the text hover color of the sliding bar link font.\";s:2:\"id\";s:27:\"slidingbar_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--slidingbar_link_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"slidingbar_border\";a:7:{s:5:\"label\";s:21:\"Border on Sliding Bar\";s:11:\"description\";s:82:\"Turn on to display a border line on the sliding bar which makes it stand out more.\";s:2:\"id\";s:17:\"slidingbar_border\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:39:\"footer_options_template_override_notice\";a:5:{s:2:\"id\";s:39:\"footer_options_template_override_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Footer override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";s:6:\"hidden\";b:0;}s:38:\"footer_options_template_content_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"footer_widgets\";a:7:{s:5:\"label\";s:14:\"Footer Widgets\";s:11:\"description\";s:34:\"Turn on to display footer widgets.\";s:2:\"id\";s:14:\"footer_widgets\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"footer_content_footer_widgets\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:14:\".fusion-footer\";}s:9:\"shortcuts\";a:2:{i:0;a:4:{s:10:\"aria_label\";s:11:\"Edit Footer\";s:4:\"icon\";s:14:\"fusiona-footer\";s:11:\"open_parent\";b:1;s:35:\"link_to_template_if_override_active\";s:6:\"footer\";}i:1;a:4:{s:10:\"aria_label\";s:19:\"Edit Footer Widgets\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:6:\"footer\";}}}}s:22:\"footer_widgets_columns\";a:8:{s:5:\"label\";s:24:\"Number of Footer Columns\";s:11:\"description\";s:310:\"Controls the number of columns in the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_columns\";s:7:\"default\";s:1:\"4\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_widgets_columns\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_widgets_center_content\";a:7:{s:5:\"label\";s:29:\"Center Footer Widgets Content\";s:11:\"description\";s:309:\"Turn on to center the footer widget content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:29:\"footer_widgets_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:45:\".fusion-footer-widget-area.fusion-widget-area\";s:9:\"className\";s:32:\"fusion-footer-widget-area-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"footer_special_effects\";a:8:{s:5:\"label\";s:22:\"Footer Special Effects\";s:11:\"description\";s:44:\"Select a special effect for the footer area.\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:5:\"radio\";s:7:\"choices\";a:5:{s:4:\"none\";s:4:\"None\";s:22:\"footer_parallax_effect\";a:2:{i:0;s:22:\"Footer Parallax Effect\";i:1;s:59:\"This enables a fixed footer with parallax scrolling effect.\";}s:23:\"footer_area_bg_parallax\";a:2:{i:0;s:25:\"Parallax Background Image\";i:1;s:125:\"This enables a parallax effect on the background image selected in &quot;Background Image For Footer Widget Area&quot; field.\";}s:13:\"footer_sticky\";a:2:{i:0;s:13:\"Sticky Footer\";i:1;s:317:\"This enables a sticky footer. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer. IMPORTANT: This will not work properly when using a Left or Right Side Header layout and the side header is larger than the viewport.\";}s:36:\"footer_sticky_with_parallax_bg_image\";a:2:{i:0;s:43:\"Sticky Footer and Parallax Background Image\";i:1;s:239:\"This enables a sticky footer together with a parallax effect on the background image. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer.\";}}s:6:\"output\";a:8:{i:0;a:4:{s:7:\"element\";s:4:\"html\";s:8:\"property\";s:6:\"height\";s:13:\"value_pattern\";s:4:\"100%\";s:7:\"exclude\";a:3:{i:0;s:4:\"none\";i:1;s:22:\"footer_parallax_effect\";i:2;s:23:\"footer_area_bg_parallax\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaSideHeaderVars\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionSideHeaderScroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:14:\".fusion-footer\";s:9:\"className\";s:22:\"fusion-footer-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"none\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-footer-fx-none\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-footer-fx-parallax-effect\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:5;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:23:\"footer_area_bg_parallax\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-footer-fx-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:6;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:13:\"footer_sticky\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-footer-fx-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:7;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:36:\"footer_sticky_with_parallax_bg_image\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-footer-sticky-with-parallax-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_special_effects\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:16:\"footer_copyright\";a:6:{s:5:\"label\";s:13:\"Copyright Bar\";s:11:\"description\";s:37:\"Turn on to display the copyright bar.\";s:2:\"id\";s:16:\"footer_copyright\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"footer_content_footer_copyright\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:31:\"footer_copyright_center_content\";a:7:{s:5:\"label\";s:24:\"Center Copyright Content\";s:11:\"description\";s:309:\"Turn on to center the copyright bar content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:31:\"footer_copyright_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:9:\"className\";s:30:\"fusion-footer-copyright-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"footer_text\";a:9:{s:5:\"label\";s:14:\"Copyright Text\";s:11:\"description\";s:340:\"Enter the text that displays in the copyright bar. HTML markup can be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:11:\"footer_text\";s:7:\"default\";s:217:\"Copyright 2012 - 2023 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://theme-fusion.com\">ThemeFusion</a> | All Rights Reserved | Powered by <a href=\"https://wordpress.org\">WordPress</a>\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:10:\"unfiltered\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:11:\"footer_text\";a:4:{s:8:\"selector\";s:24:\".fusion-copyright-notice\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:9:\"copyright\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:33:\"footer_options_template_bg_notice\";a:4:{s:2:\"id\";s:33:\"footer_options_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footerw_bg_image\";a:9:{s:5:\"label\";s:39:\"Background Image For Footer Widget Area\";s:11:\"description\";s:371:\"Select an image for the footer widget background. If left empty, the footer background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"footerw_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:18:\"--footerw_bg_image\";s:6:\"choice\";s:3:\"url\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-footer-widget-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"footerw_bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:374:\"Turn on to have the footer background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:15:\"footerw_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:22:\"--footerw_bg_full-size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:5:\"cover\";i:1;s:7:\"initial\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}i:1;a:3:{s:4:\"name\";s:26:\"--footerw_bg_full-position\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:13:\"center center\";i:1;s:21:\"var(--footerw_bg_pos)\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}}}s:17:\"footerw_bg_repeat\";a:8:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:307:\"Controls how the background image repeats.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"footerw_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footerw_bg_repeat\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}s:14:\"footerw_bg_pos\";a:8:{s:5:\"label\";s:19:\"Background Position\";s:11:\"description\";s:313:\"Controls how the background image is positioned.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:14:\"footerw_bg_pos\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:9:{s:8:\"top left\";s:8:\"top left\";s:10:\"top center\";s:10:\"top center\";s:9:\"top right\";s:9:\"top right\";s:11:\"center left\";s:11:\"center left\";s:13:\"center center\";s:13:\"center center\";s:12:\"center right\";s:12:\"center right\";s:11:\"bottom left\";s:11:\"bottom left\";s:13:\"bottom center\";s:13:\"bottom center\";s:12:\"bottom right\";s:12:\"bottom right\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--footerw_bg_pos\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}s:38:\"footer_options_template_styling_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footer_100_width\";a:8:{s:5:\"label\";s:17:\"100% Footer Width\";s:11:\"description\";s:379:\"Turn on to have the footer area display at 100% width according to the window size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:16:\"footer_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-has-100-footer\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"footer_area_padding\";a:9:{s:5:\"label\";s:14:\"Footer Padding\";s:11:\"description\";s:323:\"Controls the top/right/bottom/left padding for the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"footer_area_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"64px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_area_padding-top\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:28:\"--footer_area_padding-bottom\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:26:\"--footer_area_padding-left\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:27:\"--footer_area_padding-right\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:5:\"right\";}}}s:15:\"footer_bg_color\";a:7:{s:5:\"label\";s:23:\"Footer Background Color\";s:11:\"description\";s:309:\"Controls the background color of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:15:\"footer_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--footer_bg_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"footer_border_size\";a:8:{s:5:\"label\";s:18:\"Footer Border Size\";s:11:\"description\";s:308:\"Controls the size of the top footer border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:18:\"footer_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--footer_border_size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"footer_border_color\";a:7:{s:5:\"label\";s:19:\"Footer Border Color\";s:11:\"description\";s:306:\"Controls the border colors of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"footer_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--footer_border_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"footer_divider_line\";a:9:{s:5:\"label\";s:41:\"Footer Widgets Area Vertical Divider Line\";s:11:\"description\";s:350:\"Turn on to have the footer widget area display vertical divider line between columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"footer_divider_line\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line-flex\";s:7:\"element\";s:14:\".fusion-footer\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"flex\";i:1;s:5:\"block\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:19:\"footer_divider_line\";i:1;s:4:\"true\";}}}}}}s:15:\"partial_refresh\";a:1:{s:27:\"footer_divider_line_partial\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:24:\"footer_divider_line_size\";a:8:{s:5:\"label\";s:46:\"Footer Widgets Area Vertical Divider Line Size\";s:11:\"description\";s:347:\"Controls the size of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"footer_divider_line_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line_size\";s:7:\"element\";s:14:\".fusion-footer\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:25:\"footer_divider_line_style\";a:8:{s:5:\"label\";s:47:\"Footer Widgets Area Vertical Divider Line Style\";s:11:\"description\";s:348:\"Controls the style of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:25:\"footer_divider_line_style\";s:7:\"default\";s:5:\"solid\";s:7:\"choices\";a:7:{s:4:\"none\";s:4:\"None\";s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"double\";s:6:\"Double\";s:6:\"groove\";s:6:\"Groove\";s:5:\"ridge\";s:5:\"Ridge\";}s:4:\"type\";s:6:\"select\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--footer_divider_line_style\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:20:\"footer_divider_color\";a:7:{s:5:\"label\";s:27:\"Footer Widget Divider Color\";s:11:\"description\";s:371:\"Controls the divider color in the footer widgets and also the vertical divider lines between widget areas.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"footer_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--footer_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_widgets_padding\";a:9:{s:5:\"label\";s:27:\"Footer Widgets Area Padding\";s:11:\"description\";s:325:\"Controls the right/left padding for the footer widget areas.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_padding\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--footer_widgets_padding\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:17:\"copyright_padding\";a:8:{s:5:\"label\";s:17:\"Copyright Padding\";s:11:\"description\";s:320:\"Controls the top/bottom padding for the copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"copyright_padding\";s:7:\"default\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_padding-top\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--copyright_padding-bottom\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:6:\"bottom\";}}}s:18:\"copyright_bg_color\";a:7:{s:5:\"label\";s:26:\"Copyright Background Color\";s:11:\"description\";s:324:\"Controls the background color of the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:18:\"copyright_bg_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--copyright_bg_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"copyright_border_size\";a:8:{s:5:\"label\";s:21:\"Copyright Border Size\";s:11:\"description\";s:311:\"Controls the size of the top copyright border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:21:\"copyright_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_border_size\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"copyright_border_color\";a:7:{s:5:\"label\";s:22:\"Copyright Border Color\";s:11:\"description\";s:322:\"Controls the border colors for the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:22:\"copyright_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--copyright_border_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_typography_info\";a:4:{s:5:\"label\";s:17:\"Footer Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"footer_typography_info\";s:4:\"type\";s:4:\"info\";}s:26:\"footer_headings_typography\";a:10:{s:2:\"id\";s:26:\"footer_headings_typography\";s:5:\"label\";s:26:\"Footer Headings Typography\";s:11:\"description\";s:327:\"These settings control the typography for the footer headings.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:6:\"global\";b:1;s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography2-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography2-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography2-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography2-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color1)\";s:14:\"text-transform\";s:4:\"none\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:26:\"footer_headings_typography\";}}i:1;a:2:{s:4:\"name\";s:38:\"--footer_headings_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:40:\"--footer_headings_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:2:{s:4:\"name\";s:39:\"--footer_headings_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:3:{s:4:\"name\";s:43:\"--footer_headings_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:6;a:2:{s:4:\"name\";s:34:\"--footer_headings_typography-color\";s:6:\"choice\";s:5:\"color\";}i:7;a:2:{s:4:\"name\";s:43:\"--footer_headings_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:17:\"footer_text_color\";a:7:{s:5:\"label\";s:17:\"Footer Font Color\";s:11:\"description\";s:308:\"Controls the text color of the footer font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"footer_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footer_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"footer_link_color\";a:7:{s:5:\"label\";s:17:\"Footer Link Color\";s:11:\"description\";s:313:\"Controls the text color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"footer_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--footer_link_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"footer_link_color_hover\";a:7:{s:5:\"label\";s:23:\"Footer Link Hover Color\";s:11:\"description\";s:319:\"Controls the text hover color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:23:\"footer_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_link_color_hover\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_text_color\";a:7:{s:5:\"label\";s:20:\"Copyright Text Color\";s:11:\"description\";s:53:\"Controls the text color of the footer copyright area.\";s:2:\"id\";s:20:\"copyright_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 60%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_text_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_link_color\";a:7:{s:5:\"label\";s:20:\"Copyright Link Color\";s:11:\"description\";s:53:\"Controls the link color of the footer copyright area.\";s:2:\"id\";s:20:\"copyright_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_link_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"copyright_link_color_hover\";a:7:{s:5:\"label\";s:26:\"Copyright Link Hover Color\";s:11:\"description\";s:59:\"Controls the link hover color of the footer copyright area.\";s:2:\"id\";s:26:\"copyright_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--copyright_link_color_hover\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"copyright_font_size\";a:8:{s:5:\"label\";s:19:\"Copyright Font Size\";s:11:\"description\";s:311:\"Controls the font size for the copyright text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"copyright_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--copyright_font_size\";s:7:\"element\";s:24:\".fusion-copyright-notice\";}}}s:24:\"responsive_sidebar_order\";a:8:{s:2:\"id\";s:24:\"responsive_sidebar_order\";s:5:\"label\";s:24:\"Sidebar Responsive Order\";s:11:\"description\";s:101:\"Choose the order of sidebars and main content area on mobile layouts through drag &amp; drop sorting.\";s:4:\"type\";s:8:\"sortable\";s:7:\"choices\";a:3:{s:7:\"content\";s:7:\"Content\";s:7:\"sidebar\";s:9:\"Sidebar 1\";s:9:\"sidebar-2\";s:9:\"Sidebar 2\";}s:7:\"default\";s:25:\"content,sidebar,sidebar-2\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:14:\"sidebar_sticky\";a:7:{s:5:\"label\";s:15:\"Sticky Sidebars\";s:11:\"description\";s:266:\"Select the sidebar(s) that should remain sticky when scrolling the page. If the sidebar content is taller than the screen, it acts like a normal sidebar until the bottom of the sidebar is within the viewport, which will then remain fixed in place as you scroll down.\";s:2:\"id\";s:14:\"sidebar_sticky\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:11:\"sidebar_one\";s:9:\"Sidebar 1\";s:11:\"sidebar_two\";s:9:\"Sidebar 2\";s:4:\"both\";s:4:\"Both\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"sidebar_padding\";a:7:{s:5:\"label\";s:15:\"Sidebar Padding\";s:11:\"description\";s:29:\"Controls the sidebar padding.\";s:2:\"id\";s:15:\"sidebar_padding\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--sidebar_padding\";s:7:\"element\";s:8:\".sidebar\";}i:1;a:3:{s:4:\"name\";s:31:\"--sidebar_padding-percent_to_vw\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}}s:16:\"sidebar_bg_color\";a:6:{s:5:\"label\";s:24:\"Sidebar Background Color\";s:11:\"description\";s:45:\"Controls the background color of the sidebar.\";s:2:\"id\";s:16:\"sidebar_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--sidebar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"sidebar_widget_bg_color\";a:6:{s:5:\"label\";s:39:\"Sidebar Widget Heading Background Color\";s:11:\"description\";s:108:\"Controls the background color of the widget title box. If left transparent the widget title will be unboxed.\";s:2:\"id\";s:23:\"sidebar_widget_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--sidebar_widget_bg_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:3:{s:4:\"name\";s:40:\"--sidebar_widget_bg_color-opaque-padding\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:8:\"9px 15px\";}}}}}s:15:\"sidew_font_size\";a:6:{s:5:\"label\";s:32:\"Sidebar Widget Heading Font Size\";s:11:\"description\";s:50:\"Controls the font size of the widget heading text.\";s:2:\"id\";s:15:\"sidew_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--sidew_font_size\";s:7:\"element\";s:8:\".sidebar\";}}}s:21:\"sidebar_heading_color\";a:6:{s:5:\"label\";s:29:\"Sidebar Widget Headings Color\";s:11:\"description\";s:54:\"Controls the color of the sidebar widget heading text.\";s:2:\"id\";s:21:\"sidebar_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--sidebar_heading_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:13:\"pages_sidebar\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 1\";s:11:\"description\";s:48:\"Select sidebar 1 that will display on all pages.\";s:2:\"id\";s:13:\"pages_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"pages_sidebar_2\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 2\";s:11:\"description\";s:101:\"Select sidebar 2 that will display on all pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"pages_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:20:\"pages_global_sidebar\";a:6:{s:5:\"label\";s:31:\"Force Global Sidebars For Pages\";s:11:\"description\";s:98:\"Turn on if you want to use the same sidebars on all pages. This option overrides the page options.\";s:2:\"id\";s:20:\"pages_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"default_sidebar_pos\";a:7:{s:5:\"label\";s:28:\"Global Page Sidebar Position\";s:11:\"description\";s:113:\"Controls the position of sidebar 1 for all pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:19:\"default_sidebar_pos\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:17:\"portfolio_sidebar\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 1\";s:11:\"description\";s:58:\"Select sidebar 1 that will display on all portfolio posts.\";s:2:\"id\";s:17:\"portfolio_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"portfolio_sidebar_2\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 2\";s:11:\"description\";s:111:\"Select sidebar 2 that will display on all portfolio posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:19:\"portfolio_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:24:\"portfolio_global_sidebar\";a:6:{s:5:\"label\";s:41:\"Force Global Sidebars For Portfolio Posts\";s:11:\"description\";s:118:\"Turn on if you want to use the same sidebars on all portfolio posts. This option overrides the portfolio post options.\";s:2:\"id\";s:24:\"portfolio_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:26:\"portfolio_sidebar_position\";a:7:{s:5:\"label\";s:33:\"Global Portfolio Sidebar Position\";s:11:\"description\";s:141:\"Controls the position of sidebar 1 for all portfolio posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:26:\"portfolio_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:37:\"portfolio_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:325:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for portfolio archive pages is controlled by the option on the <a href=\"https://test-site.wlvrotary.org/wp-admin/themes.php?page=avada_options&amp;lang=en#portfolio_sidebar\" target=\"_blank\">Portfolio Posts sidebar</a> tab.</div>\";s:2:\"id\";s:37:\"portfolio_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:25:\"portfolio_archive_sidebar\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 1\";s:11:\"description\";s:66:\"Select sidebar 1 that will display on the portfolio archive pages.\";s:2:\"id\";s:25:\"portfolio_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:27:\"portfolio_archive_sidebar_2\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 2\";s:11:\"description\";s:119:\"Select sidebar 2 that will display on the portfolio archive pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:27:\"portfolio_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:13:\"posts_sidebar\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 1\";s:11:\"description\";s:53:\"Select sidebar 1 that will display on all blog posts.\";s:2:\"id\";s:13:\"posts_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:27:\"#sidebar.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:6:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";s:35:\"link_to_template_if_override_active\";s:7:\"content\";s:13:\"override_icon\";s:15:\"fusiona-content\";}i:1;a:5:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";s:28:\"disable_on_template_override\";s:7:\"content\";}i:2;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:7:\"content\";}}}}s:15:\"posts_sidebar_2\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 2\";s:11:\"description\";s:106:\"Select sidebar 2 that will display on all blog posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"posts_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:29:\"#sidebar-2.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";}i:1;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";}i:2;a:2:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:4:\"link\";s:52:\"https://test-site.wlvrotary.org/wp-admin/widgets.php\";}}}}s:20:\"posts_global_sidebar\";a:5:{s:5:\"label\";s:36:\"Force Global Sidebars For Blog Posts\";s:11:\"description\";s:108:\"Turn on if you want to use the same sidebars on all blog posts. This option overrides the blog post options.\";s:2:\"id\";s:20:\"posts_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"blog_sidebar_position\";a:6:{s:5:\"label\";s:28:\"Global Blog Sidebar Position\";s:11:\"description\";s:136:\"Controls the position of sidebar 1 for all blog posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:21:\"blog_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}}s:32:\"blog_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:311:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for blog archive pages is controlled by the option on the <a href=\"https://test-site.wlvrotary.org/wp-admin/themes.php?page=avada_options&amp;lang=en#posts_sidebar\" target=\"_blank\">Blog Posts sidebar</a> tab.</div>\";s:2:\"id\";s:32:\"blog_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:20:\"blog_archive_sidebar\";a:7:{s:5:\"label\";s:22:\"Blog Archive Sidebar 1\";s:11:\"description\";s:61:\"Select sidebar 1 that will display on the blog archive pages.\";s:2:\"id\";s:20:\"blog_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:22:\"blog_archive_sidebar_2\";a:7:{s:5:\"label\";s:22:\"Blog Archive Sidebar 2\";s:11:\"description\";s:114:\"Select sidebar 2 that will display on the blog archive pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:22:\"blog_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:14:\"search_sidebar\";a:7:{s:5:\"label\";s:21:\"Search Page Sidebar 1\";s:11:\"description\";s:62:\"Select sidebar 1 that will display on the search results page.\";s:2:\"id\";s:14:\"search_sidebar\";s:7:\"default\";s:12:\"Blog Sidebar\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:16:\"search_sidebar_2\";a:7:{s:5:\"label\";s:21:\"Search Page Sidebar 2\";s:11:\"description\";s:115:\"Select sidebar 2 that will display on the search results page. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:16:\"search_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 1\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 2\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 3\";s:20:\"Footer Widget Area 4\";s:20:\"Footer Widget Area 4\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 1\";s:25:\"Sliding Bar Widget Area 2\";s:25:\"Sliding Bar Widget Area 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:23:\"search_sidebar_position\";a:7:{s:5:\"label\";s:23:\"Search Sidebar Position\";s:11:\"description\";s:127:\"Controls the position of sidebar 1 for the search results page. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:23:\"search_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:4:\"Left\";s:5:\"Right\";s:5:\"Right\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:8:\"bg_image\";a:8:{s:5:\"label\";s:25:\"Background Image For Page\";s:11:\"description\";s:50:\"Select an image to use for a full page background.\";s:2:\"id\";s:8:\"bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:10:\"--bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:23:\"avada-html-has-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:7:\"bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:107:\"Turn on to have the page background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:7:\"bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"avada-has-bg-image-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"bg_repeat\";a:8:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:9:\"bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:11:\"--bg_repeat\";}}}s:8:\"bg_color\";a:6:{s:5:\"label\";s:25:\"Background Color For Page\";s:11:\"description\";s:167:\"Controls the background color for the page. When the color value is set to anything below 100% opacity, the color will overlay the background image if one is uploaded.\";s:2:\"id\";s:8:\"bg_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:10:\"--bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:18:\"--bg-color-overlay\";s:8:\"callback\";a:2:{i:0;s:22:\"return_color_if_opaque\";i:1;a:2:{s:11:\"transparent\";s:7:\"overlay\";s:6:\"opaque\";s:6:\"normal\";}}}}}s:17:\"bg_pattern_option\";a:6:{s:5:\"label\";s:18:\"Background Pattern\";s:11:\"description\";s:52:\"Turn on to display a pattern in the page background.\";s:2:\"id\";s:17:\"bg_pattern_option\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:33:\"avada-has-page-background-pattern\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"bg_pattern\";a:7:{s:5:\"label\";s:27:\"Select a Background Pattern\";s:2:\"id\";s:10:\"bg_pattern\";s:7:\"default\";s:8:\"pattern1\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:22:{s:8:\"pattern1\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:91:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:92:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/pattern22.png\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"bg_pattern_option\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:12:\"--bg_pattern\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:91:\"url(\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/patterns/$.png\")\";i:1;s:0:\"\";}}}}}s:16:\"content_bg_color\";a:7:{s:5:\"label\";s:29:\"Main Content Background Color\";s:11:\"description\";s:55:\"Controls the background color of the main content area.\";s:2:\"id\";s:16:\"content_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--content_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:27:\"avada-content-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"content_bg_image\";a:7:{s:5:\"label\";s:38:\"Background Image For Main Content Area\";s:11:\"description\";s:60:\"Select an image to use for the main content area background.\";s:2:\"id\";s:16:\"content_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--content_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:15:\"content_bg_full\";a:7:{s:5:\"label\";s:21:\"100% Background Image\";s:11:\"description\";s:115:\"Turn on to have the main content background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:15:\"content_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:5:\"#main\";s:9:\"className\";s:7:\"full-bg\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"content_bg_repeat\";a:8:{s:5:\"label\";s:17:\"Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:19:\"Repeat Horizontally\";s:8:\"repeat-y\";s:17:\"Repeat Vertically\";s:9:\"no-repeat\";s:9:\"No Repeat\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--content_bg_repeat\";}}}s:15:\"typography_sets\";a:6:{s:5:\"label\";s:15:\"Typography Sets\";s:11:\"description\";s:520:\"Set your global typography sets. The sets defined here can be used from other global options, and element options. Each of the options within these sets can be individually overridden in options using the sets. <strong>IMPORTANT NOTE:</strong> If a global set that is used by other options gets deleted, these corresponding options will display the default font. Typography sets are internally stored with a fixed counter. Thus, adding a new set after deleting an old one, will set the same internal name to the new set.\";s:2:\"id\";s:15:\"typography_sets\";s:7:\"default\";a:5:{s:11:\"typography1\";a:11:{s:5:\"label\";s:8:\"Headings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography2\";a:11:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography3\";a:11:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography4\";a:11:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography5\";a:11:{s:5:\"label\";s:5:\"Small\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}}s:4:\"type\";s:15:\"typography-sets\";s:9:\"transport\";s:11:\"postMessage\";}s:35:\"body_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains general typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:35:\"body_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:15:\"body_typography\";a:8:{s:2:\"id\";s:15:\"body_typography\";s:5:\"label\";s:15:\"Body Typography\";s:11:\"description\";s:56:\"These settings control the typography for all body text.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:29:\"--body_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:15:\"body_typography\";}}i:1;a:2:{s:4:\"name\";s:27:\"--body_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:16:\"--base-font-size\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}i:3;a:3:{s:4:\"name\";s:29:\"--body_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:28:\"--body_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:29:\"--body_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:6;a:3:{s:4:\"name\";s:32:\"--body_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:7;a:3:{s:4:\"name\";s:23:\"--body_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:10:\"link_color\";a:6:{s:5:\"label\";s:10:\"Link Color\";s:11:\"description\";s:37:\"Controls the color of all text links.\";s:2:\"id\";s:10:\"link_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:12:\"--link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:15:\"--link_color-8a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.8\";}}}}s:16:\"link_hover_color\";a:6:{s:5:\"label\";s:16:\"Link Hover Color\";s:11:\"description\";s:53:\"Controls the link hover color throughout the website.\";s:2:\"id\";s:16:\"link_hover_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:6:{i:0;a:2:{s:4:\"name\";s:18:\"--link_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:22:\"--link_hover_color-85a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.85\";}}i:2;a:2:{s:4:\"name\";s:21:\"--link_hover_color-7a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.7\";}}i:3;a:2:{s:4:\"name\";s:21:\"--link_hover_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}}i:4;a:2:{s:4:\"name\";s:22:\"--link_hover_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}}i:5;a:2:{s:4:\"name\";s:21:\"--link_hover_color-2a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.2\";}}}}s:15:\"link_decoration\";a:6:{s:5:\"label\";s:27:\"Enable Link Text Decoration\";s:11:\"description\";s:51:\"Turn on to enable text decoration on general links.\";s:2:\"id\";s:15:\"link_decoration\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:25:\"link_decoration_exclusion\";a:9:{s:5:\"label\";s:37:\"Exclude Elements From Link Decoration\";s:11:\"description\";s:66:\"Choose which elements should be excluded from the link decoration.\";s:2:\"id\";s:25:\"link_decoration_exclusion\";s:7:\"default\";a:4:{i:0;s:7:\"buttons\";i:1;s:5:\"menus\";i:2;s:4:\"tocs\";i:3;s:11:\"tabstoggles\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:11:\"breadcrumbs\";s:11:\"Breadcrumbs\";s:7:\"buttons\";s:7:\"Buttons\";s:8:\"headings\";s:8:\"Headings\";s:5:\"menus\";s:5:\"Menus\";s:4:\"tocs\";s:12:\"TOC Elements\";s:11:\"tabstoggles\";s:18:\"Tabs &amp; Toggles\";}s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}s:20:\"link_decoration_line\";a:9:{s:5:\"label\";s:25:\"Link Text Decoration Line\";s:11:\"description\";s:55:\"Controls the text decoration line of all general links.\";s:2:\"id\";s:20:\"link_decoration_line\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:4:\"none\";s:8:\"No Style\";s:8:\"overline\";s:8:\"Overline\";s:9:\"underline\";s:9:\"Underline\";s:12:\"line-through\";s:12:\"Line Through\";s:18:\"overline underline\";s:24:\"Overline &amp; Underline\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--awb-link_decoration_line\";}}}s:21:\"link_decoration_style\";a:9:{s:5:\"label\";s:26:\"Link Text Decoration Style\";s:11:\"description\";s:56:\"Controls the text decoration style of all general links.\";s:2:\"id\";s:21:\"link_decoration_style\";s:7:\"default\";s:5:\"solid\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:5:\"solid\";s:5:\"Solid\";s:6:\"double\";s:6:\"Double\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"dashed\";s:6:\"Dashed\";s:4:\"wavy\";s:4:\"Wavy\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:27:\"--awb-link_decoration_style\";}}}s:25:\"link_decoration_thickness\";a:8:{s:5:\"label\";s:30:\"Link Text Decoration Thickness\";s:11:\"description\";s:103:\"Controls the text decoration line thickness of all general links. Can be set in px, em or rem. Ex: 2px.\";s:2:\"id\";s:25:\"link_decoration_thickness\";s:7:\"default\";s:3:\"1px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:2:\"em\";i:2;s:3:\"rem\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:31:\"--awb-link_decoration_thickness\";}}}s:26:\"link_decoration_line_hover\";a:9:{s:5:\"label\";s:31:\"Link Hover Text Decoration Line\";s:11:\"description\";s:61:\"Controls the text hover decoration line of all general links.\";s:2:\"id\";s:26:\"link_decoration_line_hover\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:4:\"none\";s:8:\"No Style\";s:8:\"overline\";s:8:\"Overline\";s:9:\"underline\";s:9:\"Underline\";s:12:\"line-through\";s:12:\"Line Through\";s:18:\"overline underline\";s:24:\"Overline &amp; Underline\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:32:\"--awb-link_decoration_line_hover\";}}}s:27:\"link_decoration_style_hover\";a:9:{s:5:\"label\";s:32:\"Link Hover Text Decoration Style\";s:11:\"description\";s:62:\"Controls the text hover decoration style of all general links.\";s:2:\"id\";s:27:\"link_decoration_style_hover\";s:7:\"default\";s:5:\"solid\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:5:\"solid\";s:5:\"Solid\";s:6:\"double\";s:6:\"Double\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"dashed\";s:6:\"Dashed\";s:4:\"wavy\";s:4:\"Wavy\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:33:\"--awb-link_decoration_style_hover\";}}}s:31:\"link_decoration_thickness_hover\";a:8:{s:5:\"label\";s:36:\"Link Hover Text Decoration Thickness\";s:11:\"description\";s:109:\"Controls the text hover decoration line thickness of all general links. Can be set in px, em or rem. Ex: 2px.\";s:2:\"id\";s:31:\"link_decoration_thickness_hover\";s:7:\"default\";s:3:\"1px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:2:\"em\";i:2;s:3:\"rem\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"link_decoration\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:37:\"--awb-link_decoration_thickness_hover\";}}}s:38:\"headers_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains heading typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:38:\"headers_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"h1_typography\";a:9:{s:2:\"id\";s:13:\"h1_typography\";s:5:\"label\";s:22:\"H1 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H1 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"64px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h1_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h1_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h1_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h1_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h1_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h1_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h1_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h1_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h1_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h2_typography\";a:9:{s:2:\"id\";s:13:\"h2_typography\";s:5:\"label\";s:22:\"H2 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H2 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography1-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h2_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h2_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h2_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h2_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h2_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h2_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h2_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h2_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h2_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h3_typography\";a:9:{s:2:\"id\";s:13:\"h3_typography\";s:5:\"label\";s:22:\"H3 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H3 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"36px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h3_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h3_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h3_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h3_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h3_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h3_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h3_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h3_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h3_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h4_typography\";a:9:{s:2:\"id\";s:13:\"h4_typography\";s:5:\"label\";s:22:\"H4 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H4 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"24px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h4_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h4_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h4_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h4_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h4_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h4_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h4_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h4_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h4_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h5_typography\";a:9:{s:2:\"id\";s:13:\"h5_typography\";s:5:\"label\";s:22:\"H5 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H5 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h5_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h5_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h5_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h5_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h5_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h5_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h5_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h5_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h5_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h6_typography\";a:9:{s:2:\"id\";s:13:\"h6_typography\";s:5:\"label\";s:22:\"H6 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H6 headings.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:9:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"16px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h6_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h6_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h6_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h6_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h6_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h6_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:30:\"--h6_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:8;a:2:{s:4:\"name\";s:26:\"--h6_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:9;a:2:{s:4:\"name\";s:29:\"--h6_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:21:\"post_title_typography\";a:9:{s:2:\"id\";s:21:\"post_title_typography\";s:5:\"label\";s:21:\"Post Title Typography\";s:11:\"description\";s:207:\"These settings control the typography of all post titles including archive and single posts.<br /><strong>IMPORTANT:</strong> On archive pages and in blog elements the linked post titles will use link color.\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:21:\"post_title_typography\";}}i:1;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:35:\"--post_title_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:38:\"--post_title_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:34:\"--post_title_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:33:\"--post_title_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:29:\"--post_title_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:38:\"--post_title_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:29:\"post_titles_extras_typography\";a:9:{s:2:\"id\";s:29:\"post_titles_extras_typography\";s:5:\"label\";s:28:\"Post Title Extras Typography\";s:11:\"description\";s:163:\"These settings control the typography of single post title extras such as &quot;Comments&quot;, &quot;Related Posts or Projects&quot; and &quot;Author Titles&quot;\";s:4:\"type\";s:10:\"typography\";s:25:\"text_transform_no_inherit\";b:1;s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:29:\"post_titles_extras_typography\";}}i:1;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:43:\"--post_titles_extras_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:46:\"--post_titles_extras_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:42:\"--post_titles_extras_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:41:\"--post_titles_extras_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:37:\"--post_titles_extras_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:46:\"--post_titles_extras_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:17:\"custom_fonts_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:391:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please upload your custom fonts below. Once you upload a custom font, <strong>you will have to save your options and reload this page on your browser</strong>. After you reload the page you will be able to select your new fonts - they will be available at the top of the fonts-list in the typography controls.</div>\";s:2:\"id\";s:17:\"custom_fonts_info\";s:4:\"type\";s:6:\"custom\";}s:12:\"custom_fonts\";a:9:{s:5:\"label\";s:12:\"Custom Fonts\";s:11:\"description\";s:233:\"Upload a custom font to use throughout the site. All files are not necessary but are recommended for full browser support. You can upload as many custom fonts as you need. Click the &quot;Add&quot; button for additional upload boxes.\";s:2:\"id\";s:12:\"custom_fonts\";s:7:\"default\";a:0:{}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"name\";s:5:\"limit\";i:50;s:9:\"transport\";s:11:\"postMessage\";s:6:\"fields\";a:6:{s:4:\"name\";a:6:{s:5:\"label\";s:9:\"Font Name\";s:11:\"description\";s:46:\"This will be used in the font-family dropdown.\";s:2:\"id\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:22:\"avada-custom-font-name\";}s:5:\"woff2\";a:6:{s:5:\"label\";s:5:\"WOFF2\";s:2:\"id\";s:5:\"woff2\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:4:\"woff\";a:6:{s:5:\"label\";s:4:\"WOFF\";s:2:\"id\";s:4:\"woff\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"ttf\";a:6:{s:5:\"label\";s:3:\"TTF\";s:2:\"id\";s:3:\"ttf\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"eot\";a:6:{s:5:\"label\";s:3:\"EOT\";s:2:\"id\";s:3:\"eot\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"svg\";a:6:{s:5:\"label\";s:3:\"SVG\";s:2:\"id\";s:3:\"svg\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}}}s:14:\"adobe_fonts_id\";a:5:{s:5:\"label\";s:14:\"Adobe Fonts ID\";s:11:\"description\";s:99:\"Enter the Adobe Fonts (formerly TypeKit) Web Project ID. You will need to save and reload the page.\";s:2:\"id\";s:14:\"adobe_fonts_id\";s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}s:18:\"adobe_fonts_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:549:\"<div class=\"awb-adobe-fonts-info-wrapper\"><p>No Adobe Fonts detected.</p></div><div class=\"fusion-redux-important-notice\"><strong>NOTE:</strong> You can create a custom global font for each Adobe font, so when you want to change that font, you don\'t need to search for each element that used that font. Also note that when you change the project fonts, you need to refresh the Adobe Fonts cache.<br /><br />If you use a multilingual plugin, the value of the Adobe Fonts Id used for fonts is the one from &quot;All Languages&quot; options page.</div>\";s:2:\"id\";s:18:\"adobe_fonts_notice\";s:4:\"type\";s:6:\"custom\";}s:32:\"general_blog_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:354:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab only control the assigned blog page in \"Settings > Reading\", blog archives or the blog single post page, not the blog element. The only options on this tab that work with the blog element are the Date Format options and Load More Post Button Color.</div>\";s:2:\"id\";s:32:\"general_blog_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:19:\"blog_page_title_bar\";a:7:{s:5:\"label\";s:19:\"Blog Page Title Bar\";s:11:\"description\";s:85:\"Controls how the page title bar displays on single blog posts and blog archive pages.\";s:2:\"id\";s:19:\"blog_page_title_bar\";s:7:\"default\";s:4:\"hide\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:20:\"Show Bar and Content\";s:12:\"content_only\";s:17:\"Show Content Only\";s:4:\"hide\";s:4:\"Hide\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_blog_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:24:\"blog_show_page_title_bar\";a:7:{s:5:\"label\";s:28:\"Blog Assigned Page Title Bar\";s:11:\"description\";s:104:\"Controls how the page title bar displays on the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:24:\"blog_show_page_title_bar\";s:7:\"default\";s:4:\"hide\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:20:\"Show Bar and Content\";s:12:\"content_only\";s:17:\"Show Content Only\";s:4:\"hide\";s:4:\"Hide\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:48:\"page_title_bar_contents_blog_show_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:10:\"blog_title\";a:7:{s:5:\"label\";s:15:\"Blog Page Title\";s:11:\"description\";s:147:\"Controls the title text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:10:\"blog_title\";s:7:\"default\";s:4:\"Blog\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:18:\"blog_title_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:13:\"blog_subtitle\";a:7:{s:5:\"label\";s:18:\"Blog Page Subtitle\";s:11:\"description\";s:150:\"Controls the subtitle text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:13:\"blog_subtitle\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:21:\"blog_subtitle_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:11:\"blog_layout\";a:8:{s:5:\"label\";s:11:\"Blog Layout\";s:11:\"description\";s:84:\"Controls the layout for the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:11:\"blog_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Large\";s:6:\"medium\";s:6:\"Medium\";s:15:\"large alternate\";s:15:\"Large Alternate\";s:16:\"medium alternate\";s:16:\"Medium Alternate\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:8:\"Timeline\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:26:\".blog .fusion-blog-archive\";}s:9:\"shortcuts\";a:1:{i:0;a:1:{s:10:\"aria_label\";s:17:\"Edit Blog Options\";}}}}s:19:\"blog_archive_layout\";a:7:{s:5:\"label\";s:19:\"Blog Archive Layout\";s:11:\"description\";s:47:\"Controls the layout for the blog archive pages.\";s:2:\"id\";s:19:\"blog_archive_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Large\";s:6:\"medium\";s:6:\"Medium\";s:15:\"large alternate\";s:15:\"Large Alternate\";s:16:\"medium alternate\";s:16:\"Medium Alternate\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:8:\"Timeline\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:4:{i:0;a:3:{s:9:\"condition\";s:11:\"is_category\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:6:\"is_tag\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:2;a:3:{s:9:\"condition\";s:7:\"is_date\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:3;a:3:{s:9:\"condition\";s:9:\"is_author\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:20:\"blog_pagination_type\";a:7:{s:5:\"label\";s:15:\"Pagination Type\";s:11:\"description\";s:115:\"Controls the pagination type for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:20:\"blog_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"blog_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:94:\"Controls the background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:38:\"--blog_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:38:\"blog_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:88:\"Controls the text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:38:\"blog_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:40:\"--blog_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:42:\"blog_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:100:\"Controls the hover background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:44:\"--blog_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:44:\"blog_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:94:\"Controls the hover text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:46:\"--blog_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:25:\"blog_archive_grid_columns\";a:9:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:218:\"Controls the number of columns for grid and masonry layout when using it for the assigned blog page in \"Settings > Reading\" or blog archive pages. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"blog_archive_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:32:\"blog_archive_grid_column_spacing\";a:11:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:171:\"Controls the column spacing for blog posts for grid and masonry layout when using it for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:32:\"blog_archive_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--blog_archive_grid_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"blog_equal_heights\";a:9:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:55:\"Turn on to display grid boxes to equal heights per row.\";s:2:\"id\";s:18:\"blog_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:25:\"blog_archive_grid_padding\";a:9:{s:5:\"label\";s:30:\"Blog Archive Grid Text Padding\";s:11:\"description\";s:106:\"Controls the top/right/bottom/left padding of the blog text when using grid / masonry or timeline layout. \";s:2:\"id\";s:25:\"blog_archive_grid_padding\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:31:\"--blog_archive_grid_padding-top\";s:6:\"choice\";s:3:\"top\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:1;a:3:{s:4:\"name\";s:34:\"--blog_archive_grid_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:2;a:3:{s:4:\"name\";s:32:\"--blog_archive_grid_padding-left\";s:6:\"choice\";s:4:\"left\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:3;a:3:{s:4:\"name\";s:33:\"--blog_archive_grid_padding-right\";s:6:\"choice\";s:5:\"right\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}}}s:21:\"blog_layout_alignment\";a:9:{s:5:\"label\";s:35:\"Blog Archive Grid Content Alignment\";s:11:\"description\";s:93:\"Controls the content alignment of the blog text when using grid / masonry or timeline layout.\";s:2:\"id\";s:21:\"blog_layout_alignment\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:0:\"\";s:9:\"Text Flow\";s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:14:\"content_length\";a:6:{s:5:\"label\";s:20:\"Blog Content Display\";s:11:\"description\";s:177:\"Controls if the blog content displays an excerpt or full content or is completely disabled for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:14:\"content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"excerpt\";s:7:\"Excerpt\";s:12:\"full_content\";s:12:\"Full Content\";s:4:\"hide\";s:7:\"No Text\";}}s:19:\"excerpt_length_blog\";a:8:{s:5:\"label\";s:14:\"Excerpt Length\";s:11:\"description\";s:207:\"Controls post excerts length for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages. Limit is applied to number of letter or words depending on Basis for Excerpt Length option.\";s:2:\"id\";s:19:\"excerpt_length_blog\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"strip_html_excerpt\";a:6:{s:5:\"label\";s:23:\"Strip HTML from Excerpt\";s:11:\"description\";s:133:\"Turn on to strip HTML content from the excerpt for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:18:\"strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:15:\"featured_images\";a:7:{s:5:\"label\";s:43:\"Featured Image / Video on Blog Archive Page\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on the blog archive pages.\";s:2:\"id\";s:15:\"featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:64:\"body:not(.single-avada_portfolio) .fusion-featured-image-wrapper\";i:1;s:77:\".single-avada_portfolio .fusion-featured-image-wrapper .fusion-post-slideshow\";}s:9:\"shortcuts\";a:1:{i:0;a:4:{s:10:\"aria_label\";s:19:\"Edit Featured Image\";s:8:\"callback\";s:23:\"fusionEditFeaturedImage\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-image\";}}}}s:15:\"dates_box_color\";a:6:{s:5:\"label\";s:36:\"Blog Alternate Layout Date Box Color\";s:11:\"description\";s:78:\"Controls the color of the date box in blog alternate and recent posts layouts.\";s:2:\"id\";s:15:\"dates_box_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--dates_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"alternate_date_format_month_year\";a:5:{s:5:\"label\";s:43:\"Blog Alternate Layout Month and Year Format\";s:11:\"description\";s:207:\"Controls the month and year format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:32:\"alternate_date_format_month_year\";s:7:\"default\";s:4:\"m, Y\";s:4:\"type\";s:4:\"text\";}s:25:\"alternate_date_format_day\";a:5:{s:5:\"label\";s:32:\"Blog Alternate Layout Day Format\";s:11:\"description\";s:196:\"Controls the day format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:25:\"alternate_date_format_day\";s:7:\"default\";s:1:\"j\";s:4:\"type\";s:4:\"text\";}s:20:\"timeline_date_format\";a:5:{s:5:\"label\";s:32:\"Blog Timeline Layout Date Format\";s:11:\"description\";s:197:\"Controls the timeline label format for blog timeline layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date</a>\";s:2:\"id\";s:20:\"timeline_date_format\";s:7:\"default\";s:3:\"F Y\";s:4:\"type\";s:4:\"text\";}s:49:\"content_blog_single_post_template_override_notice\";a:5:{s:2:\"id\";s:49:\"content_blog_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:40:\"content_blog_single_post_template_notice\";a:5:{s:2:\"id\";s:40:\"content_blog_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"blog_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:112:\"Turn on to display blog posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:14:\"blog_width_100\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"featured_images_single\";a:7:{s:5:\"label\";s:42:\"Featured Image / Video on Single Blog Post\";s:11:\"description\";s:67:\"Turn on to display featured images and videos on single blog posts.\";s:2:\"id\";s:22:\"featured_images_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"blog_pn_nav\";a:7:{s:5:\"label\";s:24:\"Previous/Next Pagination\";s:11:\"description\";s:75:\"Turn on to display the previous/next post pagination for single blog posts.\";s:2:\"id\";s:11:\"blog_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:15:\"blog_post_title\";a:8:{s:5:\"label\";s:10:\"Post Title\";s:11:\"description\";s:90:\"Controls if the post title displays above or below the featured post image or is disabled.\";s:2:\"id\";s:15:\"blog_post_title\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:5:\"below\";s:6:\"Below \";s:5:\"above\";s:5:\"Above\";s:8:\"disabled\";s:8:\"Disabled\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"blog_post_meta_position\";a:9:{s:5:\"label\";s:18:\"Meta Data Position\";s:11:\"description\";s:41:\"Choose where the meta data is positioned.\";s:2:\"id\";s:23:\"blog_post_meta_position\";s:7:\"default\";s:13:\"below_article\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:13:\"below_article\";s:13:\"Below Article\";s:11:\"below_title\";s:11:\"Below Title\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"blog_post_title\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"disabled\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"social_sharing_box\";a:7:{s:5:\"label\";s:18:\"Social Sharing Box\";s:11:\"description\";s:42:\"Turn on to display the social sharing box.\";s:2:\"id\";s:18:\"social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"author_info\";a:7:{s:5:\"label\";s:15:\"Author Info Box\";s:11:\"description\";s:51:\"Turn on to display the author info box below posts.\";s:2:\"id\";s:11:\"author_info\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"related_posts\";a:7:{s:5:\"label\";s:13:\"Related Posts\";s:11:\"description\";s:33:\"Turn on to display related posts.\";s:2:\"id\";s:13:\"related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"blog_comments\";a:7:{s:5:\"label\";s:8:\"Comments\";s:11:\"description\";s:28:\"Turn on to display comments.\";s:2:\"id\";s:13:\"blog_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:29:\"blog_meta_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:335:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The on/off meta options on this tab only control the assigned blog page in \"Settings > Reading\" or the blog archives, not the blog element. The only options on this tab that work with the blog element are the Meta Data Font Size and Date Format options.</div>\";s:2:\"id\";s:29:\"blog_meta_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:9:\"post_meta\";a:5:{s:5:\"label\";s:9:\"Post Meta\";s:11:\"description\";s:178:\"Turn on to display post meta on blog posts. If set to &quot;On&quot;, you can also control individual meta items below. If set to &quot;Off&quot; all meta items will be disabled.\";s:2:\"id\";s:9:\"post_meta\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:16:\"post_meta_author\";a:6:{s:5:\"label\";s:16:\"Post Meta Author\";s:11:\"description\";s:45:\"Turn on to display the post meta author name.\";s:2:\"id\";s:16:\"post_meta_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_date\";a:6:{s:5:\"label\";s:14:\"Post Meta Date\";s:11:\"description\";s:38:\"Turn on to display the post meta date.\";s:2:\"id\";s:14:\"post_meta_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_cats\";a:6:{s:5:\"label\";s:20:\"Post Meta Categories\";s:11:\"description\";s:44:\"Turn on to display the post meta categories.\";s:2:\"id\";s:14:\"post_meta_cats\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:18:\"post_meta_comments\";a:6:{s:5:\"label\";s:18:\"Post Meta Comments\";s:11:\"description\";s:42:\"Turn on to display the post meta comments.\";s:2:\"id\";s:18:\"post_meta_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_read\";a:6:{s:5:\"label\";s:24:\"Post Meta Read More Link\";s:11:\"description\";s:48:\"Turn on to display the post meta read more link.\";s:2:\"id\";s:14:\"post_meta_read\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_tags\";a:6:{s:5:\"label\";s:14:\"Post Meta Tags\";s:11:\"description\";s:38:\"Turn on to display the post meta tags.\";s:2:\"id\";s:14:\"post_meta_tags\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"meta_font_size\";a:6:{s:5:\"label\";s:19:\"Meta Data Font Size\";s:11:\"description\";s:42:\"Controls the font size for meta data text.\";s:2:\"id\";s:14:\"meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--meta_font_size\";}}}s:11:\"date_format\";a:5:{s:5:\"label\";s:11:\"Date Format\";s:11:\"description\";s:348:\"Controls the date format for date meta data.  <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>. Leave empty to use the default value from your <a href=\"https://test-site.wlvrotary.org/wp-admin/options-general.php\" target=\"_blank\">WordPress Settings</a>\";s:2:\"id\";s:11:\"date_format\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";}s:24:\"portfolio_archive_layout\";a:7:{s:5:\"label\";s:24:\"Portfolio Archive Layout\";s:11:\"description\";s:52:\"Controls the layout for the portfolio archive pages.\";s:2:\"id\";s:24:\"portfolio_archive_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"grid\";s:4:\"Grid\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:37:\"portfolio_archive_featured_image_size\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Featured Image Size\";s:11:\"description\";s:230:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for portfolio archive pages. <strong>IMPORTANT:</strong> Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:37:\"portfolio_archive_featured_image_size\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:5:\"Fixed\";s:4:\"full\";s:4:\"Auto\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_archive_columns\";a:7:{s:5:\"label\";s:35:\"Portfolio Archive Number of Columns\";s:11:\"description\";s:201:\"Set the number of columns per row for portfolio archive pages. With Carousel layout this specifies the maximum amount of columns. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"portfolio_archive_columns\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_column_spacing\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Column Spacing\";s:11:\"description\";s:66:\"Controls the column spacing for portfolio items for archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_column_spacing\";s:7:\"default\";s:2:\"20\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"portfolio_equal_heights\";a:8:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:57:\"Turn on to display grid boxes with equal heights per row.\";s:2:\"id\";s:23:\"portfolio_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:11:\"postMessage\";}s:42:\"portfolio_archive_one_column_text_position\";a:8:{s:5:\"label\";s:34:\"Portfolio Archive Content Position\";s:11:\"description\";s:93:\"Select if title, terms and excerpts should be displayed below or next to the featured images.\";s:2:\"id\";s:42:\"portfolio_archive_one_column_text_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"below\";s:11:\"Below image\";s:7:\"floated\";s:13:\"Next to Image\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:25:\"portfolio_archive_columns\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_archive_items\";a:7:{s:5:\"label\";s:42:\"Number of Portfolio Items Per Archive Page\";s:11:\"description\";s:169:\"Controls the number of posts that display per page for portfolio archive pages. Set to -1 to display all. Set to 0 to use the number of posts from Settings &gt; Reading.\";s:2:\"id\";s:23:\"portfolio_archive_items\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"-1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:29:\"portfolio_archive_text_layout\";a:9:{s:5:\"label\";s:29:\"Portfolio Archive Text Layout\";s:11:\"description\";s:123:\"Controls if the portfolio text content is displayed boxed or unboxed or is completely disabled for portfolio archive pages.\";s:2:\"id\";s:29:\"portfolio_archive_text_layout\";s:7:\"default\";s:7:\"no_text\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:5:\"boxed\";s:5:\"Boxed\";s:7:\"unboxed\";s:7:\"Unboxed\";}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_text_layout-padding\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:6:\"20px 0\";i:1;s:181:\"var(--portfolio_archive_layout_padding-top) var(--portfolio_archive_layout_padding-right) var(--portfolio_archive_layout_padding-bottom) var(--portfolio_archive_layout_padding-left)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:29:\"portfolio_archive_text_layout\";i:1;s:3:\"!==\";i:2;s:5:\"boxed\";}}}}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_content_length\";a:8:{s:5:\"label\";s:30:\"Portfolio Archive Text Display\";s:11:\"description\";s:67:\"Choose how to display the post excerpt for portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:7:\"excerpt\";s:7:\"Excerpt\";s:12:\"full_content\";s:12:\"Full Content\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"portfolio_archive_text_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"no_text\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_excerpt_length\";a:8:{s:5:\"label\";s:32:\"Portfolio Archive Excerpt Length\";s:11:\"description\";s:338:\"Controls the number of words in the excerpts for portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"portfolio_archive_strip_html_excerpt\";a:6:{s:5:\"label\";s:23:\"Strip HTML from Excerpt\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for portfolio archive pages.\";s:2:\"id\";s:36:\"portfolio_archive_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:31:\"portfolio_archive_title_display\";a:7:{s:5:\"label\";s:31:\"Portfolio Archive Title Display\";s:11:\"description\";s:81:\"Controls what displays with the portfolio post title for portfolio archive pages.\";s:2:\"id\";s:31:\"portfolio_archive_title_display\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:20:\"Title and Categories\";s:5:\"title\";s:10:\"Only Title\";s:4:\"cats\";s:15:\"Only Categories\";s:4:\"none\";s:4:\"None\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_text_alignment\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Text Alignment\";s:11:\"description\";s:140:\"Controls the alignment of the portfolio title, categories and excerpt text when using the Portfolio Text layouts in portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_text_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_text_alignment\";s:7:\"element\";s:33:\".fusion-portfolio-content-wrapper\";}}}s:32:\"portfolio_archive_layout_padding\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Text Layout Padding\";s:11:\"description\";s:365:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_layout_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:38:\"--portfolio_archive_layout_padding-top\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:41:\"--portfolio_archive_layout_padding-bottom\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_layout_padding-left\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:40:\"--portfolio_archive_layout_padding-right\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:5:\"right\";}}}s:33:\"portfolio_archive_pagination_type\";a:7:{s:5:\"label\";s:33:\"Portfolio Archive Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for portfolio archive pages.\";s:2:\"id\";s:33:\"portfolio_archive_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:49:\"portfolio_archive_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:99:\"Controls the background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:51:\"--portfolio_archive_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:51:\"portfolio_archive_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:93:\"Controls the text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:53:\"--portfolio_archive_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:105:\"Controls the hover background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:57:\"--portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:99:\"Controls the hover text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:59:\"--portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:14:\"portfolio_slug\";a:5:{s:5:\"label\";s:14:\"Portfolio Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:14:\"portfolio_slug\";s:7:\"default\";s:15:\"portfolio-items\";s:4:\"type\";s:4:\"text\";}s:24:\"portfolio_meta_font_size\";a:6:{s:5:\"label\";s:19:\"Meta Data Font Size\";s:11:\"description\";s:42:\"Controls the font size for meta data text.\";s:2:\"id\";s:24:\"portfolio_meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--portfolio_meta_font_size\";}}}s:46:\"portfolio_single_post_template_override_notice\";a:5:{s:2:\"id\";s:46:\"portfolio_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:37:\"portfolio_single_post_template_notice\";a:4:{s:2:\"id\";s:37:\"portfolio_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"portfolio_pn_nav\";a:7:{s:5:\"label\";s:24:\"Previous/Next Pagination\";s:11:\"description\";s:80:\"Turn on to display the previous/next post pagination for single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"portfolio_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:117:\"Turn on to display portfolio posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:19:\"portfolio_width_100\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:30:\"portfolio_featured_image_width\";a:9:{s:5:\"label\";s:26:\"Featured Image Column Size\";s:11:\"description\";s:79:\"Controls if the featured image is half or full width on single portfolio posts.\";s:2:\"id\";s:30:\"portfolio_featured_image_width\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:4:\"full\";s:10:\"Full Width\";s:4:\"half\";s:10:\"Half Width\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_featured_images\";a:7:{s:5:\"label\";s:42:\"Featured Image / Video on Single Post Page\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"show_first_featured_image\";a:8:{s:5:\"label\";s:20:\"First Featured Image\";s:11:\"description\";s:68:\"Turn on to display the 1st featured image on single portfolio posts.\";s:2:\"id\";s:25:\"show_first_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:33:\"show_first_featured_image_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:28:\"portfolio_project_desc_title\";a:7:{s:5:\"label\";s:25:\"Project Description Title\";s:11:\"description\";s:72:\"Turn on to show the project description title on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_project_desc_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_project_details\";a:7:{s:5:\"label\";s:15:\"Project Details\";s:11:\"description\";s:80:\"Turn on to show the project details title and content on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_project_details\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"portfolio_link_icon_target\";a:7:{s:5:\"label\";s:34:\"Open Portfolio Links In New Window\";s:11:\"description\";s:90:\"Turn on to open the single post page, project url and copyright url links in a new window.\";s:2:\"id\";s:26:\"portfolio_link_icon_target\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"portfolio_author\";a:7:{s:5:\"label\";s:6:\"Author\";s:11:\"description\";s:61:\"Turn on to display the author name on single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_author\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"portfolio_social_sharing_box\";a:7:{s:5:\"label\";s:18:\"Social Sharing Box\";s:11:\"description\";s:68:\"Turn on to display the social sharing box on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_related_posts\";a:7:{s:5:\"label\";s:16:\"Related Projects\";s:11:\"description\";s:62:\"Turn on to display related projects on single portfolio posts.\";s:2:\"id\";s:23:\"portfolio_related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"portfolio_comments\";a:7:{s:5:\"label\";s:8:\"Comments\";s:11:\"description\";s:54:\"Turn on to display comments on single portfolio posts.\";s:2:\"id\";s:18:\"portfolio_comments\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:38:\"social_media_icons_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:250:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab controls the social networks that display in legacy headers and footers. Custom icons created here can also be used in the Social Links and the Person element.</div>\";s:2:\"id\";s:38:\"social_media_icons_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"social_media_icons\";a:9:{s:5:\"label\";s:26:\"Social Media Icons / Links\";s:11:\"description\";s:131:\"Social media links use a repeater field and allow one network per field. Click the &quot;Add&quot; button to add additional fields.\";s:2:\"id\";s:18:\"social_media_icons\";s:7:\"default\";a:6:{s:25:\"fusionredux_repeater_data\";a:4:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:9:\"pinterest\";}s:3:\"url\";a:4:{i:0;s:1:\"#\";i:1;s:1:\"#\";i:2;s:1:\"#\";i:3;s:1:\"#\";}s:12:\"custom_title\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:16:\"custom_icon_mark\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"custom_source\";a:4:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;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:\"\";}i:2;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:\"\";}i:3;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:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"icon\";s:5:\"limit\";i:50;s:6:\"fields\";a:5:{s:4:\"icon\";a:6:{s:2:\"id\";s:4:\"icon\";s:4:\"type\";s:6:\"select\";s:5:\"label\";s:14:\"Social Network\";s:11:\"description\";s:53:\"Select a social network to automatically add its icon\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:36:{s:7:\"blogger\";s:7:\"Blogger\";s:10:\"deviantart\";s:10:\"Deviantart\";s:7:\"discord\";s:7:\"Discord\";s:4:\"digg\";s:4:\"Digg\";s:8:\"dribbble\";s:8:\"Dribbble\";s:7:\"dropbox\";s:7:\"Dropbox\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:6:\"forrst\";s:6:\"Forrst\";s:9:\"instagram\";s:9:\"Instagram\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:7:\"myspace\";s:7:\"Myspace\";s:6:\"paypal\";s:6:\"Paypal\";s:9:\"pinterest\";s:9:\"Pinterest\";s:6:\"reddit\";s:6:\"Reddit\";s:3:\"rss\";s:3:\"RSS\";s:5:\"skype\";s:5:\"Skype\";s:10:\"soundcloud\";s:10:\"Soundcloud\";s:7:\"spotify\";s:7:\"Spotify\";s:5:\"teams\";s:5:\"Teams\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tiktok\";s:6:\"Tiktok\";s:6:\"tumblr\";s:6:\"Tumblr\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"twitch\";s:6:\"Twitch\";s:5:\"vimeo\";s:5:\"Vimeo\";s:2:\"vk\";s:2:\"VK\";s:6:\"wechat\";s:6:\"WeChat\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:4:\"xing\";s:4:\"Xing\";s:5:\"yahoo\";s:5:\"Yahoo\";s:4:\"yelp\";s:4:\"Yelp\";s:7:\"youtube\";s:7:\"Youtube\";s:5:\"email\";s:13:\"Email Address\";s:5:\"phone\";s:5:\"Phone\";s:6:\"custom\";s:6:\"Custom\";}}s:9:\"icon_mark\";a:5:{s:4:\"type\";s:10:\"iconpicker\";s:2:\"id\";s:9:\"icon_mark\";s:7:\"heading\";s:4:\"Icon\";s:11:\"description\";s:49:\"Click an icon to select, click again to deselect.\";s:7:\"default\";s:0:\"\";}s:3:\"url\";a:5:{s:2:\"id\";s:3:\"url\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Custom Link\";s:11:\"description\";s:28:\"Insert your custom link here\";s:7:\"default\";s:0:\"\";}s:12:\"custom_title\";a:6:{s:2:\"id\";s:12:\"custom_title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:17:\"Custom Icon Title\";s:11:\"description\";s:40:\"Insert a title for your custom icon here\";s:7:\"default\";s:0:\"\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}s:13:\"custom_source\";a:7:{s:2:\"id\";s:13:\"custom_source\";s:4:\"type\";s:5:\"media\";s:5:\"label\";s:40:\"Choose the image you want to use as icon\";s:11:\"description\";s:23:\"Upload your custom icon\";s:7:\"default\";s:0:\"\";s:4:\"mode\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}}s:15:\"partial_refresh\";a:5:{s:52:\"header_content_social_media_icons_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:51:\"header_content_social_media_icons_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_content_social_media_icons\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}s:33:\"footer_content_social_media_icons\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}s:29:\"sharingbox_social_media_icons\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:35:\"header_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"header_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Header override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:26:\"header_social_links_notice\";a:5:{s:2:\"id\";s:26:\"header_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:29:\"header_social_links_font_size\";a:7:{s:5:\"label\";s:28:\"Header Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the header social icons.\";s:2:\"id\";s:29:\"header_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--header_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"header_social_links_tooltip_placement\";a:8:{s:5:\"label\";s:35:\"Header Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the header social icons.\";s:2:\"id\";s:37:\"header_social_links_tooltip_placement\";s:7:\"default\";s:6:\"Bottom\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:4:\"none\";s:4:\"None\";}s:15:\"partial_refresh\";a:3:{s:71:\"header_content_header_social_links_tooltip_placement_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:70:\"header_content_header_social_links_tooltip_placement_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_color_type\";a:8:{s:5:\"label\";s:29:\"Header Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"header_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}s:15:\"partial_refresh\";a:3:{s:64:\"header_content_header_social_links_color_type_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:63:\"header_content_header_social_links_color_type_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_content_header_social_links_color_type\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_icon_color\";a:8:{s:5:\"label\";s:24:\"Header Social Icon Color\";s:11:\"description\";s:106:\"Controls the color of the header social icons. This color will be used for all social icons in the header.\";s:2:\"id\";s:30:\"header_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:1;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_social_links_boxed\";a:7:{s:5:\"label\";s:25:\"Header Social Icons Boxed\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"header_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:59:\"header_content_header_social_links_boxed_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:58:\"header_content_header_social_links_boxed_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"header_content_header_social_links_boxed\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:29:\"header_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Header Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"header_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:1;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"header_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Header Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"header_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--header_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"header_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Header Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"header_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:6:\"hidden\";b:1;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--header_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:35:\"footer_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"footer_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:326:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Footer override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:26:\"footer_social_links_notice\";a:5:{s:2:\"id\";s:26:\"footer_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:12:\"icons_footer\";a:7:{s:5:\"label\";s:34:\"Display Social Icons In The Footer\";s:11:\"description\";s:60:\"Turn on to display social icons in the footer copyright bar.\";s:2:\"id\";s:12:\"icons_footer\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:1;s:15:\"partial_refresh\";a:1:{s:27:\"footer_content_icons_footer\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_font_size\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the footer social icons.\";s:2:\"id\";s:29:\"footer_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:1;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--footer_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"footer_social_links_tooltip_placement\";a:9:{s:5:\"label\";s:35:\"Footer Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the footer social icons.\";s:2:\"id\";s:37:\"footer_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:1;s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:4:\"none\";s:4:\"None\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:52:\"footer_content_footer_social_links_tooltip_placement\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_color_type\";a:9:{s:5:\"label\";s:29:\"Footer Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"footer_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:1;s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:45:\"footer_content_footer_social_links_color_type\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_icon_color\";a:8:{s:5:\"label\";s:24:\"Footer Social Icon Color\";s:11:\"description\";s:106:\"Controls the color of the footer social icons. This color will be used for all social icons in the footer.\";s:2:\"id\";s:30:\"footer_social_links_icon_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:6:\"hidden\";b:1;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--footer_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"footer_social_links_boxed\";a:8:{s:5:\"label\";s:25:\"Footer Social Icons Boxed\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"footer_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:1;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:40:\"footer_content_footer_social_links_boxed\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"footer_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:6:\"hidden\";b:1;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--footer_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"footer_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Footer Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"footer_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:1;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--footer_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"footer_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Footer Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"footer_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:1;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--footer_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:22:\"sharing_social_tagline\";a:6:{s:5:\"label\";s:22:\"Social Sharing Tagline\";s:11:\"description\";s:46:\"Insert a tagline for the social sharing boxes.\";s:2:\"id\";s:22:\"sharing_social_tagline\";s:7:\"default\";s:39:\"Share This Story, Choose Your Platform!\";s:4:\"type\";s:4:\"text\";s:15:\"partial_refresh\";a:1:{s:33:\"sharingbox_sharing_social_tagline\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_box_tagline_text_color\";a:6:{s:5:\"label\";s:33:\"Social Sharing Tagline Text Color\";s:11:\"description\";s:67:\"Controls the color of the tagline text in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_box_tagline_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--sharing_box_tagline_text_color\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"social_bg_color\";a:7:{s:5:\"label\";s:31:\"Social Sharing Background Color\";s:11:\"description\";s:58:\"Controls the background color of the social sharing boxes.\";s:2:\"id\";s:15:\"social_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--social_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:31:\"--social_bg_color-0-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:3:\"0px\";s:6:\"opaque\";s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-social-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"social_sharing_padding\";a:8:{s:5:\"label\";s:22:\"Social Sharing Padding\";s:11:\"description\";s:44:\"Set the padding for the social sharing box. \";s:2:\"id\";s:22:\"social_sharing_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:6:\"1.25em\";s:5:\"right\";s:6:\"1.25em\";s:6:\"bottom\";s:6:\"1.25em\";s:4:\"left\";s:6:\"1.25em\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:28:\"--social_sharing_padding-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:30:\"--social_sharing_padding-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:31:\"--social_sharing_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:29:\"--social_sharing_padding-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}}}s:26:\"social_share_box_icon_info\";a:5:{s:5:\"label\";s:20:\"Social Sharing Icons\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"social_share_box_icon_info\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:14:\"social_sharing\";a:8:{s:5:\"label\";s:14:\"Social Sharing\";s:11:\"description\";s:71:\"Select social network you want to be displayed in the social share box.\";s:2:\"id\";s:14:\"social_sharing\";s:7:\"default\";a:11:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:8:\"telegram\";i:6;s:6:\"tumblr\";i:7;s:9:\"pinterest\";i:8;s:2:\"vk\";i:9;s:4:\"xing\";i:10;s:5:\"email\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:11:{s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"reddit\";s:6:\"Reddit\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tumblr\";s:6:\"Tumblr\";s:9:\"pinterest\";s:9:\"Pinterest\";s:2:\"vk\";s:2:\"VK\";s:4:\"xing\";s:4:\"Xing\";s:5:\"email\";s:5:\"Email\";}s:22:\"social_share_box_links\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}s:30:\"sharing_social_links_font_size\";a:6:{s:5:\"label\";s:29:\"Social Sharing Icon Font Size\";s:11:\"description\";s:71:\"Controls the font size of the social icons in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_font_size\";s:7:\"element\";s:19:\".fusion-sharing-box\";}}}s:38:\"sharing_social_links_tooltip_placement\";a:7:{s:5:\"label\";s:37:\"Social Sharing Icons Tooltip Position\";s:11:\"description\";s:78:\"Controls the tooltip position of the social icons in the social sharing boxes.\";s:2:\"id\";s:38:\"sharing_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:4:\"none\";s:4:\"None\";}s:15:\"partial_refresh\";a:1:{s:49:\"sharingbox_sharing_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_color_type\";a:7:{s:5:\"label\";s:30:\"Social Sharing Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:31:\"sharing_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}s:15:\"partial_refresh\";a:1:{s:50:\"sharingbox_sharing_sharing_social_links_color_type\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_icon_color\";a:7:{s:5:\"label\";s:25:\"Social Sharing Icon Color\";s:11:\"description\";s:113:\"Controls the color of the social icons in the social sharing boxes. This color will be used for all social icons.\";s:2:\"id\";s:31:\"sharing_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--sharing_social_links_icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"sharing_social_links_boxed\";a:6:{s:5:\"label\";s:26:\"Social Sharing Icons Boxed\";s:11:\"description\";s:57:\"Controls if each social icon is displayed in a small box.\";s:2:\"id\";s:26:\"sharing_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:37:\"sharingbox_sharing_social_links_boxed\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_social_links_box_color\";a:7:{s:5:\"label\";s:29:\"Social Sharing Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:30:\"sharing_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:33:\"sharing_social_links_boxed_radius\";a:7:{s:5:\"label\";s:32:\"Social Sharing Icon Boxed Radius\";s:11:\"description\";s:47:\"Controls the box radius of the social icon box.\";s:2:\"id\";s:33:\"sharing_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--sharing_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:34:\"sharing_social_links_boxed_padding\";a:7:{s:5:\"label\";s:34:\"Social Sharing Icons Boxed Padding\";s:11:\"description\";s:53:\"Controls the interior padding of the social icon box.\";s:2:\"id\";s:34:\"sharing_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--sharing_social_links_boxed_padding\";s:7:\"element\";s:19:\".fusion-sharing-box\";}}}s:22:\"posts_slideshow_number\";a:6:{s:5:\"label\";s:22:\"Posts Slideshow Images\";s:11:\"description\";s:69:\"Controls the number of featured image boxes for blog/portfolio posts.\";s:2:\"id\";s:22:\"posts_slideshow_number\";s:7:\"default\";s:1:\"5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}}s:18:\"slideshow_autoplay\";a:6:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:35:\"Turn on to autoplay the slideshows.\";s:2:\"id\";s:18:\"slideshow_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"slideshow_smooth_height\";a:5:{s:5:\"label\";s:13:\"Smooth Height\";s:11:\"description\";s:147:\"Turn on to enable smooth height on slideshows when using images with different heights. Please note, smooth height is disabled on blog grid layout.\";s:2:\"id\";s:23:\"slideshow_smooth_height\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:15:\"slideshow_speed\";a:7:{s:5:\"label\";s:15:\"Slideshow Speed\";s:11:\"description\";s:102:\"Controls the speed of slideshows for the slider element and sliders within posts. ex: 1000 = 1 second.\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"default\";s:4:\"7000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"pagination_video_slide\";a:6:{s:5:\"label\";s:37:\"Pagination Circles Below Video Slides\";s:11:\"description\";s:117:\"Turn on to show pagination circles below a video slide for the slider element. Turn off to hide them on video slides.\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"slider_nav_box_dimensions\";a:7:{s:5:\"label\";s:25:\"Navigation Box Dimensions\";s:11:\"description\";s:52:\"Controls the width and height of the navigation box.\";s:2:\"id\";s:25:\"slider_nav_box_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:33:\"--slider_nav_box_dimensions-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:34:\"--slider_nav_box_dimensions-height\";s:6:\"choice\";s:6:\"height\";}}}s:17:\"slider_arrow_size\";a:6:{s:5:\"label\";s:21:\"Navigation Arrow Size\";s:11:\"description\";s:47:\"Controls the font size of the navigation arrow.\";s:2:\"id\";s:17:\"slider_arrow_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--slider_arrow_size\";}}}s:18:\"tfes_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:179:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Elastic Slider is disabled in Advanced > Post Types section. Please enable it to see the options.</div>\";s:2:\"id\";s:18:\"tfes_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:15:\"tfes_dimensions\";a:8:{s:5:\"label\";s:25:\"Elastic Slider Dimensions\";s:11:\"description\";s:53:\"Controls the width and height for the elastic slider.\";s:2:\"id\";s:15:\"tfes_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--tfes_dimensions-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:10:\".ei-slider\";}i:1;a:3:{s:4:\"name\";s:24:\"--tfes_dimensions-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:10:\".ei-slider\";}}}s:14:\"tfes_animation\";a:8:{s:5:\"label\";s:14:\"Animation Type\";s:11:\"description\";s:64:\"Controls if the elastic slides animate from the sides or center.\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"default\";s:5:\"sides\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"sides\";s:5:\"Sides\";s:6:\"center\";s:6:\"Center\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_autoplay\";a:7:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:39:\"Turn on to autoplay the elastic slides.\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_interval\";a:8:{s:5:\"label\";s:18:\"Slideshow Interval\";s:11:\"description\";s:69:\"Controls how long each elastic slide is visible. ex: 1000 = 1 second.\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"default\";s:4:\"3000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:5:\"30000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_speed\";a:8:{s:5:\"label\";s:13:\"Sliding Speed\";s:11:\"description\";s:72:\"Controls the speed of the elastic slider slideshow. ex: 1000 = 1 second.\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_width\";a:8:{s:5:\"label\";s:15:\"Thumbnail Width\";s:11:\"description\";s:58:\"Controls the width of the elastic slider thumbnail images.\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"default\";s:3:\"150\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"500\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"es_title_font_size\";a:7:{s:5:\"label\";s:15:\"Title Font Size\";s:11:\"description\";s:48:\"Controls the font size for elastic slider title.\";s:2:\"id\";s:18:\"es_title_font_size\";s:7:\"default\";s:4:\"42px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--es_title_font_size\";s:7:\"element\";s:10:\".ei-slider\";}}}s:20:\"es_caption_font_size\";a:7:{s:5:\"label\";s:17:\"Caption Font Size\";s:11:\"description\";s:50:\"Controls the font size for elastic slider caption.\";s:2:\"id\";s:20:\"es_caption_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--es_caption_font_size\";}}}s:14:\"es_title_color\";a:7:{s:5:\"label\";s:11:\"Title Color\";s:11:\"description\";s:47:\"Controls the color of the elastic slider title.\";s:2:\"id\";s:14:\"es_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--es_title_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"es_caption_color\";a:7:{s:5:\"label\";s:13:\"Caption Color\";s:11:\"description\";s:49:\"Controls the color of the elastic slider caption.\";s:2:\"id\";s:16:\"es_caption_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--es_caption_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"status_lightbox\";a:5:{s:5:\"label\";s:8:\"Lightbox\";s:11:\"description\";s:52:\"Turn on to enable the lightbox throughout the theme.\";s:2:\"id\";s:15:\"status_lightbox\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:22:\"status_lightbox_single\";a:6:{s:5:\"label\";s:49:\"Lightbox For Featured Images On Single Post Pages\";s:11:\"description\";s:95:\"Turn on to enable the lightbox on single blog and portfolio posts for the main featured images.\";s:2:\"id\";s:22:\"status_lightbox_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:17:\"lightbox_behavior\";a:7:{s:5:\"label\";s:17:\"Lightbox Behavior\";s:11:\"description\";s:72:\"Controls what the lightbox displays for single blog and portfolio posts.\";s:2:\"id\";s:17:\"lightbox_behavior\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:3:\"all\";s:34:\"First featured image of every post\";s:10:\"individual\";s:39:\"Only featured images of individual post\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:13:\"lightbox_skin\";a:8:{s:5:\"label\";s:13:\"Lightbox Skin\";s:11:\"description\";s:34:\"Controls the lightbox skin design.\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"default\";s:11:\"metro-white\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"light\";s:5:\"Light\";s:4:\"dark\";s:4:\"Dark\";s:3:\"mac\";s:3:\"Mac\";s:11:\"metro-black\";s:11:\"Metro Black\";s:11:\"metro-white\";s:11:\"Metro White\";s:6:\"parade\";s:6:\"Parade\";s:6:\"smooth\";s:6:\"Smooth\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_path\";a:8:{s:5:\"label\";s:19:\"Thumbnails Position\";s:11:\"description\";s:49:\"Controls the position of the lightbox thumbnails.\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"default\";s:8:\"vertical\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:8:\"vertical\";s:5:\"Right\";s:10:\"horizontal\";s:6:\"Bottom\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_animation_speed\";a:8:{s:5:\"label\";s:15:\"Animation Speed\";s:11:\"description\";s:45:\"Controls the animation speed of the lightbox.\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"default\";s:6:\"normal\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"fast\";s:4:\"Fast\";s:6:\"normal\";s:6:\"Normal\";s:4:\"slow\";s:4:\"Slow\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_arrows\";a:7:{s:5:\"label\";s:6:\"Arrows\";s:11:\"description\";s:41:\"Turn on to display arrows in the lightbox\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"lightbox_skin\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"parade\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_gallery\";a:7:{s:5:\"label\";s:25:\"Gallery Start/Stop Button\";s:11:\"description\";s:53:\"Turn on to display the gallery start and stop button.\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"lightbox_autoplay\";a:7:{s:5:\"label\";s:29:\"Autoplay the Lightbox Gallery\";s:11:\"description\";s:41:\"Turn on to autoplay the lightbox gallery.\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_slideshow_speed\";a:8:{s:5:\"label\";s:15:\"Slideshow Speed\";s:11:\"description\";s:75:\"Controls the slideshow speed if autoplay is turned on. ex: 1000 = 1 second.\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"default\";s:4:\"5000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_opacity\";a:8:{s:5:\"label\";s:18:\"Background Opacity\";s:11:\"description\";s:66:\"Controls the opacity level for the background behind the lightbox.\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"default\";s:3:\"0.9\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:4:\"0.01\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"lightbox_title\";a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:51:\"Turn on to display the image title in the lightbox.\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_desc\";a:7:{s:5:\"label\";s:7:\"Caption\";s:11:\"description\";s:53:\"Turn on to display the image caption in the lightbox.\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_social\";a:7:{s:5:\"label\";s:14:\"Social Sharing\";s:11:\"description\";s:54:\"Turn on to display social sharing buttons on lightbox.\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"lightbox_deeplinking\";a:7:{s:5:\"label\";s:11:\"Deeplinking\";s:11:\"description\";s:43:\"Turn on to deeplink images in the lightbox.\";s:2:\"id\";s:20:\"lightbox_deeplinking\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:20:\"lightbox_post_images\";a:7:{s:5:\"label\";s:28:\"Show Post Images in Lightbox\";s:11:\"description\";s:85:\"Turn on to display post images in the lightbox that are inside the post content area.\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"lightbox_video_dimensions\";a:8:{s:5:\"label\";s:26:\"Slideshow Video Dimensions\";s:11:\"description\";s:61:\"Controls the width and height for videos inside the lightbox.\";s:2:\"id\";s:25:\"lightbox_video_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_video_width\";s:6:\"choice\";s:5:\"width\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:21:\"lightbox_video_height\";s:6:\"choice\";s:6:\"height\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:33:\"forms_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:233:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all forms throughout the site, including Avada Forms and the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:33:\"forms_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"form_input_height\";a:7:{s:5:\"label\";s:28:\"Form Input and Select Height\";s:11:\"description\";s:64:\"Controls the height of all search, form input and select fields.\";s:2:\"id\";s:17:\"form_input_height\";s:7:\"default\";s:4:\"50px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{i:0;s:2:\"px\";}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:19:\"--form_input_height\";}i:1;a:2:{s:4:\"name\";s:42:\"--form_input_height-main-menu-search-width\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:22:\"calc(250px + 1.43 * $)\";i:1;s:5:\"250px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:17:\"form_input_height\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}}}s:14:\"form_text_size\";a:6:{s:5:\"label\";s:14:\"Form Font Size\";s:11:\"description\";s:35:\"Controls the size of the form text.\";s:2:\"id\";s:14:\"form_text_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--form_text_size\";s:2:\"po\";b:0;}}}s:13:\"form_bg_color\";a:6:{s:5:\"label\";s:27:\"Form Field Background Color\";s:11:\"description\";s:45:\"Controls the background color of form fields.\";s:2:\"id\";s:13:\"form_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:15:\"--form_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:15:\"form_text_color\";a:6:{s:5:\"label\";s:15:\"Form Text Color\";s:11:\"description\";s:36:\"Controls the color of the form text.\";s:2:\"id\";s:15:\"form_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:17:\"--form_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:21:\"--form_text_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}s:2:\"po\";b:0;}}}s:17:\"form_border_width\";a:7:{s:5:\"label\";s:16:\"Form Border Size\";s:11:\"description\";s:44:\"Controls the border size of the form fields.\";s:2:\"id\";s:17:\"form_border_width\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:23:\"--form_border_width-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:26:\"--form_border_width-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:24:\"--form_border_width-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:25:\"--form_border_width-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}}}s:17:\"form_border_color\";a:7:{s:5:\"label\";s:17:\"Form Border Color\";s:11:\"description\";s:310:\"Controls the border color of the form fields.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:17:\"form_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--form_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:23:\"form_focus_border_color\";a:7:{s:5:\"label\";s:26:\"Form Border Color On Focus\";s:11:\"description\";s:331:\"Controls the border color of the form fields when they have focus.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:23:\"form_focus_border_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--form_focus_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:28:\"--form_focus_border_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}s:2:\"po\";b:0;}}}s:18:\"form_border_radius\";a:7:{s:5:\"label\";s:18:\"Form Border Radius\";s:11:\"description\";s:86:\"Controls the border radius of the form fields. Also works, if border size is set to 0.\";s:2:\"id\";s:18:\"form_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--form_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";s:2:\"po\";b:0;}}}s:19:\"form_views_counting\";a:6:{s:5:\"label\";s:19:\"Form Views Counting\";s:11:\"description\";s:66:\"Select which types of users will increase the form views on visit.\";s:2:\"id\";s:19:\"form_views_counting\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:3:\"all\";s:3:\"All\";s:10:\"logged_out\";s:10:\"Logged Out\";s:10:\"non_admins\";s:10:\"Non-Admins\";}}s:17:\"recaptcha_version\";a:7:{s:5:\"label\";s:17:\"reCAPTCHA Version\";s:11:\"description\";s:94:\"Set the reCAPTCHA version you want to use and make sure your keys below match the set version.\";s:2:\"id\";s:17:\"recaptcha_version\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"v2\";s:2:\"V2\";s:2:\"v3\";s:2:\"V3\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:16:\"recaptcha_public\";a:6:{s:5:\"label\";s:18:\"reCAPTCHA Site Key\";s:11:\"description\";s:188:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the site key.\";s:2:\"id\";s:16:\"recaptcha_public\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"recaptcha_private\";a:6:{s:5:\"label\";s:20:\"reCAPTCHA Secret Key\";s:11:\"description\";s:190:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the secret key.\";s:2:\"id\";s:17:\"recaptcha_private\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"recaptcha_color_scheme\";a:8:{s:5:\"label\";s:22:\"reCAPTCHA Color Scheme\";s:11:\"description\";s:36:\"Controls the reCAPTCHA color scheme.\";s:2:\"id\";s:22:\"recaptcha_color_scheme\";s:7:\"default\";s:5:\"light\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"light\";s:5:\"Light\";s:4:\"dark\";s:4:\"Dark\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v2\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"recaptcha_score\";a:8:{s:5:\"label\";s:24:\"reCAPTCHA Security Score\";s:11:\"description\";s:153:\"Set a threshold score that must be met by the reCAPTCHA response. The higher the score the harder it becomes for bots, but also false positives increase.\";s:2:\"id\";s:15:\"recaptcha_score\";s:7:\"default\";s:3:\"0.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\"0.1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"recaptcha_badge_position\";a:8:{s:5:\"label\";s:24:\"reCAPTCHA Badge Position\";s:11:\"description\";s:162:\"Set where and if the reCAPTCHA badge should be displayed. <strong>NOTE:</strong> Google\'s Terms and Privacy information needs to be displayed on the contact form.\";s:2:\"id\";s:24:\"recaptcha_badge_position\";s:7:\"default\";s:6:\"inline\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"inline\";s:6:\"Inline\";s:10:\"bottomleft\";s:11:\"Bottom Left\";s:11:\"bottomright\";s:12:\"Bottom Right\";s:4:\"hide\";s:4:\"Hide\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"recaptcha_login_form\";a:5:{s:5:\"label\";s:27:\"reCAPTCHA For User Elements\";s:11:\"description\";s:91:\"Turn on to add reCAPTCHA to the user login, user lost password and user registration forms.\";s:2:\"id\";s:20:\"recaptcha_login_form\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:11:\"hubspot_api\";a:7:{s:5:\"label\";s:11:\"HubSpot API\";s:11:\"description\";s:51:\"Select a method to connect to your HubSpot account.\";s:2:\"id\";s:11:\"hubspot_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:7:\"API Key\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:11:\"postMessage\";}s:11:\"hubspot_key\";a:7:{s:5:\"label\";s:15:\"HubSpot API Key\";s:11:\"description\";s:187:\"Follow the steps in <a href=\"https://knowledge.hubspot.com/integrations/how-do-i-get-my-hubspot-api-key\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot docs</a> to access your API key.\";s:2:\"id\";s:11:\"hubspot_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"hubspot_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1826:\"<div id=\"fusion-hubspot-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20communication_preferences.read_write%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20communication_preferences.read_write%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with HubSpot</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with HubSpot</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1\">Revoke Access</a></div>\";s:2:\"id\";s:13:\"hubspot_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}s:13:\"mailchimp_api\";a:7:{s:5:\"label\";s:13:\"Mailchimp API\";s:11:\"description\";s:53:\"Select a method to connect to your Mailchimp account.\";s:2:\"id\";s:13:\"mailchimp_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:7:\"API Key\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"mailchimp_key\";a:7:{s:5:\"label\";s:17:\"Mailchimp API Key\";s:11:\"description\";s:157:\"Follow the steps in <a href=\"https://mailchimp.com/help/about-api-keys/\" target=\"_blank\" rel=\"noopener noreferrer\">Mailchimp docs</a> to access your API key.\";s:2:\"id\";s:13:\"mailchimp_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"mailchimp_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1464:\"<div id=\"fusion-mailchimp-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with Mailchimp</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with Mailchimp</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1\">Revoke Access</a></div>\";s:2:\"id\";s:15:\"mailchimp_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}s:32:\"contact_form_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:181:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the contact form that displays on the \"Contact\" page template.</div>\";s:2:\"id\";s:32:\"contact_form_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"email_address\";a:6:{s:5:\"label\";s:13:\"Email Address\";s:11:\"description\";s:110:\"Enter the email address the form should be sent to. This only works for the form on the contact page template.\";s:2:\"id\";s:13:\"email_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"contact_comment_position\";a:8:{s:5:\"label\";s:34:\"Contact Form Comment Area Position\";s:11:\"description\";s:76:\"Controls the position of the comment field with respect to the other fields.\";s:2:\"id\";s:24:\"contact_comment_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"above\";s:5:\"Above\";s:5:\"below\";s:5:\"Below\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:20:\".fusion-contact-form\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:17:\"Edit Contact Form\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:29:\"contact_form_privacy_checkbox\";a:6:{s:5:\"label\";s:37:\"Display Data Privacy Confirmation Box\";s:11:\"description\";s:139:\"Turn on to display a checkbox and custom label that has to be checked in order to confirm data privacy terms and that the form can be sent.\";s:2:\"id\";s:29:\"contact_form_privacy_checkbox\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:26:\"contact_form_privacy_label\";a:8:{s:5:\"label\";s:27:\"Data Privacy Checkbox Label\";s:11:\"description\";s:101:\"Enter the contents that should be displayed as label for the data privacy checkbox. Can contain HTML.\";s:2:\"id\";s:26:\"contact_form_privacy_label\";s:7:\"default\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"contact_form_privacy_checkbox\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:39:\"#comment-privacy-checkbox-wrapper label\";s:8:\"function\";s:4:\"html\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:24:\"google_map_disabled_note\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:24:\"google_map_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:30:\"google_map_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:269:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are for the google map that displays on the \"Contact\" page template. The only option that controls the Avada Builder google map element is the Google Maps API Key.</div>\";s:2:\"id\";s:30:\"google_map_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:8:\"gmap_api\";a:8:{s:5:\"label\";s:19:\"Google Maps API Key\";s:11:\"description\";s:271:\"Follow the steps in <a href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#key\" target=\"_blank\" rel=\"noopener noreferrer\">the Google docs</a> to get the API key. This key applies to both the contact page map and Avada Builder google map element.\";s:2:\"id\";s:8:\"gmap_api\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}s:17:\"validate_callback\";s:42:\"fusion_fusionredux_validate_google_api_key\";}s:13:\"gmap_api_type\";a:8:{s:5:\"label\";s:15:\"Google API Type\";s:11:\"description\";s:394:\"Select the Google API type that should be used to load your map. The JavaScript API allows for more options and custom styling, but could be charged for by Google depending on map loads, while the embed API can be used for free regardless of map loads. For more information please see the <a href=\"https://cloud.google.com/maps-platform/user-guide/\" target=\"_blank\">Google Maps Users Guide</a>.\";s:2:\"id\";s:13:\"gmap_api_type\";s:7:\"default\";s:2:\"js\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"js\";s:6:\"JS API\";s:5:\"embed\";s:9:\"Embed API\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:22:\"#fusion-gmap-container\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:15:\"Edit Google Map\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_embed_address\";a:7:{s:5:\"label\";s:7:\"Address\";s:11:\"description\";s:283:\"Add the address of the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates. ex: 12.381068,-1.492711.\";s:2:\"id\";s:18:\"gmap_embed_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"gmap_embed_map_type\";a:8:{s:5:\"label\";s:8:\"Map Type\";s:11:\"description\";s:41:\"Select the type of google map to display.\";s:2:\"id\";s:19:\"gmap_embed_map_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:12:\"gmap_address\";a:7:{s:5:\"label\";s:18:\"Google Map Address\";s:11:\"description\";s:411:\"Add the address to the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Single address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates with latlng=. ex: latlng=12.381068,-1.492711. For multiple addresses, separate addresses by using the | symbol. ex: Address 1|Address 2|Address 3.\";s:2:\"id\";s:12:\"gmap_address\";s:7:\"default\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"gmap_type\";a:8:{s:5:\"label\";s:15:\"Google Map Type\";s:11:\"description\";s:46:\"Controls the type of google map that displays.\";s:2:\"id\";s:9:\"gmap_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";s:6:\"hybrid\";s:6:\"Hybrid\";s:7:\"terrain\";s:7:\"Terrain\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"gmap_dimensions\";a:8:{s:5:\"label\";s:21:\"Google Map Dimensions\";s:11:\"description\";s:95:\"Controls the width and height of the google map. NOTE: height does not accept percentage value.\";s:2:\"id\";s:15:\"gmap_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:14:\"gmap_topmargin\";a:7:{s:5:\"label\";s:21:\"Google Map Top Margin\";s:11:\"description\";s:105:\"This is only applied to google maps that are not 100% width. It controls the distance to menu/page title.\";s:2:\"id\";s:14:\"gmap_topmargin\";s:7:\"default\";s:4:\"55px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--gmap_topmargin\";s:7:\"element\";s:17:\".avada-google-map\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:4:\"55px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:22:\"gmap_dimensions[width]\";i:1;s:3:\"===\";i:2;s:4:\"100%\";}}}}}}}s:14:\"map_zoom_level\";a:8:{s:5:\"label\";s:14:\"Map Zoom Level\";s:11:\"description\";s:143:\"Choose the zoom level for the map. 0 corresponds to a map of the earth fully zoomed out, and larger zoom levels zoom in at a higher resolution.\";s:2:\"id\";s:14:\"map_zoom_level\";s:7:\"default\";i:8;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:0;s:3:\"max\";i:22;s:4:\"step\";i:1;}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:7:\"map_pin\";a:7:{s:5:\"label\";s:11:\"Address Pin\";s:11:\"description\";s:46:\"Turn on to display the google map address pin.\";s:2:\"id\";s:7:\"map_pin\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_pin_animation\";a:7:{s:5:\"label\";s:21:\"Address Pin Animation\";s:11:\"description\";s:65:\"Turn on to enable address pin animation when the map first loads.\";s:2:\"id\";s:18:\"gmap_pin_animation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_popup\";a:7:{s:5:\"label\";s:18:\"Map Popup On Click\";s:11:\"description\";s:97:\"Turn on to require a click to display the popup graphic with address info for the pin on the map.\";s:2:\"id\";s:9:\"map_popup\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_scrollwheel\";a:7:{s:5:\"label\";s:25:\"Map Zoom With Scrollwheel\";s:11:\"description\";s:189:\"Turn on to enable zooming using the mouse scroll wheel. Use Cmd/Ctrl key + scroll to zoom. If set to no, zooming through two-finger movements (cooperative gesture handling) will be enabled.\";s:2:\"id\";s:15:\"map_scrollwheel\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_scale\";a:7:{s:5:\"label\";s:9:\"Map Scale\";s:11:\"description\";s:40:\"Turn on to display the google map scale.\";s:2:\"id\";s:9:\"map_scale\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_zoomcontrol\";a:7:{s:5:\"label\";s:32:\"Map Zoom &amp; Pan Control Icons\";s:11:\"description\";s:69:\"Turn on to display the google map zoom control and pan control icons.\";s:2:\"id\";s:15:\"map_zoomcontrol\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:26:\"google_map_disabled_note_1\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:26:\"google_map_disabled_note_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:38:\"google_map_styling_important_note_info\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:278:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the google map that displays on the \"Contact\" page template, they do not control the google map element.  These options are only available for the JS API type.</div>\";s:2:\"id\";s:38:\"google_map_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}}s:11:\"map_styling\";a:8:{s:5:\"label\";s:22:\"Select the Map Styling\";s:11:\"description\";s:133:\"Controls the google map styles. Default is google style, Theme is our style, or choose Custom to select your own style options below.\";s:2:\"id\";s:11:\"map_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"default\";s:15:\"Default Styling\";s:5:\"theme\";s:13:\"Theme Styling\";s:6:\"custom\";s:14:\"Custom Styling\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:17:\"map_overlay_color\";a:7:{s:5:\"label\";s:17:\"Map Overlay Color\";s:11:\"description\";s:137:\"Custom styling setting only. Pick any overlaying color for the map besides pure black or white. Works best with &quot;roadmap&quot; type.\";s:2:\"id\";s:17:\"map_overlay_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_styling\";a:8:{s:5:\"label\";s:16:\"Info Box Styling\";s:11:\"description\";s:66:\"Custom styling setting only. Controls the styling of the info box.\";s:2:\"id\";s:19:\"map_infobox_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:7:\"default\";s:15:\"Default Infobox\";s:6:\"custom\";s:14:\"Custom Infobox\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_content\";a:7:{s:5:\"label\";s:16:\"Info Box Content\";s:11:\"description\";s:207:\"Custom styling setting only. Type in custom info box content to replace the default address string. For multiple addresses, separate info box contents by using the | symbol. ex: InfoBox 1|InfoBox 2|InfoBox 3\";s:2:\"id\";s:19:\"map_infobox_content\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"map_infobox_bg_color\";a:7:{s:5:\"label\";s:25:\"Info Box Background Color\";s:11:\"description\";s:68:\"Custom styling setting only. Controls the info box background color.\";s:2:\"id\";s:20:\"map_infobox_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_infobox_text_color\";a:7:{s:5:\"label\";s:19:\"Info Box Text Color\";s:11:\"description\";s:62:\"Custom styling setting only. Controls the info box text color.\";s:2:\"id\";s:22:\"map_infobox_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_custom_marker_icon\";a:7:{s:5:\"label\";s:18:\"Custom Marker Icon\";s:11:\"description\";s:228:\"Custom styling setting only. Use full image urls for custom marker icons or input &quot;theme&quot; for our custom marker. For multiple addresses, separate icons by using the | symbol or use one for all. ex: Icon 1|Icon 2|Icon 3\";s:2:\"id\";s:22:\"map_custom_marker_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:21:\"search_filter_results\";a:6:{s:5:\"label\";s:31:\"Limit Search Results Post Types\";s:11:\"description\";s:74:\"Turn on to limit the search results to specific post types you can choose.\";s:2:\"id\";s:21:\"search_filter_results\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:14:\"search_content\";a:9:{s:5:\"label\";s:22:\"Search Results Content\";s:11:\"description\";s:61:\"Controls the type of content that displays in search results.\";s:2:\"id\";s:14:\"search_content\";s:7:\"default\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:4:\"post\";s:5:\"Posts\";s:4:\"page\";s:5:\"Pages\";s:15:\"avada_portfolio\";s:15:\"Portfolio Items\";s:9:\"avada_faq\";s:9:\"FAQ Items\";s:7:\"product\";s:20:\"WooCommerce Products\";s:12:\"tribe_events\";s:21:\"Events Calendar Posts\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_filter_results\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:27:\"search_limit_to_post_titles\";a:6:{s:5:\"label\";s:27:\"Limit Search to Post Titles\";s:11:\"description\";s:48:\"Turn on to limit the search to post titles only.\";s:2:\"id\";s:27:\"search_limit_to_post_titles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"search_form_design\";a:7:{s:5:\"label\";s:18:\"Search Form Design\";s:11:\"description\";s:40:\"Controls the design of the search forms.\";s:2:\"id\";s:18:\"search_form_design\";s:7:\"default\";s:5:\"clean\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"classic\";s:7:\"Classic\";s:5:\"clean\";s:5:\"Clean\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-search-form-$\";s:12:\"remove_attrs\";a:2:{i:0;s:26:\"fusion-search-form-classic\";i:1;s:24:\"fusion-search-form-clean\";}}}}s:11:\"live_search\";a:7:{s:5:\"label\";s:18:\"Enable Live Search\";s:11:\"description\";s:90:\"Turn on to enable live search results on menu search field and other fitting search forms.\";s:2:\"id\";s:11:\"live_search\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:22:\"searchform_live_search\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:11:\"live_search\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:26:\"live_search_min_char_count\";a:9:{s:5:\"label\";s:35:\"Live Search Minimal Character Count\";s:11:\"description\";s:324:\"Set the minimal character count to trigger the live search.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"live_search_min_char_count\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"searchform_live_search_min_char_count\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:14:\"min_char_count\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:28:\"live_search_results_per_page\";a:8:{s:5:\"label\";s:27:\"Live Search Number of Posts\";s:11:\"description\";s:348:\"Controls the number of posts that should be displayed as search result suggestions.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:28:\"live_search_results_per_page\";s:7:\"default\";s:3:\"100\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:2:\"10\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:8:\"per_page\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"live_search_results_height\";a:8:{s:5:\"label\";s:36:\"Live Search Results Container Height\";s:11:\"description\";s:345:\"Controls the height of the container in which the search results will be listed.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"live_search_results_height\";s:7:\"default\";s:3:\"250\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"5\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--live_search_results_height\";s:7:\"element\";s:22:\".fusion-search-results\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"live_search_display_featured_image\";a:7:{s:5:\"label\";s:34:\"Live Search Display Featured Image\";s:11:\"description\";s:330:\"Turn on to display the featured image of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:34:\"live_search_display_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:13:\"show_feat_img\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:29:\"live_search_display_post_type\";a:7:{s:5:\"label\";s:29:\"Live Search Display Post Type\";s:11:\"description\";s:325:\"Turn on to display the post type of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:29:\"live_search_display_post_type\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:17:\"display_post_type\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:44:\"search_page_options_template_override_notice\";a:5:{s:2:\"id\";s:44:\"search_page_options_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:35:\"search_page_options_template_notice\";a:5:{s:2:\"id\";s:35:\"search_page_options_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"search_layout\";a:8:{s:5:\"label\";s:21:\"Search Results Layout\";s:11:\"description\";s:48:\"Controls the layout for the search results page.\";s:2:\"id\";s:13:\"search_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:6:{s:5:\"large\";s:5:\"Large\";s:6:\"medium\";s:6:\"Medium\";s:15:\"large alternate\";s:15:\"Large Alternate\";s:16:\"medium alternate\";s:16:\"Medium Alternate\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:8:\"Timeline\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"search_results_per_page\";a:8:{s:5:\"label\";s:33:\"Number of Search Results Per Page\";s:11:\"description\";s:47:\"Controls the number of search results per page.\";s:2:\"id\";s:23:\"search_results_per_page\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_pagination_type\";a:8:{s:5:\"label\";s:22:\"Search Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for the search results page.\";s:2:\"id\";s:22:\"search_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"search_grid_columns\";a:10:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:48:\"Controls the number of columns for grid layouts.\";s:2:\"id\";s:19:\"search_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_grid_column_spacing\";a:10:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:47:\"Controls the column spacing for search results.\";s:2:\"id\";s:26:\"search_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--search_grid_column_spacing\";s:7:\"element\";s:24:\".fusion-blog-layout-grid\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:21:\"search_content_length\";a:8:{s:5:\"label\";s:22:\"Search Content Display\";s:11:\"description\";s:104:\"Controls if the search results content displays as an excerpt or full content or is completely disabled.\";s:2:\"id\";s:21:\"search_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:7:\"excerpt\";s:7:\"Excerpt\";s:12:\"full_content\";s:12:\"Full Content\";s:7:\"no_text\";s:7:\"No Text\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:21:\"search_excerpt_length\";a:9:{s:5:\"label\";s:21:\"Search Excerpt Length\";s:11:\"description\";s:76:\"Controls the number of words (or characters) in the search results excerpts.\";s:2:\"id\";s:21:\"search_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"search_strip_html_excerpt\";a:8:{s:5:\"label\";s:30:\"Search Strip HTML from Excerpt\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for the search results page.\";s:2:\"id\";s:25:\"search_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_featured_images\";a:7:{s:5:\"label\";s:34:\"Featured Images for Search Results\";s:11:\"description\";s:54:\"Turn on to display featured images for search results.\";s:2:\"id\";s:22:\"search_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"search_meta\";a:9:{s:5:\"label\";s:19:\"Search Results Meta\";s:11:\"description\";s:84:\"Select the post meta data you want to be displayed in the individual search results.\";s:2:\"id\";s:11:\"search_meta\";s:7:\"default\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:5:\"multi\";b:1;s:7:\"choices\";a:7:{s:6:\"author\";s:6:\"Author\";s:4:\"date\";s:4:\"Date\";s:10:\"categories\";s:10:\"Categories\";s:4:\"tags\";s:4:\"Tags\";s:8:\"comments\";s:8:\"Comments\";s:9:\"read_more\";s:14:\"Read More Link\";s:9:\"post_type\";s:9:\"Post Type\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_new_search_position\";a:8:{s:5:\"label\";s:21:\"Search Field Position\";s:11:\"description\";s:67:\"Controls the position of the search bar on the search results page.\";s:2:\"id\";s:26:\"search_new_search_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"top\";s:13:\"Above Results\";s:6:\"bottom\";s:13:\"Below Results\";s:6:\"hidden\";s:4:\"Hide\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:12:\"privacy_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:502:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options in this section will help to easier comply with data privacy regulations, like the European GDPR. When the \"Privacy Consent\" option is used, Avada will create a cookie with the name <b>\"privacy_embeds\"</b> on user clients browsing your site to manage and store user consent to load the different third party embeds and tracking scripts. You may want to add information about this cookie to your privacy page.</div>\";s:2:\"id\";s:12:\"privacy_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"gfonts_load_method\";a:7:{s:2:\"id\";s:18:\"gfonts_load_method\";s:5:\"label\";s:36:\"Google &amp; Font Awesome Fonts Mode\";s:11:\"description\";s:184:\"When set to &quot;Local&quot;, the Google and Font Awesome fonts set in Global Options will be downloaded to your server. Set to &quot;CDN&quot; to use the Google and FontAwesome CDNs.\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:3:\"cdn\";s:7:\"choices\";a:2:{s:5:\"local\";s:5:\"Local\";s:3:\"cdn\";s:3:\"CDN\";}s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_embeds\";a:6:{s:5:\"label\";s:15:\"Privacy Consent\";s:11:\"description\";s:79:\"Turn on to prevent embeds and scripts from loading until user consent is given.\";s:2:\"id\";s:14:\"privacy_embeds\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_expiry\";a:8:{s:5:\"label\";s:33:\"Privacy Consent Cookie Expiration\";s:11:\"description\";s:68:\"Controls how long the consent cookie should be stored for.  In days.\";s:2:\"id\";s:14:\"privacy_expiry\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"366\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"privacy_embed_types\";a:9:{s:5:\"label\";s:21:\"Privacy Consent Types\";s:11:\"description\";s:67:\"Select the types of embeds which you would like to require consent.\";s:2:\"id\";s:19:\"privacy_embed_types\";s:7:\"default\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"privacy_embed_defaults\";a:9:{s:5:\"label\";s:30:\"Privacy Selected Consent Types\";s:11:\"description\";s:138:\"Select the types of embeds which you would like to have checked by default.  This applies to both the privacy bar and the privacy element.\";s:2:\"id\";s:22:\"privacy_embed_defaults\";s:7:\"default\";a:0:{}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"privacy_bg_color\";a:7:{s:5:\"label\";s:36:\"Privacy Placeholder Background Color\";s:11:\"description\";s:59:\"Controls the background color for the privacy placeholders.\";s:2:\"id\";s:16:\"privacy_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--privacy_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:13:\"privacy_color\";a:7:{s:5:\"label\";s:30:\"Privacy Placeholder Text Color\";s:11:\"description\";s:51:\"Controls the text color for the embed placeholders.\";s:2:\"id\";s:13:\"privacy_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"--privacy_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:11:\"privacy_bar\";a:5:{s:5:\"label\";s:11:\"Privacy Bar\";s:11:\"description\";s:58:\"Turn on to enable a privacy bar at the bottom of the page.\";s:2:\"id\";s:11:\"privacy_bar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:19:\"privacy_bar_padding\";a:8:{s:5:\"label\";s:19:\"Privacy Bar Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the privacy bar area.\";s:2:\"id\";s:19:\"privacy_bar_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"15px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:25:\"--privacy_bar_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:28:\"--privacy_bar_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:26:\"--privacy_bar_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:27:\"--privacy_bar_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:20:\"privacy_bar_bg_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Background Color\";s:11:\"description\";s:50:\"Controls the background color for the privacy bar.\";s:2:\"id\";s:20:\"privacy_bar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--privacy_bar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"privacy_bar_font_size\";a:8:{s:5:\"label\";s:21:\"Privacy Bar Font Size\";s:11:\"description\";s:51:\"Controls the font size for the privacy bar content.\";s:2:\"id\";s:21:\"privacy_bar_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--privacy_bar_font_size\";}}}s:17:\"privacy_bar_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Text Color\";s:11:\"description\";s:52:\"Controls the text color for the privacy bar content.\";s:2:\"id\";s:17:\"privacy_bar_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--privacy_bar_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"privacy_bar_link_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Link Color\";s:11:\"description\";s:44:\"Controls the link color for the privacy bar.\";s:2:\"id\";s:22:\"privacy_bar_link_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--privacy_bar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"privacy_bar_link_hover_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Link Hover Color\";s:11:\"description\";s:50:\"Controls the link hover color for the privacy bar.\";s:2:\"id\";s:28:\"privacy_bar_link_hover_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--privacy_bar_link_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"privacy_bar_text\";a:7:{s:5:\"label\";s:16:\"Privacy Bar Text\";s:11:\"description\";s:59:\"Enter the text which you want to appear on the privacy bar.\";s:2:\"id\";s:16:\"privacy_bar_text\";s:7:\"default\";s:51:\"This website uses cookies and third party services.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_text\";a:7:{s:5:\"label\";s:23:\"Privacy Bar Button Text\";s:11:\"description\";s:56:\"Controls the button text for the privacy bar acceptance.\";s:2:\"id\";s:23:\"privacy_bar_button_text\";s:7:\"default\";s:2:\"OK\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_button_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_save\";a:7:{s:5:\"label\";s:32:\"Privacy Bar Button Save On Click\";s:11:\"description\";s:201:\"If enabled, when the button is clicked it will save the default consent selection.  If disabled the button will only save the preferences after a checkbox has been changed (bar will be hidden however).\";s:2:\"id\";s:23:\"privacy_bar_button_save\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:16:\"avadaPrivacyVars\";s:2:\"id\";s:6:\"button\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"privacy_bar_more\";a:7:{s:5:\"label\";s:20:\"Privacy Bar Settings\";s:11:\"description\";s:132:\"If enabled, a settings section will be added to show more information and to provide checkboxes for tracking and third party embeds.\";s:2:\"id\";s:16:\"privacy_bar_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_more_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:21:\"privacy_bar_more_text\";a:7:{s:5:\"label\";s:25:\"Privacy Bar Settings Text\";s:11:\"description\";s:52:\"Controls the link text for the privacy bar settings.\";s:2:\"id\";s:21:\"privacy_bar_more_text\";s:7:\"default\";s:8:\"Settings\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:29:\"privacy_bar_more_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_update_text\";a:7:{s:5:\"label\";s:30:\"Privacy Bar Update Button Text\";s:11:\"description\";s:74:\"Controls the button text for the privacy bar after a checkbox has changed.\";s:2:\"id\";s:23:\"privacy_bar_update_text\";s:7:\"default\";s:15:\"Update Settings\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:2;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_update_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:30:\"privacy_bar_headings_font_size\";a:7:{s:5:\"label\";s:29:\"Privacy Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the privacy bar heading text.\";s:2:\"id\";s:30:\"privacy_bar_headings_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}s:26:\"privacy_bar_headings_color\";a:7:{s:5:\"label\";s:26:\"Privacy Bar Headings Color\";s:11:\"description\";s:56:\"Controls the text color of the privacy bar heading font.\";s:2:\"id\";s:26:\"privacy_bar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--privacy_bar_headings_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:4:\"type\";a:5:{s:2:\"id\";s:4:\"type\";s:4:\"type\";s:6:\"select\";s:11:\"description\";s:45:\"Select the type of cookie/content to display.\";s:7:\"default\";s:6:\"custom\";s:7:\"choices\";a:3:{s:6:\"custom\";s:6:\"Custom\";s:8:\"tracking\";s:16:\"Tracking Cookies\";s:6:\"embeds\";s:18:\"Third Party Embeds\";}}s:5:\"title\";a:4:{s:2:\"id\";s:5:\"title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Title for the content\";s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:2:\"id\";s:11:\"description\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:27:\"Description for the content\";s:7:\"default\";s:0:\"\";}s:18:\"privacy_bar_reject\";a:7:{s:5:\"label\";s:25:\"Privacy Bar Reject Button\";s:11:\"description\";s:91:\"If enabled, the privacy bar will be extended with a button that allows users to reject all.\";s:2:\"id\";s:18:\"privacy_bar_reject\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:26:\"privacy_bar_reject_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_reject_text\";a:7:{s:5:\"label\";s:30:\"Privacy Bar Reject Button Text\";s:11:\"description\";s:57:\"Controls the link text for the privacy bar reject button.\";s:2:\"id\";s:23:\"privacy_bar_reject_text\";s:7:\"default\";s:6:\"Reject\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:18:\"privacy_bar_reject\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:2;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_reject_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:16:\"sidenav_behavior\";a:7:{s:5:\"label\";s:24:\"Side Navigation Behavior\";s:11:\"description\";s:89:\"Controls if the child pages show on click or hover for the side navigation page template.\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"default\";s:5:\"hover\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"hover\";s:5:\"Hover\";s:5:\"click\";s:5:\"Click\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:16:\"avadaSideNavVars\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"side_nav_font_size\";a:7:{s:5:\"label\";s:25:\"Side Navigation Font Size\";s:11:\"description\";s:86:\"Controls the font size for the menu text when using the side navigation page template.\";s:2:\"id\";s:18:\"side_nav_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--side_nav_font_size\";s:7:\"element\";s:9:\".side-nav\";}}}s:10:\"post_views\";a:6:{s:5:\"label\";s:18:\"Post Views Counter\";s:11:\"description\";s:214:\"Set the method to update the post views, or disable them entirely. &quot;Page Load&quot; option will update using PHP when a page is retrieved. &quot;Ajax&quot; will send an additional request after the page loads.\";s:2:\"id\";s:10:\"post_views\";s:7:\"default\";s:9:\"page_load\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:9:\"page_load\";s:9:\"Page Load\";s:4:\"ajax\";s:4:\"Ajax\";s:8:\"disabled\";s:8:\"Disabled\";}}s:19:\"post_views_counting\";a:6:{s:5:\"label\";s:29:\"Post Views User Type Counting\";s:11:\"description\";s:62:\"Select which types of users will increase post views on visit.\";s:2:\"id\";s:19:\"post_views_counting\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:3:\"all\";s:3:\"All\";s:10:\"logged_out\";s:10:\"Logged Out\";s:10:\"non_admins\";s:10:\"Non-Admins\";}}s:26:\"featured_image_placeholder\";a:6:{s:5:\"label\";s:18:\"Image Placeholders\";s:11:\"description\";s:175:\"Turn on to display a placeholder image for posts that do not have a featured image. This allows the post to display on portfolio archives and related posts/projects carousels.\";s:2:\"id\";s:26:\"featured_image_placeholder\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:5:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";s:11:\"js_callback\";a:1:{i:0;s:17:\"noPortfolioOnPage\";}}}}s:12:\"excerpt_base\";a:6:{s:5:\"label\";s:24:\"Basis for Excerpt Length\";s:11:\"description\";s:63:\"Controls if the excerpt length is based on words or characters.\";s:2:\"id\";s:12:\"excerpt_base\";s:7:\"default\";s:5:\"words\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"words\";s:5:\"Words\";s:10:\"characters\";s:10:\"Characters\";}}s:16:\"disable_excerpts\";a:5:{s:5:\"label\";s:32:\"Display Excerpt Read More Symbol\";s:11:\"description\";s:72:\"Turn on to display the read more symbol on excerpts throughout the site.\";s:2:\"id\";s:16:\"disable_excerpts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:24:\"excerpt_read_more_symbol\";a:6:{s:5:\"label\";s:24:\"Excerpt Read More Symbol\";s:11:\"description\";s:94:\"Set the excerpt read more symbol, HTML code is allowed. If left empty it will be set to [...].\";s:2:\"id\";s:24:\"excerpt_read_more_symbol\";s:7:\"default\";s:5:\"[...]\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"link_read_more\";a:6:{s:5:\"label\";s:44:\"Make Excerpt Symbol Link to Single Post Page\";s:11:\"description\";s:78:\"Turn on to have the read more symbol on excerpts link to the single post page.\";s:2:\"id\";s:14:\"link_read_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:12:\"avatar_shape\";a:7:{s:5:\"label\";s:12:\"Avatar Shape\";s:11:\"description\";s:72:\"Set the shape for Avatars used in comments, author info and other areas.\";s:2:\"id\";s:12:\"avatar_shape\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"square\";s:6:\"Square\";s:6:\"circle\";s:6:\"Circle\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:15:\"fusion-avatar-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-avatar-square\";i:1;s:20:\"fusion-avatar-circle\";}}}}s:14:\"comments_pages\";a:5:{s:5:\"label\";s:17:\"Comments on Pages\";s:11:\"description\";s:43:\"Turn on to allow comments on regular pages.\";s:2:\"id\";s:14:\"comments_pages\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"featured_images_pages\";a:6:{s:5:\"label\";s:24:\"Featured Images on Pages\";s:11:\"description\";s:52:\"Turn on to display featured images on regular pages.\";s:2:\"id\";s:21:\"featured_images_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"featured_images_pages_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:21:\"nofollow_social_links\";a:6:{s:5:\"label\";s:40:\"Add &quot;nofollow&quot; to social links\";s:11:\"description\";s:66:\"Turn on to add &quot;nofollow&quot; attribute to all social links.\";s:2:\"id\";s:21:\"nofollow_social_links\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"social_icons_new\";a:6:{s:5:\"label\";s:33:\"Open Social Icons in a New Window\";s:11:\"description\";s:54:\"Turn on to allow social icons to open in a new window.\";s:2:\"id\";s:16:\"social_icons_new\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"totop_position\";a:7:{s:5:\"label\";s:21:\"ToTop Button Position\";s:11:\"description\";s:97:\"Controls the position of the ToTop button. On mobiles also non-floating layouts will be floating.\";s:2:\"id\";s:14:\"totop_position\";s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"left\";s:4:\"Left\";s:13:\"left_floating\";s:13:\"Left Floating\";s:5:\"right\";s:5:\"Right\";s:14:\"right_floating\";s:14:\"Right Floating\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:14:\"totop_position\";s:7:\"trigger\";a:1:{i:0;s:18:\"updateToTopPostion\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"totop_border_radius\";a:7:{s:5:\"label\";s:19:\"ToTop Border Radius\";s:11:\"description\";s:128:\"Controls the border radius of the ToTop button. For non-floating layouts the border radius will only apply to the upper corners.\";s:2:\"id\";s:19:\"totop_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--totop_border_radius\";s:7:\"element\";s:6:\"#toTop\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"totop_scroll_down_only\";a:6:{s:5:\"label\";s:30:\"ToTop Show on Scroll Down Only\";s:11:\"description\";s:108:\"Turn on to show the ToTop button on scroll down only. Otherwise it will always show if the page is scrolled.\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"custom_scrollbar\";a:6:{s:5:\"label\";s:16:\"Custom Scrollbar\";s:11:\"description\";s:132:\"Turn on if you want to change the background and handle color of the scrollbar. Styling and support varies depending on the browser.\";s:2:\"id\";s:16:\"custom_scrollbar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:10:\"awb-scroll\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"scrollbar_background\";a:7:{s:5:\"label\";s:20:\"Scrollbar Background\";s:11:\"description\";s:48:\"Controls the background color for the scrollbar.\";s:2:\"id\";s:20:\"scrollbar_background\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--scrollbar_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:16:\"scrollbar_handle\";a:7:{s:5:\"label\";s:22:\"Scrollbar Handle Color\";s:11:\"description\";s:44:\"Controls the color for the scrollbar handle.\";s:2:\"id\";s:16:\"scrollbar_handle\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--scrollbar_handle\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:8:\"faq_slug\";a:5:{s:5:\"label\";s:8:\"FAQ Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:8:\"faq_slug\";s:7:\"default\";s:9:\"faq-items\";s:4:\"type\";s:4:\"text\";}s:20:\"related_posts_layout\";a:7:{s:5:\"label\";s:31:\"Related Posts / Projects Layout\";s:11:\"description\";s:65:\"Controls the layout style for related posts and related projects.\";s:2:\"id\";s:20:\"related_posts_layout\";s:7:\"default\";s:17:\"title_on_rollover\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:17:\"title_on_rollover\";s:17:\"Title on rollover\";s:17:\"title_below_image\";s:17:\"Title below image\";}s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:20:\"number_related_posts\";a:7:{s:5:\"label\";s:34:\"Number of Related Posts / Projects\";s:11:\"description\";s:80:\"Controls the number of related posts and projects that display on a single post.\";s:2:\"id\";s:20:\"number_related_posts\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:28:\"number_related_posts_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:21:\"related_posts_columns\";a:8:{s:5:\"label\";s:40:\"Related Posts / Projects Maximum Columns\";s:11:\"description\";s:73:\"Controls the number of columns for the related posts and projects layout.\";s:2:\"id\";s:21:\"related_posts_columns\";s:7:\"default\";i:4;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:15:\"partial_refresh\";a:1:{s:29:\"related_posts_columns_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--related_posts_columns\";}}}s:28:\"related_posts_column_spacing\";a:8:{s:5:\"label\";s:39:\"Related Posts / Projects Column Spacing\";s:11:\"description\";s:82:\"Controls the amount of spacing between columns for the related posts and projects.\";s:2:\"id\";s:28:\"related_posts_column_spacing\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:15:\"partial_refresh\";a:1:{s:36:\"related_posts_column_spacing_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--related_posts_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:24:\"related_posts_image_size\";a:7:{s:5:\"label\";s:35:\"Related Posts / Projects Image Size\";s:11:\"description\";s:216:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for related posts and projects. IMPORTANT: Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:24:\"related_posts_image_size\";s:7:\"default\";s:7:\"cropped\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:5:\"Fixed\";s:4:\"full\";s:4:\"Auto\";}s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_image_size_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:22:\"related_posts_autoplay\";a:6:{s:5:\"label\";s:33:\"Related Posts / Projects Autoplay\";s:11:\"description\";s:59:\"Turn on to autoplay the related posts and project carousel.\";s:2:\"id\";s:22:\"related_posts_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:30:\"related_posts_autoplay_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_speed\";a:7:{s:5:\"label\";s:30:\"Related Posts / Projects Speed\";s:11:\"description\";s:78:\"Controls the speed of related posts and project carousel. ex: 1000 = 1 second.\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"default\";s:4:\"2500\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:18:\"fusionCarouselVars\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"related_posts_navigation\";a:6:{s:5:\"label\";s:40:\"Related Posts / Projects Show Navigation\";s:11:\"description\";s:53:\"Turn on to display navigation arrows on the carousel.\";s:2:\"id\";s:24:\"related_posts_navigation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_navigation_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_swipe\";a:6:{s:5:\"label\";s:37:\"Related Posts / Projects Mouse Scroll\";s:11:\"description\";s:53:\"Turn on to enable mouse drag control on the carousel.\";s:2:\"id\";s:19:\"related_posts_swipe\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:27:\"related_posts_swipe_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:25:\"related_posts_swipe_items\";a:7:{s:5:\"label\";s:37:\"Related Posts / Projects Scroll Items\";s:11:\"description\";s:101:\"Controls the number of items that scroll at one time. Set to 0 to scroll the number of visible items.\";s:2:\"id\";s:25:\"related_posts_swipe_items\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"15\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:33:\"related_posts_swipe_items_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:14:\"image_rollover\";a:6:{s:5:\"label\";s:14:\"Image Rollover\";s:11:\"description\";s:78:\"Turn on to display the rollover graphic on blog and portfolio featured images.\";s:2:\"id\";s:14:\"image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:12:\"full_refresh\";a:1:{s:29:\"image_rollover_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:24:\"image_rollover_direction\";a:8:{s:5:\"label\";s:24:\"Image Rollover Direction\";s:11:\"description\";s:313:\"Controls the direction the rollover starts from.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"image_rollover_direction\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:4:\"fade\";s:4:\"Fade\";s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:3:\"top\";s:3:\"Top\";s:12:\"center_horiz\";s:17:\"Center Horizontal\";s:15:\"center_vertical\";s:15:\"Center Vertical\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-image-rollover-direction-$\";s:12:\"remove_attrs\";a:7:{i:0;s:35:\"avada-image-rollover-direction-fade\";i:1;s:35:\"avada-image-rollover-direction-left\";i:2;s:36:\"avada-image-rollover-direction-right\";i:3;s:37:\"avada-image-rollover-direction-bottom\";i:4;s:34:\"avada-image-rollover-direction-top\";i:5;s:43:\"avada-image-rollover-direction-center_horiz\";i:6;s:46:\"avada-image-rollover-direction-center_vertical\";}}}}s:24:\"image_rollover_icon_size\";a:7:{s:5:\"label\";s:29:\"Image Rollover Icon Font Size\";s:11:\"description\";s:40:\"Controls the size of the rollover icons.\";s:2:\"id\";s:24:\"image_rollover_icon_size\";s:7:\"default\";s:4:\"15px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--image_rollover_icon_size\";}}}s:20:\"image_rollover_icons\";a:8:{s:5:\"label\";s:20:\"Image Rollover Icons\";s:11:\"description\";s:27:\"Choose which icons display.\";s:2:\"id\";s:20:\"image_rollover_icons\";s:7:\"default\";s:8:\"linkzoom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:8:\"linkzoom\";s:11:\"Link + Zoom\";s:4:\"link\";s:4:\"Link\";s:4:\"zoom\";s:4:\"Zoom\";s:2:\"no\";s:8:\"No Icons\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:12:\"full_refresh\";a:1:{s:28:\"image_rollover_icons_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:20:\"title_image_rollover\";a:7:{s:5:\"label\";s:20:\"Image Rollover Title\";s:11:\"description\";s:321:\"Turn on to display the post title in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:20:\"title_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:28:\"title_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:19:\"cats_image_rollover\";a:7:{s:5:\"label\";s:25:\"Image Rollover Categories\";s:11:\"description\";s:326:\"Turn on to display the post categories in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:19:\"cats_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:27:\"cats_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:26:\"icon_circle_image_rollover\";a:7:{s:5:\"label\";s:26:\"Image Rollover Icon Circle\";s:11:\"description\";s:333:\"Turn on to display the icon background circle in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:26:\"icon_circle_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-image-rollover-circle-yes\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-image-rollover-circle-no\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"image_gradient_top_color\";a:7:{s:5:\"label\";s:33:\"Image Rollover Gradient Top Color\";s:11:\"description\";s:321:\"Controls the top color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:24:\"image_gradient_top_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 20%))\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--image_gradient_top_color\";s:7:\"element\";s:21:\".fusion-image-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"image_gradient_bottom_color\";a:7:{s:5:\"label\";s:36:\"Image Rollover Gradient Bottom Color\";s:11:\"description\";s:324:\"Controls the bottom color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:27:\"image_gradient_bottom_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:29:\"--image_gradient_bottom_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_text_color\";a:7:{s:5:\"label\";s:28:\"Image Rollover Element Color\";s:11:\"description\";s:337:\"Controls the color of image rollover text and icon circular backgrounds.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:25:\"image_rollover_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--image_rollover_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_icon_color\";a:7:{s:5:\"label\";s:25:\"Image Rollover Icon Color\";s:11:\"description\";s:319:\"Controls the color of the icons in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">This is a dependent option that always stays visible because other options can utilize it.</a></span>\";s:2:\"id\";s:25:\"image_rollover_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--image_rollover_icon_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"pagination_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:222:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all pagination throughout the site, including the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:30:\"pagination_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"pagination_sizing\";a:7:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:17:\"Pagination Sizing\";s:11:\"description\";s:63:\"Set on which dimension the pagination box size should be based.\";s:2:\"id\";s:17:\"pagination_sizing\";s:7:\"default\";s:12:\"width_height\";s:7:\"choices\";a:2:{s:12:\"width_height\";s:18:\"Width/Height Based\";s:7:\"padding\";s:13:\"Padding Based\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"avada-has-pagination-$\";s:12:\"remove_attrs\";a:2:{i:0;s:28:\"avada-has-pagination-padding\";i:1;s:33:\"avada-has-pagination-width_height\";}}}}s:23:\"pagination_width_height\";a:8:{s:5:\"label\";s:27:\"Pagination Box Width/Height\";s:11:\"description\";s:58:\"Controls the width and height of the displayed page links.\";s:2:\"id\";s:23:\"pagination_width_height\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"5\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_width_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"pagination_box_padding\";a:8:{s:5:\"label\";s:22:\"Pagination Box Padding\";s:11:\"description\";s:49:\"Controls the padding inside the pagination boxes.\";s:2:\"id\";s:22:\"pagination_box_padding\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:30:\"--pagination_box_padding-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:31:\"--pagination_box_padding-height\";s:6:\"choice\";s:6:\"height\";}}}s:23:\"pagination_border_width\";a:7:{s:5:\"label\";s:23:\"Pagination Border Width\";s:11:\"description\";s:54:\"Controls the border width of the displayed page links.\";s:2:\"id\";s:23:\"pagination_border_width\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"25\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_border_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:24:\"pagination_border_radius\";a:7:{s:5:\"label\";s:24:\"Pagination Border Radius\";s:11:\"description\";s:125:\"Controls the border radius of the displayed page links. Values of half the overall width or higher will yield circular links.\";s:2:\"id\";s:24:\"pagination_border_radius\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--pagination_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"pagination_text_display\";a:6:{s:5:\"label\";s:23:\"Pagination Text Display\";s:11:\"description\";s:54:\"Turn on to display the &quot;Previous/Next&quot; text.\";s:2:\"id\";s:23:\"pagination_text_display\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"fusion-show-pagination-text\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"pagination_font_size\";a:6:{s:5:\"label\";s:20:\"Pagination Font Size\";s:11:\"description\";s:41:\"Controls the size of the pagination text.\";s:2:\"id\";s:20:\"pagination_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--pagination_font_size\";}}}s:16:\"pagination_range\";a:7:{s:5:\"label\";s:16:\"Pagination Range\";s:11:\"description\";s:75:\"Controls the number of page links displayed left and right of current page.\";s:2:\"id\";s:16:\"pagination_range\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}s:26:\"pagination_start_end_range\";a:7:{s:5:\"label\";s:28:\"Pagination Start / End Range\";s:11:\"description\";s:86:\"Controls the number of page links displayed at the start and at the end of pagination.\";s:2:\"id\";s:26:\"pagination_start_end_range\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:34:\"pagination_start_end_range_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}s:35:\"gridbox_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:302:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Grid Box Styling global options that apply to grid boxes throughout the site; blog grid and timeline, portfolio boxed layout and WooCommerce boxes. Blog / Portfolio elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"timeline_bg_color\";a:6:{s:5:\"label\";s:14:\"Grid Box Color\";s:11:\"description\";s:49:\"Controls the background color for the grid boxes.\";s:2:\"id\";s:17:\"timeline_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:19:\"--timeline_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:36:\"--timeline_bg_color-20px-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:4:\"20px\";}}}i:2;a:2:{s:4:\"name\";s:35:\"--timeline_bg_color-not-transparent\";s:8:\"callback\";a:2:{i:0;s:25:\"get_non_transparent_color\";i:1;s:0:\"\";}}}}s:14:\"timeline_color\";a:7:{s:5:\"label\";s:18:\"Grid Element Color\";s:11:\"description\";s:83:\"Controls the color of borders/date box/timeline dots and arrows for the grid boxes.\";s:2:\"id\";s:14:\"timeline_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--timeline_color\";s:11:\"js_callback\";a:1:{i:0;s:21:\"timeLineColorCallback\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-has-transparent-timeline_color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"grid_separator_style_type\";a:7:{s:5:\"label\";s:20:\"Grid Separator Style\";s:11:\"description\";s:229:\"Controls the line style of grid separators. <strong>NOTE:</strong> For blog and portfolio grids at least one meta data field must be enabled and excerpt or full content must be shown in order that the separator will be displayed.\";s:2:\"id\";s:25:\"grid_separator_style_type\";s:7:\"default\";s:12:\"double|solid\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"none\";s:8:\"No Style\";s:12:\"single|solid\";s:19:\"Single Border Solid\";s:12:\"double|solid\";s:19:\"Double Border Solid\";s:13:\"single|dashed\";s:20:\"Single Border Dashed\";s:13:\"double|dashed\";s:20:\"Double Border Dashed\";s:13:\"single|dotted\";s:20:\"Single Border Dotted\";s:13:\"double|dotted\";s:20:\"Double Border Dotted\";s:6:\"shadow\";s:6:\"Shadow\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:1:{i:0;s:14:\"updateGridSeps\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_separator_color\";a:7:{s:5:\"label\";s:20:\"Grid Separator Color\";s:11:\"description\";s:49:\"Controls the line style color of grid separators.\";s:2:\"id\";s:20:\"grid_separator_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--grid_separator_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:36:\"avada-has-transparent-grid-sep-color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_masonry_heading\";a:4:{s:5:\"label\";s:15:\"Masonry Options\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"grid_masonry_heading\";s:4:\"type\";s:4:\"info\";}s:35:\"gridbox_masonry_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:285:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Masonry global options that apply to the Blog / Portfolio / Gallery elements in addition to Blog and Portfolio archives. Blog / Portfolio / Gallery elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_masonry_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"masonry_grid_ratio\";a:7:{s:5:\"label\";s:26:\"Masonry Image Aspect Ratio\";s:11:\"description\";s:286:\"Set the ratio to decide when an image should become landscape (ratio being width : height) and portrait (ratio being height : width). <strong>IMPORTANT:</strong> The value of \"1.0\" represents a special case, which will use the auto calculated ratios like in versions prior to Avada 5.5.\";s:2:\"id\";s:18:\"masonry_grid_ratio\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";d:1;s:3:\"max\";d:4;s:4:\"step\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"full_refresh\";a:1:{s:26:\"masonry_grid_ratio_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}s:20:\"masonry_width_double\";a:7:{s:5:\"label\";s:17:\"Masonry 2x2 Width\";s:11:\"description\";s:381:\"This option decides when a square 1x1 image should become 2x2. This will not apply to images that highly favor landscape or portrait layouts. <strong>IMPORTANT:</strong> There is a “Masonry Image Layout” setting for every image in the WP media library that allows you to manually set how an image will appear (1x1, landscape, portrait or 2x2), regardless of the original ratio.\";s:2:\"id\";s:20:\"masonry_width_double\";s:7:\"default\";s:4:\"2000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:200;s:3:\"max\";i:5120;s:4:\"step\";i:1;}s:12:\"full_refresh\";a:1:{s:28:\"masonry_width_double_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}s:23:\"enable_language_updates\";a:6:{s:5:\"label\";s:23:\"Enable Language Updates\";s:11:\"description\";s:165:\"If your site is using a language other than English, enabling this option will allow you to get updated language files for your locale as soon as they are available.\";s:2:\"id\";s:23:\"enable_language_updates\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"dependencies_status\";a:6:{s:5:\"label\";s:40:\"Avada&#039;s Option Network Dependencies\";s:11:\"description\";s:381:\"Avada&#039;s Option Network consists of Global Options, Page Options and Builder Options and each of them have dependent options ON by default. This means the only options you see are the only ones currently available for your selection. However, if you wish to disable this feature, simply turn this option off, and all dependencies will be disabled (requires save &amp; refresh).\";s:2:\"id\";s:19:\"dependencies_status\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_code_block_encoding\";a:6:{s:5:\"label\";s:19:\"Code Block Encoding\";s:11:\"description\";s:92:\"Turn on to enable encoding in the Avada Builder code block and syntax highlighting elements.\";s:2:\"id\";s:27:\"disable_code_block_encoding\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"disable_megamenu\";a:6:{s:5:\"label\";s:16:\"Legacy Mega Menu\";s:11:\"description\";s:48:\"Turn on to enable Avada&#039;s legacy mega menu.\";s:2:\"id\";s:16:\"disable_megamenu\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"theme_features_disable_megamenu\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"status_widget_areas\";a:6:{s:5:\"label\";s:19:\"Legacy Widget Areas\";s:11:\"description\";s:55:\"Turn on to enable the legacy widget areas of WordPress.\";s:2:\"id\";s:19:\"status_widget_areas\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"status_avada_studio\";a:6:{s:5:\"label\";s:12:\"Avada Studio\";s:11:\"description\";s:31:\"Turn on to enable Avada studio.\";s:2:\"id\";s:19:\"status_avada_studio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"avada_rev_styles\";a:7:{s:5:\"label\";s:34:\"Avada Styles For Slider Revolution\";s:11:\"description\";s:80:\"Turn on to enable the Avada styles and use the default Slider Revolution styles.\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:28:\"--avada-rev-image-shadow-top\";s:13:\"value_pattern\";s:91:\"url(\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/shadow-top.png\")\";s:7:\"element\";s:12:\".shadow-left\";}i:1;a:3:{s:4:\"name\";s:31:\"--avada-rev-image-shadow-bottom\";s:13:\"value_pattern\";s:94:\"url(\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/shadow-bottom.png\")\";s:7:\"element\";s:13:\".shadow-right\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-rev-slider-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:12:\"avadaRevVars\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"trigger\";a:2:{i:0;s:15:\"DestoryRevStyle\";i:1;s:12:\"AddRevStyles\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"avada_styles_dropdowns\";a:6:{s:5:\"label\";s:21:\"Avada Dropdown Styles\";s:11:\"description\";s:154:\"Turn on to enable the Avada styles for dropdown/select fields site wide. This should be done if you experience any issues with 3rd party plugin dropdowns.\";s:2:\"id\";s:22:\"avada_styles_dropdowns\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:21:\"avada-dropdown-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaSelectVars\";s:2:\"id\";s:15:\"avada_drop_down\";s:7:\"trigger\";a:2:{i:0;s:18:\"DestoryAvadaSelect\";i:1;s:14:\"AddAvadaSelect\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:27:\"disable_mobile_image_hovers\";a:6:{s:5:\"label\";s:37:\"CSS Image Hover Animations on Mobiles\";s:11:\"description\";s:56:\"Turn on to enable CSS image hover animations on mobiles.\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"avadaMobileImageVars\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"trigger\";a:1:{i:0;s:32:\"fusionDeactivateMobileImagHovers\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"status_yt\";a:7:{s:5:\"label\";s:19:\"YouTube API Scripts\";s:11:\"description\";s:38:\"Turn on to enable YouTube API scripts.\";s:2:\"id\";s:9:\"status_yt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:4:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"fusionBlogVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"status_vimeo\";a:7:{s:5:\"label\";s:17:\"Vimeo API Scripts\";s:11:\"description\";s:36:\"Turn on to enable Vimeo API scripts.\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:3:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"status_gmap\";a:6:{s:5:\"label\";s:18:\"Google Map Scripts\";s:11:\"description\";s:29:\"Turn on to enable google map.\";s:2:\"id\";s:11:\"status_gmap\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"status_totop\";a:7:{s:5:\"label\";s:12:\"ToTop Script\";s:11:\"description\";s:81:\"Turn on to enable the ToTop script which adds the scrolling to top functionality.\";s:2:\"id\";s:12:\"status_totop\";s:7:\"default\";s:7:\"desktop\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:18:\"desktop_and_mobile\";s:20:\"Desktop &amp; Mobile\";s:7:\"desktop\";s:7:\"Desktop\";s:6:\"mobile\";s:6:\"Mobile\";s:3:\"off\";s:3:\"Off\";}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:7:\"desktop\";i:1;s:16:\"does-not-contain\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:16:\"no-desktop-totop\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:12:\"status_totop\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"status_fontawesome\";a:8:{s:5:\"label\";s:12:\"Font Awesome\";s:11:\"description\";s:128:\"Choose which Font Awesome icon subsets you want to load. Note that Light subset can only be used if Font Awesome Pro is enabled.\";s:2:\"id\";s:18:\"status_fontawesome\";s:7:\"default\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:4:{s:3:\"fab\";s:6:\"Brands\";s:3:\"far\";s:7:\"Regular\";s:3:\"fas\";s:5:\"Solid\";s:3:\"fal\";s:5:\"Light\";}s:9:\"transport\";s:11:\"postMessage\";}s:28:\"fontawesome_v4_compatibility\";a:6:{s:5:\"label\";s:29:\"Font Awesome v4 Compatibility\";s:11:\"description\";s:62:\"Turn on to enable support for Font Awesome 4 icon code format.\";s:2:\"id\";s:28:\"fontawesome_v4_compatibility\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"status_fontawesome_pro\";a:6:{s:5:\"label\";s:16:\"Font Awesome Pro\";s:11:\"description\";s:260:\"Font Awesome Pro <a href=\"https://fontawesome.com/buy/standard\" target=\"_blank\" rel=\"noopener noreferrer\">license</a> is required and you need to <a href=\"https://fontawesome.com/account/cdn\" target=\"_blank\" rel=\"noopener noreferrer\">whitelist</a> your domain.\";s:2:\"id\";s:22:\"status_fontawesome_pro\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_outline\";a:6:{s:5:\"label\";s:12:\"CSS Outlines\";s:11:\"description\";s:86:\"Turn on to enable browser specific CSS element outlines used to improve accessibility.\";s:2:\"id\";s:14:\"status_outline\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"fusion-disable-outline\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"status_opengraph\";a:6:{s:5:\"label\";s:20:\"Open Graph Meta Tags\";s:11:\"description\";s:296:\"Turn on to enable open graph meta tags which are mainly used when sharing pages on social networking sites like Facebook. <strong>IMPORTANT:</strong> Some optimization plugins, like e.g. Yoast SEO, add their own implementation of this, and if you want to use that, this option should be disabled.\";s:2:\"id\";s:16:\"status_opengraph\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"disable_date_rich_snippet_pages\";a:6:{s:5:\"label\";s:13:\"Rich Snippets\";s:11:\"description\";s:172:\"Turn on to enable rich snippets data site wide. If set to &quot;On&quot;, you can also control individual items below. If set to &quot;Off&quot; all items will be disabled.\";s:2:\"id\";s:31:\"disable_date_rich_snippet_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:26:\"disable_rich_snippet_title\";a:7:{s:5:\"label\";s:19:\"Rich Snippets Title\";s:11:\"description\";s:52:\"Turn on to enable title rich snippet data site wide.\";s:2:\"id\";s:26:\"disable_rich_snippet_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_rich_snippet_author\";a:7:{s:5:\"label\";s:25:\"Rich Snippets Author Info\";s:11:\"description\";s:53:\"Turn on to enable author rich snippet data site wide.\";s:2:\"id\";s:27:\"disable_rich_snippet_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:25:\"disable_rich_snippet_date\";a:7:{s:5:\"label\";s:30:\"Rich Snippets Last Update Date\";s:11:\"description\";s:57:\"Turn on to enable udate date rich snippet data site wide.\";s:2:\"id\";s:25:\"disable_rich_snippet_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"disable_rich_snippet_faq\";a:7:{s:5:\"label\";s:17:\"Rich Snippets FAQ\";s:11:\"description\";s:54:\"Turn on to enable the FAQ rich snippet data site wide.\";s:2:\"id\";s:24:\"disable_rich_snippet_faq\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:34:\"enable_block_editor_backend_styles\";a:6:{s:5:\"label\";s:37:\"Enable WP Block Editor Backend Styles\";s:11:\"description\";s:77:\"Turn on to enable Avada&#039;s backend style support for the WP block editor.\";s:2:\"id\";s:34:\"enable_block_editor_backend_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"load_block_styles\";a:7:{s:5:\"label\";s:26:\"Load Frontend Block Styles\";s:11:\"description\";s:126:\"Select &quot;Auto&quot; to automatically detect if there are blocks present in your page, and load block-styles in the footer.\";s:2:\"id\";s:17:\"load_block_styles\";s:7:\"default\";s:2:\"on\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auto\";s:4:\"Auto\";s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:7:\"refresh\";}s:16:\"google_analytics\";a:7:{s:5:\"label\";s:13:\"Tracking Code\";s:11:\"description\";s:128:\"Paste your tracking code here. This will be added into the header template of your theme. Place code inside &lt;script&gt; tags.\";s:2:\"id\";s:16:\"google_analytics\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_head\";a:7:{s:5:\"label\";s:26:\"Space before &lt;/head&gt;\";s:11:\"description\";s:121:\"Only accepts JavaScript code wrapped with &lt;script&gt; tags and HTML markup that is valid inside the &lt;/head&gt; tag.\";s:2:\"id\";s:10:\"space_head\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_body\";a:7:{s:5:\"label\";s:26:\"Space before &lt;/body&gt;\";s:11:\"description\";s:114:\"Only accepts JavaScript code, wrapped with &lt;script&gt; tags and valid HTML markup inside the &lt;/body&gt; tag.\";s:2:\"id\";s:10:\"space_body\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:20:\"status_fusion_slider\";a:6:{s:5:\"label\";s:12:\"Avada Slider\";s:11:\"description\";s:35:\"Turn on to enable the Avada Slider.\";s:2:\"id\";s:20:\"status_fusion_slider\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_eslider\";a:6:{s:5:\"label\";s:14:\"Elastic Slider\";s:11:\"description\";s:37:\"Turn on to enable the elastic slider.\";s:2:\"id\";s:14:\"status_eslider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"status_fusion_forms\";a:6:{s:5:\"label\";s:11:\"Avada Forms\";s:11:\"description\";s:34:\"Turn on to enable the Avada Forms.\";s:2:\"id\";s:19:\"status_fusion_forms\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"status_awb_Off_Canvas\";a:6:{s:5:\"label\";s:16:\"Avada Off Canvas\";s:11:\"description\";s:39:\"Turn on to enable the Avada Off Canvas.\";s:2:\"id\";s:21:\"status_awb_Off_Canvas\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"status_fusion_portfolio\";a:6:{s:5:\"label\";s:15:\"Avada Portfolio\";s:11:\"description\";s:38:\"Turn on to enable the Avada Portfolio.\";s:2:\"id\";s:23:\"status_fusion_portfolio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"status_fusion_faqs\";a:6:{s:5:\"label\";s:10:\"Avada FAQs\";s:11:\"description\";s:33:\"Turn on to enable the Avada Faqs.\";s:2:\"id\";s:18:\"status_fusion_faqs\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"maintenance_mode\";a:6:{s:5:\"label\";s:4:\"Mode\";s:11:\"description\";s:177:\"Set your site to Maintenance Mode to take it offline temporarily (status code 503), or to Coming Soon mode (status code 200), taking it offline until it is ready to be launched.\";s:2:\"id\";s:16:\"maintenance_mode\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:0:\"\";s:3:\"Off\";s:11:\"maintenance\";s:11:\"Maintenance\";s:11:\"coming_soon\";s:11:\"Coming Soon\";}}s:24:\"maintenance_redirect_url\";a:6:{s:5:\"label\";s:12:\"URL Redirect\";s:11:\"description\";s:109:\"If set, this option will redirect users without access to the URL given. Enter with protocol (e.g. https://).\";s:2:\"id\";s:24:\"maintenance_redirect_url\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}}s:20:\"maintenance_template\";a:8:{s:5:\"label\";s:13:\"Page Template\";s:11:\"description\";s:73:\"Select an Avada Library template for the Maintenance or Coming Soon page.\";s:2:\"id\";s:20:\"maintenance_template\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:1:{i:0;s:16:\"Default Template\";}s:10:\"quick_edit\";a:3:{s:5:\"label\";s:13:\"Edit Template\";s:4:\"type\";s:8:\"template\";s:5:\"items\";a:0:{}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:24:\"maintenance_redirect_url\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";}}}s:22:\"maintenance_user_roles\";a:8:{s:5:\"label\";s:21:\"User Roles For Access\";s:11:\"description\";s:129:\"Select the user roles that should be able to access the site when. <strong>NOTE:</strong> Administrators will always have access.\";s:2:\"id\";s:22:\"maintenance_user_roles\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:6:\"editor\";s:6:\"Editor\";s:6:\"author\";s:6:\"Author\";s:11:\"contributor\";s:11:\"Contributor\";s:10:\"subscriber\";s:10:\"Subscriber\";s:13:\"wpseo_manager\";s:11:\"SEO Manager\";s:12:\"wpseo_editor\";s:10:\"SEO Editor\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}}s:19:\"maintenance_exclude\";a:6:{s:5:\"label\";s:7:\"Exclude\";s:11:\"description\";s:117:\"Exclude parts of your site like feed, pages, or archives from Maintenance or Coming Soon mode. Add one slug per line.\";s:2:\"id\";s:19:\"maintenance_exclude\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}}s:22:\"maintenance_page_title\";a:6:{s:5:\"label\";s:19:\"Page Title HTML Tag\";s:11:\"description\";s:83:\"This will also be used in the default page template. Leave empty for default title.\";s:2:\"id\";s:22:\"maintenance_page_title\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:24:\"maintenance_redirect_url\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";}}}s:23:\"maintenance_robots_meta\";a:7:{s:5:\"label\";s:15:\"Robots Meta Tag\";s:11:\"description\";s:88:\"Decide whether the Maintenance or Coming Soon page should get indexed by search engines.\";s:2:\"id\";s:23:\"maintenance_robots_meta\";s:7:\"default\";s:7:\"noindex\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"index\";s:12:\"Index/Follow\";s:7:\"noindex\";s:16:\"Noindex/Nofollow\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"maintenance_mode\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:24:\"maintenance_redirect_url\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";}}}s:10:\"svg_upload\";a:7:{s:5:\"label\";s:16:\"SVG Media Upload\";s:11:\"description\";s:98:\"Enable upload of SVG files and improve performance through their smaller image and logo file size.\";s:2:\"id\";s:10:\"svg_upload\";s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:6:\"Enable\";s:8:\"disabled\";s:7:\"Disable\";}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"pw_jpeg_quality\";a:7:{s:5:\"label\";s:23:\"WordPress Image Quality\";s:11:\"description\";s:459:\"Controls the quality of the generated image sizes for every uploaded image. Ranges between 0 and 100 percent. Higher values lead to better image qualities but also higher file sizes. <strong>NOTE:</strong> After changing this value, please install and run the <a target=\"_blank\" href=\"https://test-site.wlvrotary.org/wp-admin/plugin-install.php?s=Regenerate+Thumbnails&tab=search&type=term\" title=\"Regenerate Thumbnails\">Regenerate Thumbnails</a> plugin once.\";s:2:\"id\";s:15:\"pw_jpeg_quality\";s:7:\"default\";s:2:\"82\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"wp_big_image_size_threshold\";a:7:{s:5:\"label\";s:34:\"WordPress Big Image Size Threshold\";s:11:\"description\";s:207:\"Sets the threshold for image height and width, above which WordPress will scale down newly uploaded images to this values as max-width or max-height. Set to &quot;0&quot; to disable the threshold completely.\";s:2:\"id\";s:27:\"wp_big_image_size_threshold\";s:7:\"default\";s:4:\"2560\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:9:\"lazy_load\";a:7:{s:5:\"label\";s:18:\"Image Lazy Loading\";s:11:\"description\";s:219:\"Choose your preferred lazy loading method for your website\'s images to improve performance. <strong>IMPORTANT:</strong> The WordPress native method can cause issues with dynamically loaded elements like image carousels.\";s:2:\"id\";s:9:\"lazy_load\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:4:\"None\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"lazy_load_iframes\";a:7:{s:5:\"label\";s:19:\"Iframe Lazy Loading\";s:11:\"description\";s:91:\"Choose your preferred lazy loading method for your website\'s iframe to improve performance.\";s:2:\"id\";s:17:\"lazy_load_iframes\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:4:\"None\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"font_face_display\";a:7:{s:5:\"label\";s:19:\"Font Face Rendering\";s:11:\"description\";s:315:\"Choose &quot;Swap All&quot; for faster rendering with possible flash of unstyled text (FOUT) or &quot;Block&quot; for clean rendering but longer wait time until first paint. &quot;Swap Non-Icon Fonts&quot; will use a mix of the first 2 methods (&quot;swap&quot; for text fonts and &quot;block&quot; for icon-fonts).\";s:2:\"id\";s:17:\"font_face_display\";s:7:\"default\";s:5:\"block\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:5:\"block\";s:5:\"Block\";s:4:\"swap\";s:19:\"Swap Non-Icon Fonts\";s:8:\"swap-all\";s:8:\"Swap All\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"preload_fonts\";a:7:{s:5:\"label\";s:17:\"Preload Key Fonts\";s:11:\"description\";s:210:\"Make a selection to prioritize fetching resources that will be requested later in page load. This improves page load time as the browser caches preloaded resources so they are available immediately when needed.\";s:2:\"id\";s:13:\"preload_fonts\";s:7:\"default\";s:10:\"icon_fonts\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:3:\"All\";s:12:\"google_fonts\";s:12:\"Google Fonts\";s:10:\"icon_fonts\";s:10:\"Icon Fonts\";s:4:\"none\";s:4:\"None\";}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"preload_fonts_variants\";a:9:{s:5:\"label\";s:28:\"Preload Google Font Variants\";s:11:\"description\";s:99:\"Select the variants of Google fonts that should get preloaded. Leave empty to preload all variants.\";s:2:\"id\";s:22:\"preload_fonts_variants\";s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:17:{i:100;s:15:\"Ultra-Light 100\";s:10:\"100-italic\";s:22:\"Ultra-Light 100 Italic\";i:200;s:9:\"Light 200\";s:10:\"200-italic\";s:16:\"Light 200 Italic\";i:300;s:8:\"Book 300\";s:10:\"300-italic\";s:15:\"Book 300 Italic\";i:400;s:10:\"Normal 400\";s:10:\"400-italic\";s:17:\"Normal 400 Italic\";i:500;s:10:\"Medium 500\";s:10:\"500-italic\";s:17:\"Medium 500 Italic\";i:600;s:13:\"Semi-Bold 600\";s:10:\"600-italic\";s:20:\"Semi-Bold 600 Italic\";i:700;s:8:\"Bold 700\";s:10:\"700-italic\";s:15:\"Bold 700 Italic\";i:800;s:14:\"Extra-Bold 800\";s:10:\"900-italic\";s:21:\"Ultra-Bold 900 Italic\";i:900;s:14:\"Ultra-Bold 900\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:21:\"preload_fonts_subsets\";a:9:{s:5:\"label\";s:27:\"Preload Google Font Subsets\";s:11:\"description\";s:97:\"Select the subsets of Google fonts that should get preloaded. Leave empty to preload all subsets.\";s:2:\"id\";s:21:\"preload_fonts_subsets\";s:7:\"default\";s:5:\"latin\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:28:{s:6:\"arabic\";s:5:\"Latin\";s:7:\"bengali\";s:7:\"Bengali\";s:16:\"chinese-hongkong\";s:16:\"Chinese Hongkong\";s:18:\"chinese-simplified\";s:18:\"Chinese Simplified\";s:19:\"chinese-traditional\";s:19:\"Chinese Traditional\";s:8:\"cyrillic\";s:8:\"Cyrillic\";s:12:\"cyrillic-ext\";s:17:\"Cyrillic Extended\";s:10:\"devanagari\";s:10:\"Devanagari\";s:5:\"greek\";s:5:\"Greek\";s:9:\"greek-ext\";s:14:\"Greek Extended\";s:8:\"gujarati\";s:8:\"Gujarati\";s:8:\"gurmukhi\";s:8:\"Gurmukhi\";s:6:\"hebrew\";s:6:\"Hebrew\";s:8:\"japanese\";s:8:\"Japanese\";s:7:\"kannada\";s:7:\"Kannada\";s:5:\"khmer\";s:5:\"Khmer\";s:6:\"korean\";s:6:\"Korean\";s:5:\"latin\";s:5:\"Latin\";s:9:\"latin-ext\";s:14:\"Latin Extended\";s:9:\"malayalam\";s:9:\"Malayalam\";s:7:\"myanmar\";s:7:\"Myanmar\";s:5:\"oriya\";s:5:\"Oriya\";s:7:\"sinhala\";s:7:\"Sinhala\";s:5:\"tamil\";s:5:\"Tamil\";s:6:\"telugu\";s:6:\"Telugu\";s:4:\"thai\";s:4:\"Thai\";s:7:\"tibetan\";s:7:\"Tibetan\";s:10:\"vietnamese\";s:10:\"Vietnamese\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"emojis_disabled\";a:7:{s:5:\"label\";s:13:\"Emojis Script\";s:11:\"description\";s:99:\"If you don&#039;t use emojis you can improve performance by removing WordPress&#039; emojis script.\";s:2:\"id\";s:15:\"emojis_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:6:\"Enable\";s:8:\"disabled\";s:7:\"Disable\";}s:9:\"transport\";s:11:\"postMessage\";}s:23:\"jquery_migrate_disabled\";a:7:{s:5:\"label\";s:21:\"jQuery Migrate Script\";s:11:\"description\";s:100:\"If you are not using any deprecated jQuery code, you can disable this script to improve performance.\";s:2:\"id\";s:23:\"jquery_migrate_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:6:\"Enable\";s:8:\"disabled\";s:7:\"Disable\";}s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_jquery\";a:6:{s:5:\"label\";s:21:\"Load jQuery In Footer\";s:11:\"description\";s:227:\"Set to &#039;on&#039; to defer loading of jQuery to the footer of the page. This will only take effect if no other jQuery dependent scripts are added to the head. Turning this on can cause JS scripts to break, use with caution.\";s:2:\"id\";s:12:\"defer_jquery\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_styles\";a:6:{s:5:\"label\";s:26:\"Load Stylesheets In Footer\";s:11:\"description\";s:238:\"Set to &#039;on&#039; to defer loading of the stylesheets to the footer of the page. This improves page load time by making the styles non-render-blocking. Depending on the connection speed, a flash of unstyled content (FOUC) might occur.\";s:2:\"id\";s:12:\"defer_styles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"gzip_status\";a:6:{s:5:\"label\";s:23:\"Enable Gzip Compression\";s:11:\"description\";s:176:\"Set to \'on\' to add Gzip Compression rules to the .htaccess file. <strong>IMPORTANT:</strong> This option works only on Apache web servers with mod_gzip and mod_deflate enabled.\";s:2:\"id\";s:11:\"gzip_status\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"video_facade\";a:7:{s:5:\"label\";s:19:\"Enable Video Facade\";s:11:\"description\";s:160:\"Use video facade in order to load video player only when video is played. <strong>IMPORTANT:</strong> This option is only applied to YouTube and Vimeo elements.\";s:2:\"id\";s:12:\"video_facade\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}s:9:\"transport\";s:11:\"postMessage\";}s:18:\"clear_object_cache\";a:6:{s:5:\"label\";s:19:\"Clear Object Cache \";s:11:\"description\";s:205:\"Set to \'on\' to clear WP\'s object cache on post edit and post deletion. This is useful, if your setup or hoster uses persistent object caching, to make sure that queries update when you add or remove posts.\";s:2:\"id\";s:18:\"clear_object_cache\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"dynamic_compiler_section\";a:4:{s:5:\"label\";s:20:\"Dynamic CSS &amp; JS\";s:2:\"id\";s:24:\"dynamic_compiler_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"css_cache_method\";a:7:{s:5:\"label\";s:20:\"CSS Compiling Method\";s:11:\"description\";s:281:\"Select &quot;File&quot; mode to compile the dynamic CSS to files (a separate file will be created for each of your pages &amp; posts inside of the uploads/fusion-styles folder), &quot;Database&quot; mode to cache the CSS in your database, or select &quot;Disabled&quot; to disable.\";s:2:\"id\";s:16:\"css_cache_method\";s:7:\"default\";s:4:\"file\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"file\";s:4:\"File\";s:2:\"db\";s:8:\"Database\";s:3:\"off\";s:8:\"Disabled\";}s:9:\"transport\";s:11:\"postMessage\";}s:30:\"css_combine_third_party_assets\";a:7:{s:5:\"label\";s:29:\"Combine Third Party CSS Files\";s:11:\"description\";s:449:\"When enabled, third party CSS files will be combined into Avada\'s main stylesheet. Plugins affected are WooCommerce, The Events Calendar, Slider Revolution, ConvertPlus, Contact Form 7 and bbPress. <strong>IMPORTANT:</strong> Enabling this option is not recommended when you are are using third party file combining services, like cache plugins. <strong>NOTE:</strong> When this option is changed, Avada Caches have to be reset for changes to apply.\";s:2:\"id\";s:30:\"css_combine_third_party_assets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"css_cache_method\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"file\";}}}s:19:\"media_queries_async\";a:6:{s:5:\"label\";s:39:\"Load Media-Queries Files Asynchronously\";s:11:\"description\";s:140:\"When enabled, the CSS media-queries will be enqueued separately and then loaded asynchronously, improving performance on mobile and desktop.\";s:2:\"id\";s:19:\"media_queries_async\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"critical_css\";a:6:{s:5:\"label\";s:19:\"Enable Critical CSS\";s:11:\"description\";s:125:\"Set to \'on\' to enable the generation of critical CSS. Once enabled, a critical CSS page will be added to the Avada dashboard.\";s:2:\"id\";s:12:\"critical_css\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"cache_server_ip\";a:6:{s:5:\"label\";s:15:\"Cache Server IP\";s:11:\"description\";s:201:\"For unique cases where you are using CloudFlare and a cache server, ex: varnish cache. Enter your cache server IP to clear the Global Options dynamic CSS cache. Consult with your server admin for help.\";s:2:\"id\";s:15:\"cache_server_ip\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"js_compiler\";a:6:{s:5:\"label\";s:18:\"Enable JS Compiler\";s:11:\"description\";s:174:\"By default all the JavaScript files are combined. Disabling the JS compiler will load non-combined JavaScript files. This will have an impact on the performance of your site.\";s:2:\"id\";s:11:\"js_compiler\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"pwa_section\";a:4:{s:5:\"label\";s:19:\"Progressive Web App\";s:2:\"id\";s:11:\"pwa_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:19:\"pwa_required_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:389:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> To use the Avada PWA feature you need to install and activate the latest version of the PWA plugin. Please <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-plugins\">visit the Avada Plugins page</a> to install and activate the plugin and then refresh Global Options to edit the options.</div>\";s:2:\"id\";s:19:\"pwa_required_notice\";s:4:\"type\";s:6:\"custom\";}s:10:\"custom_css\";a:6:{s:5:\"label\";s:8:\"CSS Code\";s:11:\"description\";s:287:\"Enter your CSS code in the field below. Do not include any tags or HTML in the field. Custom CSS entered here will override the theme CSS. In some cases, the <code>!important</code> tag may be needed. Don&#039;t URL encode image or svg paths. Contents of this field will be auto encoded.\";s:2:\"id\";s:10:\"custom_css\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:5:{s:8:\"language\";s:3:\"css\";s:6:\"height\";i:450;s:5:\"theme\";s:6:\"chrome\";s:8:\"minLines\";i:40;s:8:\"maxLines\";i:50;}}s:17:\"shortcode_styling\";a:3:{s:5:\"label\";s:22:\"Avada Builder Elements\";s:2:\"id\";s:17:\"shortcode_styling\";s:4:\"icon\";s:23:\"fusiona-element-options\";}s:9:\"import_to\";a:6:{s:5:\"label\";s:21:\"Import Global Options\";s:11:\"description\";s:99:\"Import Global Options. You can import via file, copy and paste or select an Avada prebuilt website.\";s:2:\"id\";s:9:\"import_to\";s:4:\"type\";s:6:\"import\";s:5:\"demos\";a:0:{}s:7:\"context\";s:2:\"TO\";}s:9:\"export_to\";a:6:{s:5:\"label\";s:21:\"Export Global Options\";s:11:\"description\";s:77:\"Export your Global Options. You can either export as a file or copy the data.\";s:2:\"id\";s:9:\"export_to\";s:4:\"type\";s:6:\"export\";s:7:\"context\";s:2:\"TO\";s:4:\"text\";s:21:\"Export Global Options\";}}','no'),(195,'fusion_registration_data','a:1:{s:5:\"avada\";a:5:{s:5:\"token\";s:0:\"\";s:13:\"purchase_code\";s:36:\"18bf85bd-c974-4849-a7cb-e99ce056843f\";s:8:\"is_valid\";b:1;s:6:\"scopes\";a:0:{}s:6:\"errors\";s:0:\"\";}}','yes'),(226,'fusion_builder_version','3.9.1','yes'),(11748,'_transient_timeout_avada_studio','1673412438','no'),(330,'fusion_tb_category_children','a:0:{}','yes'),(11534,'_site_transient_timeout_community-events-dee53a8d60c6ebd601969aa73f3e0dc6','1673366259','no'),(11536,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1673366259','no'),(11537,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jan 2023 11:51:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.2-alpha-55040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WP Briefing: Episode 46: The WP Bloopers Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/12/episode-46-the-wp-bloopers-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 31 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14123\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"This episode of the WP Briefing features all the Josepha bloopers our little elves have stored away over the year. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/12/WP-Briefing-046.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9636:\"\n<p>This episode of the WP Briefing features all the Josepha bloopers our little elves have stored away over the year. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14123\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can normally catch quick explanations of the ideas behind the WordPress open source project with the hope that deeper understanding creates deeper appreciation.</p>\n\n\n\n<p>But on today&#8217;s bonus episode, instead of catching quick explanations, you&#8217;ll catch some quick bloopers.&nbsp;</p>\n\n\n\n<p>The end of the year is a time when many people and many cultures gather together, and whether you observe traditions of light or faith, compassion, or celebration from everyone here at the WordPress Briefing Podcast, we&#8217;re wishing you a happy, festive season and a very happy New Year.</p>\n\n\n\n<p>Sit back, relax, and enjoy some of the laughs and outtakes from recording the WP Briefing over the year.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress. This is the thing I&#8217;ve done 25 times, and I know how to do it for reals.</p>\n\n\n\n<p>Welcome to WordPress Briefing, episode 20. Oh no, 7? 27? 26? Episode 27. I know how many things I&#8217;ve done.</p>\n\n\n\n<p>Ooh, neat. This is Josepha recording episode 46 of the WP Bonus Briefings. Not because we&#8217;ve had 46 bonus Briefings, but because this is the 46th one and it is a bonus, it will also have a fancy name. But right now, I&#8217;m just calling it the bonus. It&#8217;s gonna be quick. Here I go.&nbsp;</p>\n\n\n\n<p>Group them into two big buckets, themes, uh, themes and tools. Mmm, I&#8217;m gonna have to redo the whole thing! No! I thought I could save it, and I didn&#8217;t save it. I had a typo in my script, and then I messed it up. I, it said into you big buckets instead of into two big buckets.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00]&nbsp;</strong></p>\n\n\n\n<p>I&#8217;m gonna start over from the target release date because I kind of smeared it all together, um, despite what I intended to do.</p>\n\n\n\n<p>And gives everyone, no. What is this ringing of phones? Oh, I was doing so well. Where was I? Let&#8217;s see if I can just pick it up.</p>\n\n\n\n<p>All righty, live from my closet. It&#8217;s episode 20, the WordPress Briefing, WP Briefing. So I have a title for this, and when I started writing it, I really had every intention of writing it to the title. And then what I wrote doesn&#8217;t fit the title at all, but does really hang together well. And so we&#8217;re gonna have to come up with a new title, but at the moment, it&#8217;s called So Many Ways to WordPress.</p>\n\n\n\n<p>Here in a minute, you will see why it doesn&#8217;t fit. Also, at the end, I feel like I get very, like, angry nerd leader.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00]&nbsp;&nbsp;</strong></p>\n\n\n\n<p>And so I may, I may at the end, give that a second go and see if there&#8217;s a way that I can soften it a little bit, but, I, I don&#8217;t know that I can soften it. I feel very strongly about it. So, maybe I am just an angry nerd leader.</p>\n\n\n\n<p>Oh, okay. I&#8217;ll get us started now that I apparently have filled the room with apologies, not the room, the closet.&nbsp;</p>\n\n\n\n<p>We&#8217;ll figure out something very catchy as a title or as an alternative. Very descriptive, and people will click on it because they must know, but we&#8217;ll figure out the title later.</p>\n\n\n\n<p>@wordpress.org. However, I don&#8217;t know why I decided to do an invitation to email me in the middle of that. I&#8217;m gonna start from the top of that paragraph. I just got too excited by the opportunity to get mail.</p>\n\n\n\n<p>I gotta slow it down. I&#8217;m like the fastest talker, had too much coffee. Okay, slowing it down now.&nbsp;</p>\n\n\n\n<p>Huh? What am I saying? No, no, that&#8217;s what I&#8217;m saying. It&#8217;s fine. I, I can do this.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]</strong></p>\n\n\n\n<p>Hold on. Oww. Sorry. I was adjusting my microphone, and then it fell down. I happened to be holding it at the time, so it didn&#8217;t, like, slam down, I think, and hurt your ears and so I apologize. Good thing I stopped so it didn&#8217;t just, like, slam down in the middle of a recording.</p>\n\n\n\n<p>That&#8217;s all right. I&#8217;m gonna give myself that win, even though it&#8217;s a hollow one. All right. Trying again. Starting right there, at now since.</p>\n\n\n\n<p>This year, it starts on October 18th, 2001. That&#8217;s the year? No, 2021. That&#8217;s the year. Oh man. I&#8217;m doing such a great job of this.</p>\n\n\n\n<p>Um, I&#8217;m recording this slightly before, um, you&#8217;re hearing it? What, how am I gonna start this? Hold on. I don&#8217;t know how to start this. All right. I&#8217;m, I can do it.</p>\n\n\n\n<p>Oh, I&#8217;m so glad I remembered. We had guests that could have been so embarrassing.</p>\n\n\n\n<p>Now for me, the trade-offs work well. How many times can I say now?</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]&nbsp;</strong></p>\n\n\n\n<p>Do I just start every sentence with now now? Is this just how I do things? Uh, now, now, now, now. I&#8217;m gonna start all over again because I&#8217;m in my head about the words in my mouth now. So.</p>\n\n\n\n<p>In some near timeframe, some near timeframe. This is not a thing that people say, Dustin, I&#8217;m sorry. That&#8217;s not a thing people say. I&#8217;m just gonna retry that one sentence to sound like I speak with other human beings sometimes.</p>\n\n\n\n<p>Today is the start of… I can do these things.</p>\n\n\n\n<p>This was a terrible ending. I need to just finish that last part. I&#8217;m gonna redo the part where I started with my name and not the name of the podcast. Um, and we&#8217;ll do that.</p>\n\n\n\n<p>And if you&#8217;re supporting or building anything to hand off to clients, you know that timely, easy to ship changes on a site are considered a vital part of any overarching brand and marketing strategy. Wow. It&#8217;s like, I don&#8217;t know what words are right there.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>I tripped over my own tongue a lot. I&#8217;m gonna sit, I&#8217;m gonna do that paragraph again because I didn&#8217;t do a very good job of it.</p>\n\n\n\n<p>I&#8217;ll do a better job.</p>\n\n\n\n<p>I literally digress, and now I don&#8217;t know. I am in my thing. What was I saying? Oh, there we go.&nbsp;</p>\n\n\n\n<p>Topher DeRosia, who founded Word not WordPress. Holy moly. That was a, I knew I was gonna say that, and I was like, don&#8217;t say that when you actually get around to saying this, but here I am, and I did it. Even though I knew I was gonna do it and I told myself not to. Doing it again. Right from there.</p>\n\n\n\n<p>Not which audiench segment. Oh man. Audiench is not a word, folks. I was on a roll. I&#8217;m gonna start right from the primary thing.</p>\n\n\n\n<p>I don&#8217;t even remember how I started this podcast. What is the last thing I said? I said, here we go. All right.&nbsp;</p>\n\n\n\n<p>Kind of covered some interesting ground, and so, oh no, this is not where I&#8217;m gonna start it. I know exactly where I&#8217;m gonna start it. Okay. I&#8217;m really ready now. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00]&nbsp;</strong></p>\n\n\n\n<p>I suddenly, I&#8217;m gonna pause right here because I suddenly got really worried that I didn&#8217;t actually hit record. Oh my gosh. I did. Woo. I&#8217;m all over the place. Okay. We&#8217;ll now continue. Wait, did I? Oh my goodness. I did, super sorry.</p>\n\n\n\n<p>Of the WordPress Briefing. I&#8217;m gonna do some singing in the middle of some talking, but I keep trying to talk myself out of the singing, so I&#8217;m gonna go ahead and do the singing, and then I&#8217;ll do the talking before I talk myself out of the singing. Here I go, probably.</p>\n\n\n\n<p>I added a word. That was so good. I&#8217;m gonna start again. I&#8217;m gonna get some water, and then I&#8217;m gonna start again. Not again. Again. Just from the ‘and finally.’</p>\n\n\n\n<p>I don&#8217;t know how I finish my show. Y&#8217;all, I do this literally every week. I never know how to finish my show. Here we go.</p>\n\n\n\n<p>I don&#8217;t know why I shouted at you from the other side of the tiny closet. I apologize. I&#8217;m gonna start again from ‘and finally.’</p>\n\n\n\n<p>Tada we did it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:00]&nbsp;</strong></p>\n\n\n\n<p>Ha. I hate it. I hate the whole podcast. It&#8217;s gonna be fine.&nbsp;</p>\n\n\n\n<p>Done. Nailed it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>With that, I&#8217;m your host, Josepha Haden Chomphosy. Merry Christmas from me. Happy holidays to you, and we&#8217;ll see you again in the new year.</p>\n\n\n\n<p>Done.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 45: State of the Word Reflections\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14070\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Josepha reflects on this year\'s State of the Word address here on the WP Briefing podcast. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/12/WP-Briefing-045.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14564:\"\n<p>In the forty-fifth episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy discusses highlights from this year&#8217;s State of the Word address. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">LearnWP</a><br><a href=\"https://developer.wordpress.org/playground/demo/\">WordPress Playground</a><br><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">ICYMI: State of the Word Recap</a><br><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey!</a><br><a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">Exploring WordPress Certifications</a><br><a href=\"https://communitysummit.wordcamp.org/2023/\" data-type=\"URL\" data-id=\"https://communitysummit.wordcamp.org/2023/\">Community Summit WordCamp Site</a><br><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the 2023 Community Summit</a><br><a href=\"https://wp20.wordpress.net/\">20th Anniversary&#8211; Stay Tuned for Updates</a><br><a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Check Out Style Variations and the 2023 Theme</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14070\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39] </strong></p>\n\n\n\n<p>Last week, WordPress hosted its annual State of the Word. As usual, this was delivered by our project co-founder Matt Mullenweg and represented a year-long labor of love from the WordPress community as a whole. There are many things I love about State of the Word, but consistently the thing I love the most is being able to shine spotlights on the great work of our global network of contributors.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:02]&nbsp;</strong></p>\n\n\n\n<p>Since that presentation goes by at the speed of light, I wanted to highlight a few things as well. First things first, I wanted to highlight that we had nearly 1,400 contributors, and by nearly, I mean just one too few. We had 1,399 contributors. So that is a big deal in general, but it&#8217;s an especially big deal to me because that&#8217;s before we start looking at any contributions that aren&#8217;t specifically tied to a release.&nbsp;</p>\n\n\n\n<p>You may be wondering what those non-release contributions are. An incomplete list of those contributions would include organizing WordPress events, training others how to use WordPress, the myriad podcasts, articles, and newsletters that make up the WordPress media community, and any participant in a call for testing. Not to mention the unglamorous ways to contribute, like reviewing themes or reviewing plugins.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:58]&nbsp;</strong></p>\n\n\n\n<p>Things like patching security vulnerabilities and the bazillion things that Meta does to make sure that our community has all the tools that it needs to function. So I want to echo, once again, the huge, huge thanks that Matt already shared in State of the Word, and thank all of you for showing up for our project and for each other this way.</p>\n\n\n\n<p>The next thing I wanted to be sure to highlight was LearnWP. It was briefly noted that 12,000 learners had found their way to courses on learn.wordpress.org, and then during the Q&amp;A, there was a related question about certifications in WordPress.&nbsp;</p>\n\n\n\n<p>The need for certifications has been a regular topic in our project, and I mentioned that there are two different ongoing discussions at the moment. One of those discussions is happening directly on the make.wordpress.org/training site, so I&#8217;ll share a link in the show notes for that.</p>\n\n\n\n<p>But I&#8217;ve also been personally chatting on and off with Training team reps and other members of the community about what makes that so hard. In case you have not heard my whole spiel about what makes it difficult, it&#8217;s the logistics and our speed of iteration, and public perception.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:05] </strong></p>\n\n\n\n<p>So not exactly a small set of hurdles. I&#8217;ll be doing a more complete post on this in the New Year so that we can get some solid documentation of the state of things and not let it be lost forever in this podcast. But I do know that it is something that we are very interested in as a community and something that, historically, I have really been resistant to.</p>\n\n\n\n<p>Not because I think it&#8217;s a bad idea, but because as someone who&#8217;s looking out for our operations side of things and our logistics side of things, it is not clear how we&#8217;re gonna get that done. Like I said, in the New Year, keep an eye out for a big, big post that takes a look at the benefits versus the costs and everything that we can do to help make those match each other a bit better.</p>\n\n\n\n<p>And then the last thing I wanted to highlight was the WordPress Playground. Okay, so this was the last thing that Matt mentioned, and I want to be sure that it&#8217;s clear what&#8217;s going on with this project because when I first heard about it, I very nearly lept from my chair!&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]&nbsp;</strong></p>\n\n\n\n<p>It was such a remarkably big deal. Okay, so the WordPress Playground uses technological magic called ‘web assembly.’ I don&#8217;t know what it is, but it&#8217;s magic. And when I say magic, I mean that this tool makes it possible to run WordPress, an instance of WordPress, including a theme and a handful of plug-ins entirely inside your browser as a logged-in admin.</p>\n\n\n\n<p>You don&#8217;t need a server. You don&#8217;t need to select a host. You don&#8217;t need to download anything at all. You don&#8217;t need to know what your domain&#8217;s going to be. You simply select the theme you want to test. Add some dummy content and see how all of the posts and pages function as though we&#8217;re a real live WordPress site running on your favorite top-tier host.</p>\n\n\n\n<p>Then when you close the tab, it&#8217;s gone forever. Poof. Just like that. Now, this is a brand new project. It&#8217;s brand new to us and has a long way to go. So if working on that sounds cool, stop by the Meta Playground channel in the Making WordPress Slack.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:09]&nbsp;</strong></p>\n\n\n\n<p>But this, in my mind, changes the way that we stage sites.</p>\n\n\n\n<p>It could change the way we determine whether a theme or plugin is right for us. And arguably, it can become a stress-free way to introduce new or undecided users to WordPress’s admin area so that they can tell what they&#8217;re getting into. So when I say that this is a mind-blowing thing, and when I say that it is powered by magic, like it is astounding, it is astounding.</p>\n\n\n\n<p>And the applications for our users as a whole, I think, are untapped yet, and potentially even the applications for our learners and future learners of WordPress– equally untapped. I&#8217;m very excited to see what we can do with this project in the future. So stop by the Meta channel. Stop by Meta Playground.</p>\n\n\n\n<p>See what&#8217;s going on over there. We would love to have you.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>So those are my highlights of the day for State of the Word. Like I said, there are a few things I want to do more of a deep dive on in the text, so keep an eye out on make.wordpress.org/projects for most of those. But right now, let&#8217;s make some time for the small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]&nbsp;</strong></p>\n\n\n\n<p>Today I actually have kind of like a big list of big things. But I pretended it was small, so you didn&#8217;t turn off the podcast. So the first thing that I have is that in case you missed State of the Word, if you didn&#8217;t have a Watch Party to go to, or you didn&#8217;t know it was happening and so you didn&#8217;t really tune in at the time, I&#8217;m going to drop in a link of the recording.</p>\n\n\n\n<p>It&#8217;s gonna probably start right when everything gets going. And so you shouldn&#8217;t have to scrub through anything. If you end up on one of the recordings that includes like the whole live stream, there is jazz for the first 30 minutes, and just, you know, skip through that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00] </strong></p>\n\n\n\n<p>The second thing on my big list of big things is our annual community survey. So Matt mentioned this in State of the Word, and he pointed out that one of the things that makes WordPress and open source in general so effective is that we have a way to communicate with people who are using our software and we make every effort to be responsive to it.</p>\n\n\n\n<p>So the annual survey that we send out, it used to be quite big, and we&#8217;ve cut it down to 20 questions. If you want, you can think of it as like a census, so have your type of work and how long you&#8217;ve been working in WordPress, and what you wish to do with WordPress– have all those things be counted so we have a good idea of the type of person who&#8217;s currently using WordPress, and we can account for your needs and wants.</p>\n\n\n\n<p>But also, if you want to think of it more as an opportunity to share the things that were especially useful for you in the project this year or especially valuable for you as a contributor, this is also an excellent place to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:01]&nbsp;</strong></p>\n\n\n\n<p>There&#8217;s a QR code running around on the internet somewhere, but I&#8217;ll also put a link in the show notes. If you do not know where the show notes are, by the way, they are at wordpress.org/news/podcast, and you&#8217;ll be able to get to the survey.</p>\n\n\n\n<p>The third thing on my big list of big things is that next year we&#8217;re hosting a community summit. So if you&#8217;ve never been to a community summit, Matt mentioned that it is an opportunity for the best and most prolific contributors that we have to show up and discuss the things that are the biggest problems for the WordPress project right now.</p>\n\n\n\n<p>But we also want to make sure that we are making space for the voices that we know that we are missing from the community as well as contributors who look like they are probably excellent future stewards of this open source project that we are taking care of together. And so there is a whole website for that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:55]&nbsp;</strong></p>\n\n\n\n<p>I believe it&#8217;s communitysummit.wordcamp.org. Right now, there is a form up asking for topics that you want to be able to discuss while we are there, but it&#8217;s taking place, if I recall correctly, on August 22nd and 23rd of 2023.</p>\n\n\n\n<p>Number four on my big list of big things is that next year is WordPress&#8217;s 20th anniversary. So on May 27th of next year, WordPress will officially be 20 years old. So on our 10th birthday, anniversary rather, and our 15th anniversary, we pulled together some parties all across the world.&nbsp;</p>\n\n\n\n<p>We had some images, some logos, and things that were specific to the celebration that we printed into stickers and that folks put on, like, mugs and backpacks and cakes and stuff. So if you want to learn more about that, keep an eye out in the community channel in making WordPress Slack. They will keep you posted on how to one, find any of those logos and designs so that your local community can join in the celebrations.<br></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:03]&nbsp;</strong></p>\n\n\n\n<p>But they will also help you learn how to have any sort of WordPress celebration party that we&#8217;re doing there in May of 2023.&nbsp;</p>\n\n\n\n<p>And then the final thing on my big list of big things, it was mentioned that on the 2023 theme that was shipped with a bunch of style variations and there was this really, I think, excellent illustrative video that <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> put together for us that shows that you can switch through style variations on a single theme and have a site that looks totally different.</p>\n\n\n\n<p>Now, that feels like that&#8217;s just a thing that should always have been in WordPress, but it is new this year. And so, if you have not yet had a chance to look at the 2023 theme, it is the default theme that shipped with 6.1. And so, if you have it on your website and just haven&#8217;t had a look at it yet, I encourage you to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00]</strong></p>\n\n\n\n<p>It&#8217;s a really interesting implementation that makes a single theme potentially look like an infinite number of other themes, and those style variations can be specific to the theme or can just kind of be around and about in the patterns that are also available in Core.&nbsp;</p>\n\n\n\n<p>Give that a look. I think it&#8217;s super worthwhile.</p>\n\n\n\n<p>And that, my friends, is your big list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in the New Year.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – November 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 12:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14124\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:317:\"WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project\'s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13931:\"\n<p>WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project&#8217;s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word 2022</h2>\n\n\n\n<p>WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> delivered the annual State of the Word address on <strong>December 15, 2022</strong>, before a live audience in New York City. Most attendees joined the event via livestream or one of the 33 watch parties held across 11 countries.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, Executive Director of WordPress, kicked off this year&#8217;s event with an introduction to the <strong>Four Freedoms of open source</strong> and the importance of WordPress in ensuring “a free, open and interconnected web for the future.”</p>\n\n\n\n<p>Similar to past State of the Word events, Matt reflected on the project’s achievements over the past year, including Gutenberg’s adoption beyond WordPress, the steady progress in advancing the site editing experience, and the return to in-person events.<em> </em>In addition, he took the opportunity to remind everyone of the <a href=\"https://communitysummit.wordcamp.org/2023/\">2023 Community Summit</a> and the <a href=\"https://wp20.wordpress.net/\">20th anniversary of WordPress</a> coming up next year.</p>\n\n\n\n<p><strong>Ahead of 2023</strong>, Matt announced <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">new taxonomies</a> in the WordPress.org theme and plugin directories to help users identify the extensions that best fit their needs and plans for Phase 3 of Gutenberg—Collaboration—among other notable updates.</p>\n\n\n\n<p>People who watched the State of the Word enjoyed a demo of <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project to explore, experiment, and build apps with a WordPress instance that runs entirely in the browser.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Missed the event? <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">Read the recap</a> or <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watch the State of the Word recording</a> and <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">Q&amp;A session</a> on WordPress.tv.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 2022 WordPress Survey is open</h2>\n\n\n\n<p>The annual WordPress survey helps project leadership and those who build WordPress understand more about the contributor experience, how the software is used, and by whom.</p>\n\n\n\n<p>This year’s survey will remain <strong>open through the end of 2022</strong> and is available in English, French, German, Italian, Japanese, Russian, and Spanish.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey</a> to help make an impact on the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\"><strong>Gutenberg 14.6</strong></a>, released on November 23, 2022, came with many refinements to core blocks. Notable highlights include a variation picker that allows users to choose a desired layout when a Group block is inserted on a page, a new list view for editing the Navigation block, and a keyboard shortcut to transform paragraph blocks into headings.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>Gutenberg 14.7</strong></a>, released on December 7, 2022, introduced an experimental tabbed sidebar, colors to help identify some block types in list view, and improvements to the Page List block to make it easier to manage page links in the content.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Introducing the block editor in the support forums, a revamped Showcase page, and more</h2>\n\n\n\n<ul>\n<li>The Support and Meta Teams are bringing <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">the block editor experience into the WordPress.org support forums</a>.</li>\n\n\n\n<li>WordPress.org’s redesign continues with a <a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">refreshed Showcase page</a>.</li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/community/2022/12/05/proposed-2023-global-community-sponsorship-program/\">proposal for the 2023 Global Community Sponsorship Program</a> has been published.</li>\n\n\n\n<li>WordPress is accessible to more people thanks to 19,357 contributors who translated more than eight million strings this year. Learn more about the <a href=\"https://make.wordpress.org/polyglots/2022/12/12/reflecting-on-2022-in-polyglots/\">Polyglots Team&#8217;s achievements in 2022</a>.</li>\n\n\n\n<li>Speaking of accomplishments, supporters of the Global Meetup Reactivation project <a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">helped reactivated 126 meetup groups</a> in 2022! There are also some discussions on <a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">how these efforts can support the Polyglots Outreach Effort project</a>, and vice versa.</li>\n\n\n\n<li>The Community Team met with members of the Meetup.com team to help report some feedback and issues with an accessibility overlay that they ultimately <a href=\"https://make.wordpress.org/community/2022/11/23/meetup-com-accessibility-overlay-update/\">agreed to remove</a>.</li>\n\n\n\n<li>The Training Team highlighted <a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">the latest updates</a> that have been made to <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. In addition, <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">part 1</a> and <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">part 2</a> of the Developers Guide to Block Themes are now available on the platform.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a> and <a href=\"https://make.wordpress.org/polyglots/2022/11/08/call-for-polyglots-team-representatives-2/#comment-295831\">Polyglots</a> Teams announced their team representatives for 2023.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/11/30/now-available-wordpress-3-7-4-0-final-releases/\">final releases for WordPress 3.7-4.0</a> were made available on November 30, 2022, with a notice that they are no longer receiving security updates. WordPress 4.1 and later will continue to receive such updates.</li>\n\n\n\n<li>Fresh off the press, the <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">December 2022 edition of the Polyglots monthly newsletter</a> is available for reading.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\">Huanyi Chuang</a>, a front end developer from Taiwan.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about why WordPress has so many releases? <a href=\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\">Tune in to Episode 44 of WP Briefing</a> to learn about the role of major and minor releases in the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Help efforts to wrap up Gutenberg Phase 2 by <a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">testing the Site Editor’s latest updates</a>. Leave your feedback by January 6, 2023.</li>\n\n\n\n<li>The Performance Team shared a <a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">new proposal for enhancing the Scripts API with a loading strategy</a>.</li>\n\n\n\n<li>The Full Site Editing (FSE) Outreach Program is <a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">looking for volunteers to use Replay.io for capturing bugs</a>. Express your interest by December 28, 2022.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on WordPress contributor teams to <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">suggest topics for the 2023 Community Summit</a> by January 16, 2023.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>The #WPDiversity working group organized <a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">several workshops</a> during the past few months. Among other highlights, attendees of the Speaker Workshop for Women Voices in Latin America reported a 52% increase in self-confidence to speak in public. <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">Stay tuned for the next events</a>.</li>\n\n\n\n<li>The WordCamp Europe 2023 organizing team shared <a href=\"https://europe.wordcamp.org/2023/wceu-2023-content-vision/\">their content vision</a> for next year&#8217;s flagship event in Athens, Greece.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> is just a few months away, scheduled for February 17-19, 2023, in Bangkok, Thailand. Organizers have announced the first recipient of the WordCamp Asia Diversity Scholarship, <a href=\"https://asia.wordcamp.org/2023/diversity-scholarship-recipient/\">Awais Arfan</a>.</li>\n\n\n\n<li>Three more WordCamps are happening in the next few months:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WordCamp Europe 2023 is calling for <a href=\"https://europe.wordcamp.org/2023/the-call-for-sponsors-is-now-open/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2023/call-for-speakers-is-open-now/\">speakers</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, and <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"State of the Word 2022: A Celebration of the Four Freedoms of Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 22:11:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14110\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress belongs to all of us, but really we’re taking care of it for the next generation.” Matt Mullenweg A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder Matt Mullenweg. Those who could not join in person joined via livestream [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5677:\"\n<blockquote class=\"wp-block-quote\">\n<p>WordPress belongs to all of us, but really we’re taking care of it for the next generation.” </p>\n<cite>Matt Mullenweg</cite></blockquote>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VeigCZuxnfY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>. Those who could not join in person joined via livestream or one of 33 watch parties held across 11 countries, with more than 500 RSVPs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"The four freedoms of open source: run the program, study the change, redistribute, and distribute your copies.\" class=\"wp-image-14111\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Executive Director, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, introduced the event with a reminder of why so many of those gathered choose WordPress—the Four Freedoms of open source. As Haden Chomphosy noted, open source is an idea that can change our generation, and WordPress is one of the most consistent and impactful stewards of those freedoms.</p>\n\n\n\n<p>As with past State of the Word events, Matt reflected on the year’s accomplishments, learnings, and aspirations as the project moves into 2023. From Gutenberg concluding its second phase of site editing in preparation for phase three—Collaborative Workflows, to the reactivation of meetups and global WordCamps, to the introduction of a new theme and plugin taxonomy, to musings on the potential of machine learning, WordPress enters its <a href=\"https://wp20.wordpress.net/\">20th year</a> continuing to define bleeding edge technology in thanks to the ecosystem’s vibrant community.&nbsp;</p>\n\n\n\n<p>The one-hour multimedia presentation was followed by an interactive <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">question and answer</a> session where Matt fielded questions from the livestream and studio audience. All questions will be responded to in a follow-up post on <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project\" target=\"_blank\">Make.WordPress.org/project</a>.&nbsp;</p>\n\n\n\n<p>Discover everything that was covered by <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watching the official event recording</a> and join the ongoing #StateOfTheWord conversation on <a href=\"https://www.tumblr.com/tagged/StateoftheWord?sort=top\">Tumblr</a>, <a href=\"https://www.instagram.com/explore/tags/stateoftheword/\">Instagram</a>, <a href=\"https://www.facebook.com/hashtag/stateoftheword\">Facebook</a>, <a href=\"https://www.linkedin.com/feed/hashtag/?keywords=stateoftheword\">Linkedin</a>, and <a href=\"https://twitter.com/hashtag/StateOfTheWord\">Twitter</a>. For another way to get involved, consider sharing your experience with WordPress in the <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">2022 WordPress Community Survey</a>.</p>\n\n\n\n<span id=\"more-14110\"></span>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Referenced Resources</strong>&nbsp;</h2>\n\n\n\n<ul>\n<li><a href=\"http://wordpress.tumblr.com/\">WordPress on Tumblr</a></li>\n\n\n\n<li><a href=\"http://engineawesome.com/\">Engineawesome.com</a> using Gutenberg</li>\n\n\n\n<li><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></li>\n\n\n\n<li><a href=\"http://wp20.wordpress.net/\">WP20.wordpress.net</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/\">learn.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/openverse\">Openverse</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/\">Make.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground\">WordPress Playground</a></li>\n\n\n\n<li><a href=\"http://photomatt.tumblr.com/\">Matt on Tumblr</a></li>\n\n\n\n<li><a href=\"https://distributed.blog/\">Distributed.blog</a></li>\n</ul>\n\n\n\n<p><em><em>Special thanks to <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> and <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> for review and collaboration.</em></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Share Your Experience: The 2022 WordPress Survey is Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2022 16:00:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14062\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"The 2022 WordPress survey is open for your input and available in English, French, German, Italian, Japanese, Russian, and Spanish.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4584:\"\n<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. Key takeaways and trends that emerge from this survey often find their way into the annual <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a> address, are shared in the public project blogs, and can influence the direction and strategy for the WordPress project.</p>\n\n\n\n<p>Simply put: this survey helps those who build WordPress understand more about how the software is used, and by whom. The survey also helps leaders in the WordPress open source project learn more about our contributors’ experiences.&nbsp;&nbsp;</p>\n\n\n\n<p>To ensure that your WordPress experience is represented in the 2022 survey results, <a href=\"https://wordpressdotorg.survey.fm/en-2022\">take the 2022 annual survey now.</a></p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/en-2022\">Take the 2022 Survey (English)</a></div>\n</div>\n\n\n\n<p>You may also take the survey in <a href=\"https://wordpressdotorg.survey.fm/fr-2022\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/de-2022\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/it-2022\">Italian</a>, <a href=\"https://wordpressdotorg.survey.fm/jp-2022\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/ru-2022\">Russian</a>, or <a href=\"https://wordpressdotorg.survey.fm/es-2022\">Spanish</a>, thanks to the efforts of WordPress polyglot contributors. These are the most frequently installed languages based on the number of WordPress downloads. </p>\n\n\n\n<p>The survey will be open through the end of 2022, and then WordPress plans to publish the results sometime in 2023. This year, the survey questions have been refreshed for more effortless survey flow, completion, and analysis. Some questions have been removed, while a few new ones are now present, reflecting the present and future of WordPress. If you’re looking for the analysis of the 2021 survey results, those will also be shared in early 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Spread the word</h2>\n\n\n\n<p>Help spread the word about the survey by sharing it with your network, through Slack, or within your social media accounts. The more people who complete the survey and share their experience with WordPress, the more the project as a whole will benefit in the future.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security and privacy</h2>\n\n\n\n<p>Data security and privacy are paramount to the WordPress project and community. With this in mind, all data will be anonymized: no email addresses nor IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, view the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you</h2>\n\n\n\n<p>Thank you to the following WordPress contributors for assisting with the annual survey project, including question creation, strategy, survey build-out, and translation:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/dansoschin/\">dansoschin</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili/\">_dorsvenabili</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">angelasjin</a>, <a href=\"https://profiles.wordpress.org/arkangel/\">arkangel</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">audrasjb</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">atachibana</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">bjmcsherry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">eidolonnight</a>, <a href=\"https://profiles.wordpress.org/fernandot/\">fernandot</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">fierevere</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">jdy68</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">jpantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">laurlittle</a>, <a href=\"https://profiles.wordpress.org/nao/\">nao</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">nielslange</a>, <a href=\"https://profiles.wordpress.org/peiraisotta/\">peiraisotta</a>, <a href=\"https://profiles.wordpress.org/piermario/\">piermario</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">santanainniss</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Huanyi Chuang\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Nov 2022 20:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13562\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"The latest People of WordPress story features Huanyi Chuang, from #Taiwan, on his journey to become a digital marketer and front end developer. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11689:\"\n<p><strong>This month we feature Huanyi (Eric) Chuang, a front end developer from Taiwan, who helps connect local groups to WordPress and the worldwide open source community. He is part of the team helping to make the first WordCamp Asia a success in 2023.</strong></p>\n\n\n\n<p><strong>The People of WordPress series shares some of the inspiring stories of how people&#8217;s lives can change for the better through WordPress and its global network of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1014\" height=\"627\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?resize=1014%2C627&#038;ssl=1\" alt=\"Huanyi pictured sitting inside a rock formation.\" class=\"wp-image-13479\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=1014&amp;ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Discovering WordPress and the benefit of child themes </strong></h2>\n\n\n\n<p>Huanyi’s first footsteps in WordPress began in 2017 when he worked for a firm that built blogs and developed ad content for clients.</p>\n\n\n\n<p>After building a few sites using the platform, he discovered child themes and through them opened up a world of possibilities for his clients. To this day, he uses child themes to deliver truly custom designs and functionality for clients.</p>\n\n\n\n<p>Later in his career, Huanyi moved into digital marketing, integrating sites with massive ad platforms like Google and Facebook. This led him to learn to work with tracking code and JavaScript. He also began his learning journey in HTML, CSS, and PHP, to be able to improve his development skills and customize child themes.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Meetups bring together software users to learn together</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?fit=600%2C800&amp;ssl=1\" alt=\"Huanyi and a koala.\" class=\"wp-image-13476\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" /><figcaption class=\"wp-element-caption\"><em>Huanyi pictured in Australia during one of his travels meeting a koala bear.</em></figcaption></figure>\n\n\n\n<p>When Huanyi had a problem with a client&#8217;s site, he looked to WordPress meetups near where he lived in <a href=\"https://www.meetup.com/Taipei-WordPress/\">Taipei</a> to help find the solutions.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard</strong>.&#8221;</p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>At the meetup, he met more experienced WordPress users and developers there, who answered his questions and helped him learn.</p>\n\n\n\n<p>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard. That was my original connection with the local community,” Huanyi said.</p>\n\n\n\n<p>The WordPress community gave Huanyi a chance to connect with people, feed his curiosity about the software, and join a circle of people he could share this interest.</p>\n\n\n\n<p>At first, he thought meetups were an opportunity to source new clients, and he took his business cards to every event. However, he soon found that these events offered him the opportunity to make friends and share knowledge.</p>\n\n\n\n<p>From then on, Huanyi started focusing more on what he could give to these events and networks, making new friends, and listening to people. This led him to share as a meetup speaker his own commercial website management experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The road to WordCamp</strong></h2>\n\n\n\n<p>It was going to his first meetup and then getting involved with WordCamps that changed Huanyi&#8217;s whole relationship with WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?resize=600%2C800&#038;ssl=1\" alt=\"Huanyi pictured on an outing, stood next to a white car.\" class=\"wp-image-13477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In 2018, he took the step to help as an organizer, having joined the Taoyuan Meetup in Taiwan. He played several parts across the organizing team, and the welcoming feeling he got in every situation encouraged him to get more involved.</p>\n\n\n\n<p>He recalls meeting new friends from different fields and other countries, which gave him a great sense of achievement and strengthened his passion for participating in the community.</p>\n\n\n\n<p>When the team started this meetup, numbers were much lower than in the group in the city of Taipei, but they were not disheartened and gradually grew the local WordPress community.</p>\n\n\n\n<p>They created a pattern of ‘multiple organizers,’ which spread the workload and grew friendships.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“Being connected to and from meetups is the most valuable part of the community. Having these friends makes me gather more information. We share information and benefit from others’ information, and thus we gain more trust in each other. With such credibility, we share more deeply and build deeper relations.”</strong> </p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>Before the pandemic, the meetup met every month and grew to become the second largest meetup in Taiwan. Huanyi also contributed to the WordPress community as an organizer of WordCamp Taipei 2018 in the speaker team and lead organizer of <a href=\"https://taiwan.wordcamp.org/2021/\">WordCamp Taiwan 2021</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>So why should you join the community?</strong></h2>\n\n\n\n<p>According to Huanyi, you will always have something to take home with you. It might be new information or experiences. It might be plugins or theme ideas. But most of all, it is the chance to meet fascinating people and make new friends.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Huanyi’s message to other contributors:<br>&#8220;Keep participating, and you will find more you can achieve than you expect.” </p>\n</blockquote>\n\n\n\n<p>He added that long-term participation will &#8216;let you feel the humanity behind the project&#8217;.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Localize: the road ahead for WordPress</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"900\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?resize=900%2C675&#038;ssl=1\" alt=\"Huanyi standing on a sandy beach.\" class=\"wp-image-13478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Huanyi believes WordPress has the power to break down the barriers between designers, project managers, developers, marketers, writers, and publishers. In Taiwan, he said WordPress is &#8216;a common protocol&#8217; that lets people from all of these disciplines work and communicate together more easily than they ever have before.</p>\n\n\n\n<p>That is why he works on and encourages others to localize plugins today. He believes localization of the software is the foundation for the extension of the WordPress community as it enables people to ‘Flex their Freedom’ in a language they speak!</p>\n\n\n\n<p>He has helped to organize online events around previous <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> events.</p>\n\n\n\n<p>Huanyi said: “I think it&#8217;s important to localize WordPress because its very concept of ‘open source’ means that people can access it freely. In another way, free from the monopoly of knowledge and speech. To achieve it, it&#8217;s important that people can access it with their own language.</p>\n\n\n\n<p>“Localization is the foundation of the extension of WordPress community because it helps people using different languages to access the project and lowers the hurdle to understand how things work.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to <a href=\'https://profiles.wordpress.org/no249a002/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>no249a002</a> for sharing his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Adeeb Malik (<a href=\'https://profiles.wordpress.org/adeebmalik/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adeebmalik</a>) for research, interviews, and contributing to this feature article.</p>\n\n\n\n<p>The <em>People of WordPress</em> series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WP Briefing: Episode 44: Minors, Majors, and Why We Have So Many Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Nov 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=13996\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"Hear Josepha Haden Chomphosy highlight the role of major and minor releases in the WordPress open source project in this episode.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/11/WP-Briefing-044.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8637:\"\n<p>In the forty-fourth episode of the WordPress Briefing, our host Josepha Haden Chomphosy highlights the role of major and minor releases in the WordPress open source project. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/12th_man_(football)\" data-type=\"URL\" data-id=\"https://en.wikipedia.org/wiki/12th_man_(football)\">Twelfth Man</a><br><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-13996\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:27]&nbsp;</strong></p>\n\n\n\n<p>At the top of November, a new major release for WordPress shipped. That was WordPress 6.1. I know I talked about it basically nonstop. Then two weeks later, there was a new minor release for WordPress. It was WordPress 6.1.1, which I did not talk about at all. Way back in episode four of this podcast, I dug into the overall release cycle and what someone could expect from a high-level logistics aspect.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:05]&nbsp;</strong></p>\n\n\n\n<p>And today we&#8217;re gonna take a quick look at minor releases in particular. Just as a general heads up, I always want to lean into sports metaphors when I&#8217;m talking about releases, and I think it&#8217;s because of the words major and minor. And so, I&#8217;ve done my level best to not include that in any of my explanations today.</p>\n\n\n\n<p>But I do have one, I do have one that&#8217;s a sports thing. So just if you don&#8217;t like sports, know that it&#8217;s just one little bit and we&#8217;ll try to be carefully quick around it together. All right, so minor releases. You may have noticed that I don&#8217;t mention minor releases nearly as often as I mention major releases. And yet, most of the time, when we have a major release of WordPress, there&#8217;s a minor release that gets started almost immediately after.</p>\n\n\n\n<p>So first major versus minor. Major releases in WordPress happen roughly three times a year, give or take a release. Inside a major release, you will find that we include features, so– brand new abilities, enhancements, which you can generally call improvements to existing abilities, and also any bug fix that we can find, big or small, we&#8217;ll take &#8217;em all.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:16]&nbsp;</strong></p>\n\n\n\n<p>So minor releases in WordPress happen about four or five times a year on average. Minor releases include patches for issues introduced in the major release and any bug fix that doesn&#8217;t add or change functionality.&nbsp;</p>\n\n\n\n<p>If you&#8217;re with me so far, you probably have noted that there&#8217;s basically always at least one minor release per major release. And you might have also noted that I said minors include patches for issues we introduced in a major.</p>\n\n\n\n<p>Now, if I were hearing this with fresh ears, the first thing I would wonder is, okay, so if you start working on the minor right after you release the major to deal with issues you know you introduced in the major– why just not ship the major while there are bugs in it? Great question. I&#8217;m glad you asked. So there are a few things worth knowing here.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:09]&nbsp;</strong></p>\n\n\n\n<p>Firstly, there is this concept of “ship and iterate,” which is present in both agile and open source. The idea is that we ship software as soon as we have confidence that what is in the release is non-breaking and represents our best guests at a better experience for our users.</p>\n\n\n\n<p>Once that is out there, we use feedback on the initial release to quickly iterate and ship another release. That way, we don&#8217;t hold back any good features. And since we already planned the immediate minor, any major issues that show up can be fixed in as little as two weeks. Secondly, there is the concept that with many eyes, all bugs are shallow, which is primarily present in open source.</p>\n\n\n\n<p>The idea here is that with enough people looking at a problem, that problem doesn&#8217;t stand a chance. So when a release is shipped in a workable state but with interactions that could use some refinement, the fastest way to find those refinements is to take it to the community of WordPress users and developers and invite them to co-create this CMS with us.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:10]</strong></p>\n\n\n\n<p>Which touches on my final thought. The concept of the user as co-creator.</p>\n\n\n\n<p>If we think about the development and evolution of our software as a team effort, then we can think of the people who use our software as what&#8217;s called the “Twelfth Man” That&#8217;s in quotes, and I will, I&#8217;ll leave a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>In sports, this refers to the fans. And if you&#8217;ve ever been to a live sporting event or played in any, you will know that the cheering and jeering from fans turns into this distinct motivating entity all its own. As a whole team or individual member, you know what you have to do. You know what you need to do in a game, but there&#8217;s something about that chaotic, loud roar of feedback that just brings life to what you&#8217;re doing, and that&#8217;s how I see our community of users.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:02]</strong></p>\n\n\n\n<p>So at the end of the day, the answer to the question of ‘why so many releases’ and the follow-up question of ‘why tolerate stable imperfection’ is largely the same. To get features into the hands of our users quickly so that we can always be breathing life into this CMS we care so much about.</p>\n\n\n\n<p>I hope that answers your questions about our release cadence, and if you didn&#8217;t come into this podcast having any questions about release cadences at all, I hope this new information brings a little extra light to the complexity of working in open source.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:32]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things.</p>\n\n\n\n<p>Big thing number one is that the State of the Word has been announced and is scheduled for December 15th. It&#8217;s a little earlier in the day than in past iterations, so I hope we get a new crew of listeners tuning in at the same time. I&#8217;ll leave a link to that in the show notes, or you can pop over to wordpress.org/news to see the announcement for yourself.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>Big thing number two is that team rep nominations are open on most teams right now. So if organization and people wrangling are high on your list of ways you can give back to WordPress, head on over to the team you contribute to and see how you raise your hand for that.&nbsp;</p>\n\n\n\n<p>Then big thing number three is that big-picture goals, hopes, and timelines are being gathered, and I will ship those shortly after the start of the new year.</p>\n\n\n\n<p>It will give us all an idea of where we want to focus our attention to ensure that WordPress continues to grow toward the future. You can keep an eye out for that on make.wordpress.org/project.&nbsp;</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13996\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress – October 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/11/the-month-in-wordpress-october-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Nov 2022 11:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13988\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:224:\"With the end of the year fast approaching, the WordPress project has not slowed down. Read on to learn more about the latest major release, WordPress 6.1, and the State of the Word 2022 live event, among other exciting news.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14083:\"\n<p>With the end of the year fast approaching, the WordPress project has not slowed down. Read on to learn more about the latest major release, WordPress 6.1, and the State of the Word 2022 live event, among other exciting news. It&#8217;s time to catch up on all things WordPress!</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Say hello to WordPress 6.1 “Misha”</h2>\n\n\n\n<p>The third and last major release of 2022, <a href=\"https://wordpress.org/news/2022/11/misha/\"><strong>WordPress 6.1 “Misha,”</strong></a> shipped on November 1, 2022. Named after jazz pianist <strong>Mikhail “Misha” Alperin</strong>, this release comes packed with many improvements that refine the site-building experience introduced earlier this year in WordPress 5.9 and 6.0, as well as <a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">accessibility</a> and <a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">performance</a> upgrades.</p>\n\n\n\n<p>WordPress 6.1 is also bundled with a new default block theme, <a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Twenty Twenty-Three (TT3)</a>, that features <strong>10 style variations</strong> designed by WordPress community members. These intentionally unique designs ensure that you can change the visual details of your site with ease—and within a single theme.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/1w9oywSa6Hw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Learn more about what&#8217;s in 6.1:</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/11/misha/\">WordPress 6.1 “Misha” Announcement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li>\n</ul>\n\n\n\n<p>Following WordPress 6.1 “Misha”, a <a href=\"https://wordpress.org/news/2022/11/wordpress-6-1-1-maintenance-release/\">6.1.1 maintenance release</a> landed on November 15, 2022. This minor release includes about 50 bug fixes.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 6.1.1</a></p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">State of the Word 2022 is coming on December 15</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1024%2C683&#038;ssl=1\" alt=\"Decorative blue background with text: &quot;State of the Word 2022. December 15, 2022. 1–2:30 P.M. EST (18–19:30 UTC.) New York City.&quot;\" class=\"wp-image-13956\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p><strong>State of the Word 2022</strong>, the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg, will be held on <strong>December 15, 2022</strong>. The event will take place in person in New York City and live-streamed via various WordPress.org social media platforms.</p>\n\n\n\n<p>You can also host or join a <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">State of the Word watch party</a> to enjoy the event with your WordPress friends.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">Learn more about State of the Word 2022</a></p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/27/whats-new-in-gutenberg-14-4-26-october/\"><strong>Gutenberg 14.4</strong></a> was released on October 26, 2022, with support for a distraction-free mode that allows a more focused writing experience. Other notable highlights include a redesigned pattern inserter, content locking to the Navigation block, and improvements to fluid typography.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/09/whats-new-in-gutenberg-14-5-9-november/\"><strong>Gutenberg 14.5</strong></a> sets the groundwork for future releases with code quality improvements and bug fixes. This version introduces a new “Document Overview” panel for easier access to the list view and document information, expands margin and padding support, and improves spacing visualizers. It was released on November 9, 2022.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Explore some of the latest enhancements to the writing experience in <a href=\"https://make.wordpress.org/core/2022/10/28/core-editor-improvement-advancing-the-writing-experience/\">this Core Editor Improvement post</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Documentation Contributor Day, WordPress.org redesign updates, and more</h2>\n\n\n\n<ul>\n<li>After a <a href=\"https://make.wordpress.org/core/2022/07/27/giving-fse-a-more-user-friendly-name/\">lively discussion</a> around the site editing terminology, WordPress Executive Director Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/updates/2022/11/04/site-editor-a-more-user-friendly-name/\">announced that the term &#8220;Site Editor&#8221; will be used going forward</a> in reference to the suite of site editing tools.</li>\n\n\n\n<li>Last month, the Docs Team successfully held its <a href=\"https://make.wordpress.org/docs/2022/10/28/the-documentation-team-contributor-day-summary/\">first online Contributor Day</a> to collaborate in real-time, help onboard new contributors, and work on backlog tasks.</li>\n\n\n\n<li>Progress and next steps for the WordPress.org website redesign were shared <a href=\"https://make.wordpress.org/meta/2022/10/21/wordpress-org-redesign-update/\">in this post</a>. The following pages that will get a refreshed look and feel soon include <a href=\"https://make.wordpress.org/design/2022/11/11/a-refresh-of-wordpress-org-showcase/\">Showcase</a> and <a href=\"https://make.wordpress.org/docs/2022/10/19/new-design-for-helphub-in-wordpress-org/\">Documentation (HelpHub)</a>.</li>\n\n\n\n<li>The WordPress.org Theme Directory <a href=\"https://make.wordpress.org/meta/2022/10/20/displaying-style-variations-for-supporting-themes/\">introduced a new feature</a> that allows visitors to preview style variations in block themes.</li>\n\n\n\n<li>Inspired by the Community Team’s efforts to reactivate meetup groups, the Polyglots Team is looking to start a <a href=\"https://make.wordpress.org/polyglots/2022/11/08/starting-a-polyglots-outreach-effort/\">Polyglots outreach project</a> and welcomes help.</li>\n\n\n\n<li>The Training Team shared an <a href=\"https://make.wordpress.org/training/2022/11/01/summary-update-courses-currently-in-development-1-november-2022/\">overview of some of the new Learn WordPress courses</a> they have been recently working on.</li>\n\n\n\n<li>Openverse’s catalog now includes <a href=\"https://make.wordpress.org/openverse/2022/11/16/openverse-now-includes-over-1-million-audio-records/\">more than one million audio records</a>!</li>\n\n\n\n<li>The WordPress Photo Directory also reached a significant milestone by surpassing 5,000 photos! <a href=\"https://make.wordpress.org/photos/2022/11/17/the-road-to-5000-photos-a-retrospective/\">Check out this celebratory retrospective from the Photos team</a>.</li>\n\n\n\n<li>Speaking of Openverse and the Photo Directory, <a href=\"https://wordpress.org/news/2022/11/episode-43-openverse-photo-directory-what-are-they-and-how-are-they-different/\">don’t miss the latest episode of the WP Briefing podcast</a>—it covers the differences between these two resources, and how they work to further openly-licensed media.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/10/people-of-wordpress-raghavendra-satish-peri/\">Raghavendra Satish Peri</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Enjoy a spooky Halloween Mad Libs story completed by community contributors in <a href=\"https://wordpress.org/news/2022/10/episode-42-something-spooky-this-way-comes/\">Episode 42 of WP Briefing</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>The <a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">Plugin Dependencies feature plugin is available for testing</a>. Provide your feedback by December 1, 2022.</li>\n\n\n\n<li>What does a genuinely sustainable WordPress community look like to you? Share your vision and thoughts in <a href=\"https://make.wordpress.org/project/2022/11/01/sustainability-channel-what-should-we-do/\">this discussion post</a>.</li>\n\n\n\n<li>The new WordPress developer blog is in public beta and <a href=\"https://make.wordpress.org/core/2022/11/21/wordpress-developer-blog-is-in-public-beta/\">ready for feedback</a>.</li>\n\n\n\n<li>The Core Team requests assistance with <a href=\"https://make.wordpress.org/hosting/2022/10/19/call-for-action-testing-rollback-feature/\">testing a new Rollback Feature in WordPress core</a>.</li>\n\n\n\n<li>Version 21.2 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/11/15/call-for-testing-wordpress-for-android-21-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/11/14/call-for-testing-wordpress-for-ios-21-2/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Were you involved in WordPress 6.1? <a href=\"https://make.wordpress.org/core/2022/11/09/wordpress-6-1-misha-retrospective/\">Share your thoughts</a> on the release process by December 15, 2022.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Event updates &amp; WordCamps</h2>\n\n\n\n<ul>\n<li>The WordCamp Asia organizing team is collaborating with WordCamp Central to bring the <a href=\"https://asia.wordcamp.org/2023/apply-for-wordcamp-asia-diversity-scholarship/\">WordCamp Asia Diversity Scholarship</a>. In addition, the team recently announced the <a href=\"https://asia.wordcamp.org/2023/speakers-announcement-round-1/\">first round of speakers</a>.</li>\n\n\n\n<li>Preparations for <a href=\"https://europe.wordcamp.org/2023/the-preparations-for-wordcamp-europe-2023-have-begun/\">WordCamp Europe 2023</a> are underway.</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1f7.png\" alt=\"🇧🇷\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://saopaulo.wordcamp.org/2022/\">WordCamp São Paulo</a>, Brazil on November 26, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://kolkata.wordcamp.org/2022/\">WordCamp Kolkata</a>, West Bengal, India on December 17-18, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Boost your speaking confidence in WordPress events. Register for the <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-wpdiversity-tickets-462153532657\">How to Own Your Expertise &amp; Start Speaking at WordPress Events</a> online workshop happening December 7, 2022.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this edition of The Month in WordPress:</em> <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/santanainniss/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santanainniss</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"State of the Word 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Nov 2022 17:14:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"sotw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13971\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"Join the WordPress project leaders for State of the Word 2022 in New York City on December 15, 2022. Also live-streamed on social media, you will hear about the WordPress project, open source, and more in this annual event.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:18044:\"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VeigCZuxnfY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Hello, WordPress!&nbsp;</p>\n\n\n\n<p><a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2022&amp;dates=20221215T180000Z/20221215T193000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+the+event+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0A%0Ahttps://wordpress.org/news/2022/11/state-of-the-word-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Mark your calendars</a>; it’s almost time for State of the Word 2022!</p>\n\n\n\n<p>State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, <a href=\"https://ma.tt\">Matt Mullenweg</a>. Every year, the event shares reflections on the project’s progress and the future of open source. Expect this and more in this year’s edition.</p>\n\n\n\n<p>This year’s event will take place in person in New York City and live-streamed via various WordPress.org social media platforms.&nbsp;</p>\n\n\n\n<p>Join Matt as he provides a retrospective of 2022, the latest WordPress releases, Site Editor advancements, and a return to in-person events around the globe, among other topics.</p>\n\n\n\n<p><strong>What:</strong> State of the Word 2022</p>\n\n\n\n<p><strong>When:</strong> <a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2022&amp;dates=20221215T180000Z/20221215T193000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+the+event+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0A%0Ahttps://wordpress.org/news/2022/11/state-of-the-word-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">December 15, 2022, 1–2:30 P.M. EST (18–19:30 UTC)</a></p>\n\n\n\n<p><strong>How:</strong> If you’re watching from the comfort of your home or <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">local watch party</a>, the live stream will be embedded in this post and available through the <a href=\"https://youtube.com/wordpress\">WordPress YouTube channel</a>.</p>\n\n\n\n<p><em>Update December 5, 2022: All in-person seats to State of the Word have been claimed at this time. Please join us online or at a local watch party instead!  </em><s>Would you like to join the in-person audience? <a href=\"https://wordcampcentral.survey.fm/request-a-seat-sotw-2022\">Request a seat by completing this survey</a>.</s></p>\n\n\n\n<h2 class=\"wp-block-heading\">Have a question for Matt?</h2>\n\n\n\n<p>State of the Word will include a Q&amp;A session. If you want to participate, you can either send your question ahead of time to <strong>ask-matt@wordcamp.org</strong> or ask during the event in the live stream chat on YouTube.</p>\n\n\n\n<p>Given the volume of questions that are usually submitted, please note that it may not be possible to answer all of them in the live Q&amp;A. A follow-up post will be published after the State of the Word to answer those not covered at the event.</p>\n\n\n\n<p>First time attending State of the Word? Check out <a href=\"https://wordpress.tv/tag/state-of-the-word/\">previous years&#8217; recordings on</a> <a href=\"https://wordpress.tv/tag/state-of-the-word/\">WordPress.tv</a> to get a sense of the event.</p>\n\n\n\n<p>See you in person or online on December 15!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-default\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"join-a-state-of-the-word-watch-party-near-you\">Join a State of the Word Watch Party near You</h2>\n\n\n\n<p>Can’t make it to New York? No problem, organize or join a watch party in your community in person or online. Like last year, the Community team has resources available to help! Check out <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">this handbook page</a>, which includes event templates, information on requesting a Zoom account, and how to get some swag.</p>\n\n\n\n<p>Gather together to look back on how WordPress has grown in 2022 and what is ahead for 2023. Stay up-to-date as a group on the latest happenings in the WordPress world and collaborate together on any questions you might have for Matt!</p>\n\n\n\n<p>Below you can find a list of State of the Word watch parties that will be updated regularly as the event approaches. If you don’t see a watch party in your region, <a href=\"https://meetup.com/pro/wordpress\">check this page on Meetup.com</a> to see if your local WordPress group is organizing one.</p>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/bali-wordpress-meetup\">Bali</a> – <a href=\"https://www.meetup.com/bali-wordpress-meetup/events/290077585/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Bandung-WordPress-Meetup\">Bandung</a> &#8211; <a href=\"https://www.meetup.com/Bandung-WordPress-Meetup/events/290189476/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/demak-wordpress-meetup\">Demak</a> &#8211; <a href=\"https://www.meetup.com/demak-wordpress-meetup/events/290139514/\">Nobar Akbar &#8211; State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Gresik-WordPress-Meetup\">Gresik</a> – <a href=\"https://www.meetup.com/Gresik-WordPress-Meetup/events/290094185/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Jakarta-WordPress-Meetup\">Jakarta</a> – <a href=\"https://www.meetup.com/Jakarta-WordPress-Meetup/events/290077621/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/semarang-wordpress-meetup\"></a><a href=\"https://www.meetup.com/semarang-wordpress-meetup\">Semarang</a> – <a href=\"https://www.meetup.com/semarang-wordpress-meetup/events/290078011/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/surabaya-wordpress-meetup\">Surabaya</a> – <a href=\"https://www.meetup.com/surabaya-wordpress-meetup/events/290094201/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Surakarta-WordPress-Meetup\">Surakarta</a> &#8211; <a href=\"https://www.meetup.com/Surakarta-WordPress-Meetup/events/290118717/\">Nobar Akbar &#8220;State of the Word&#8221; 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/tangsel-wordpress-meetup\">Tangsel</a> &#8211; <a href=\"https://www.meetup.com/tangsel-wordpress-meetup/events/290134068/\">[ONLINE] Nobar Akbar &#8220;State of the Word&#8221; Indonesia</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/tegal-wordpress-meetup/events/290031767/\">Tegal</a> – <a href=\"https://www.meetup.com/tegal-wordpress-meetup/events/290031767/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wonosobo-wordpress-meetup\">Wonosobo</a> &#8211; <a href=\"https://www.meetup.com/wonosobo-wordpress-meetup/events/290202948/\">Nobar akbar “State of the Word” di Indonesia &#8211; WordPress Meetup Wonosobo #4</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Yogyakarta-WordPress-Meetup\">Yogyakarta</a> &#8211; <a href=\"https://www.meetup.com/Yogyakarta-WordPress-Meetup/events/290210890/\">Nonton bareng akbar &#8220;State of the Word&#8221; dengan pembicara Matt Mullenweg</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wpgrandrapids\">Grand Rapids</a> – <a href=\"https://www.meetup.com/wpgrandrapids/events/290039217/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wordpress-jacksonville\">Jacksonville</a> &#8211; <a href=\"https://www.meetup.com/wordpress-jacksonville/events/290194941/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/learn-wordpress-online-workshops\">Learn WordPress Online Workshops</a> – <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290051844/\">State of the Word Watch Party (Live Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/okc-wordpress-users-group/events/290042857/\">Oklahoma City</a> – <a href=\"https://www.meetup.com/okc-wordpress-users-group/events/290042857/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/sanjosewp\">San Jose</a> – <a href=\"https://www.meetup.com/sanjosewp/events/290067642/\">State of the Word 2022 Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wordpressscv\">Santa Clarita</a> &#8211; <a href=\"https://www.meetup.com/wordpressscv/events/290262927/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/santa-cruz-wordpress\">Santa Cruz</a> – <a href=\"https://www.meetup.com/santa-cruz-wordpress/events/290067649/\">State of the Word 2022 Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Kochi-WordPress-Meetup\">Kochi – </a><a href=\"https://www.meetup.com/Kochi-WordPress-Meetup/events/289893144/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Vadodara-WordPress-Meetup\">Vadodara</a> &#8211; <a href=\"https://www.meetup.com/Vadodara-WordPress-Meetup/events/290171074/\">State of the Word 2022 &#8211; Vadodara WordPress Meetup (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/meetup-wordpress-ancona\"></a><a href=\"https://www.meetup.com/meetup-wordpress-ancona\">Ancona</a> – <a href=\"https://www.meetup.com/meetup-wordpress-ancona/events/289968378/\">State of the Word Watch Party + Auguri di Natale + Proposte 2023</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/RomaWordPress\">Roma (Rome)</a> &#8211; <a href=\"https://www.meetup.com/RomaWordPress/events/290220630/\">State of the Word Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Meetup-Vicenza\">Vicenza</a> &#8211; <a href=\"https://www.meetup.com/WordPress-Meetup-Vicenza/events/290283053/\">Watch party WPVI di &#8220;State of the Word 2022&#8221;</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Kagawa-WordPress-Meetup\">Kagawa</a> – <a href=\"https://www.meetup.com/Kagawa-WordPress-Meetup/events/290076405/\">State of the Word Watch Party ＋ 日本語字幕つけ [オンライン開催]</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Tokyo-WordPress-Meetup\">Tokyo</a> – <a href=\"https://www.meetup.com/Tokyo-WordPress-Meetup/events/289965452/\">State of the Word から来年の WordPress を考えよう！+ 忘年会</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Granada-WordPress-Meetup\"></a><a href=\"https://www.meetup.com/Granada-WordPress-Meetup\">Granada</a> – <a href=\"https://www.meetup.com/Granada-WordPress-Meetup/events/290016526/\">¡Veamos el State of the Word 2022!</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Sevilla/events/289745598/\">Sevilla</a> – <a href=\"https://www.meetup.com/WordPress-Sevilla/events/289745598/\">Watch Party Meetup y organizando el 2023</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ea.png\" alt=\"🇧🇪\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Antwerp-WordPress-Meetup\">Antwerp</a> &#8211; <a href=\"https://www.meetup.com/Antwerp-WordPress-Meetup/events/290193048/\">Ad hoc meetup: State of the Word 2022 viewing party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/faisalabad-wordpress-meetup\"></a><a href=\"https://www.meetup.com/faisalabad-wordpress-meetup\">Faisalabad</a>&nbsp; – <a href=\"https://www.meetup.com/faisalabad-wordpress-meetup/events/290061682/\">WordPress keynote address</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"🇨🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/geneva-wordpress\"></a><a href=\"https://www.meetup.com/geneva-wordpress\">Genève (Geneva)</a> – <a href=\"https://www.meetup.com/geneva-wordpress/events/289943099/\">State of the Word “Watch Party” et plus/and more (FR/EN) WordPress</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ed-1f1f9.png\" alt=\"🇭🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup\">Port-au-Prince</a> – <a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup/events/289909938/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ec.png\" alt=\"🇧🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Sofia-Meetup\">Sofia – </a><a href=\"https://www.meetup.com/WordPress-Sofia-Meetup/events/289915099/\">“State of the Word 2022” watch party!</a></li>\n</ul>\n\n\n\n<p>If you are planning a watch party for State of the Word and have questions, please email support@wordcamp.org. A member of the WordPress community team will assist you in the best way possible.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.1.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/11/wordpress-6-1-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2022 19:51:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"6.1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13918\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:244:\"WordPress 6.1.1 is now available for download. This maintenance release features several updates since the release of WordPress 6.1 on 01 November 2022. You can review a summary of the key changes in this release by visiting WordPress.org/news.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Jeffrey Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9925:\"\n<h2 class=\"wp-block-heading\">WordPress 6.1.1 is now available</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.1.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">29 bug fixes in Core</a> and <a href=\"https://github.com/WordPress/gutenberg/compare/ca07aa8354a1131dbabcc36dfcaf70e0c0891f54...6566f5fe9ece6ad5ae550349d3b1f0944a011040\">21 bug fixes</a> for the block editor. WordPress 6.1.1 is a short-cycle maintenance release. You can review a summary of the key updates in this release by reading the <a href=\"https://make.wordpress.org/core/2022/11/11/wordpress-6-1-1-rc1-is-now-available/\">RC1 announcement</a>.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/6-2/\">version 6.2</a> planned for 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.1.1.zip\">download WordPress 6.1.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-6-1-1/\">version 6.1.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>The WordPress 6.1.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, and <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>.</p>\n\n\n\n<p>WordPress 6.1.1 would not have been possible without the contributions of more than 105 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/10upsimon/\">10upsimon</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">Andre</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/azurseisme/\">azurseisme</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/mxbclang/\">Bethany Chobanian Lang</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjorn2404/\">bjorn2404</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codesdnc/\">codesdnc</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidvongries/\">David Vongries</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella</a>, <a href=\"https://profiles.wordpress.org/manuilov/\">Eugene M</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fpodhorsky/\">fpodhorsky</a>, <a href=\"https://profiles.wordpress.org/franz00/\">franzaurus</a>, <a href=\"https://profiles.wordpress.org/gamecreature/\">gamecreature</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gisgeo/\">gisgeo</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/innovext/\">Innovext</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/outrankjames/\">James</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/carazo/\">Javier Carazo</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jchambo/\">jchambo</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">jeffpaul</a>, <a href=\"https://profiles.wordpress.org/joelmadigan/\">joelmadigan</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jsh4/\">jsh4</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kacper3355/\">kacper3355</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/konyoldeath/\">konyoldeath</a>, <a href=\"https://profiles.wordpress.org/larsmqller/\">larsmqller</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leo Milo</a>, <a href=\"https://profiles.wordpress.org/lozula/\">lozula</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mw108/\">mw108</a>, <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a>, <a href=\"https://profiles.wordpress.org/nuvopoint/\">nuvoPoint</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a>, <a href=\"https://profiles.wordpress.org/pkolenbr/\">pkolenbr</a>, <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodricus/\">rodricus</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stentibbing/\">stentibbing</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, and <a href=\"https://profiles.wordpress.org/vtad/\">vtad</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C03LZ88NX6G\">#6-1-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13918\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 10 Jan 2023 03:57:39 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 09 Jan 2023 11:51:10 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211221080300\";}','no'),(537,'_transient_timeout_fusion_dynamic_css_81d64394372c87111f9c2f9fe6caa426','1661307005','no'),(603,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(654,'auto_update_plugins','a:6:{i:0;s:19:\"akismet/akismet.php\";i:1;s:33:\"fusion-builder/fusion-builder.php\";i:2;s:27:\"fusion-core/fusion-core.php\";i:3;s:9:\"hello.php\";i:4;s:24:\"wordpress-seo/wp-seo.php\";i:11;s:33:\"duplicate-post/duplicate-post.php\";}','no'),(662,'yoast_migrations_free','a:1:{s:7:\"version\";s:5:\"19.14\";}','yes'),(663,'wpseo','a:99:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:20:\"taxonomy_made_public\";s:29:\"indexables_indexing_completed\";b:0;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:5:\"19.14\";s:16:\"previous_version\";s:5:\"19.12\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1661304799;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:8:\"home_url\";s:31:\"https://test-site.wlvrotary.org\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:12:{s:18:\"fusion_tb_category\";s:18:\"fusion_tb_category\";s:14:\"event_location\";s:14:\"event-location\";s:15:\"event_organizer\";s:15:\"event-organizer\";s:10:\"event_type\";s:10:\"event-type\";s:12:\"event_type_2\";s:12:\"event-type-2\";s:18:\"portfolio_category\";s:18:\"portfolio_category\";s:16:\"portfolio_skills\";s:16:\"portfolio_skills\";s:14:\"portfolio_tags\";s:14:\"portfolio_tags\";s:12:\"faq_category\";s:12:\"faq_category\";s:10:\"slide-page\";s:10:\"slide-page\";s:16:\"element_category\";s:16:\"element_category\";s:17:\"template_category\";s:17:\"template_category\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1661304803;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:11:\"ajde_events\";i:4;s:15:\"avada_portfolio\";i:5;s:9:\"avada_faq\";i:6;s:5:\"slide\";}s:28:\"last_known_public_taxonomies\";a:15:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:18:\"fusion_tb_category\";i:4;s:14:\"event_location\";i:5;s:15:\"event_organizer\";i:6;s:10:\"event_type\";i:7;s:12:\"event_type_2\";i:8;s:18:\"portfolio_category\";i:9;s:16:\"portfolio_skills\";i:10;s:14:\"portfolio_tags\";i:11;s:12:\"faq_category\";i:12;s:10:\"slide-page\";i:13;s:16:\"element_category\";i:14;s:17:\"template_category\";}}','yes'),(664,'wpseo_titles','a:227:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:21:\"title-avada_portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-avada_portfolio\";s:0:\"\";s:23:\"noindex-avada_portfolio\";b:0;s:34:\"display-metabox-pt-avada_portfolio\";b:1;s:34:\"post_types-avada_portfolio-maintax\";i:0;s:32:\"schema-page-type-avada_portfolio\";s:7:\"WebPage\";s:35:\"schema-article-type-avada_portfolio\";s:4:\"None\";s:28:\"social-title-avada_portfolio\";s:9:\"%%title%%\";s:34:\"social-description-avada_portfolio\";s:0:\"\";s:32:\"social-image-url-avada_portfolio\";s:0:\"\";s:31:\"social-image-id-avada_portfolio\";i:0;s:31:\"title-ptarchive-avada_portfolio\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:34:\"metadesc-ptarchive-avada_portfolio\";s:0:\"\";s:33:\"bctitle-ptarchive-avada_portfolio\";s:0:\"\";s:33:\"noindex-ptarchive-avada_portfolio\";b:0;s:38:\"social-title-ptarchive-avada_portfolio\";s:21:\"%%pt_plural%% Archive\";s:44:\"social-description-ptarchive-avada_portfolio\";s:0:\"\";s:42:\"social-image-url-ptarchive-avada_portfolio\";s:0:\"\";s:41:\"social-image-id-ptarchive-avada_portfolio\";i:0;s:15:\"title-avada_faq\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-avada_faq\";s:0:\"\";s:17:\"noindex-avada_faq\";b:0;s:28:\"display-metabox-pt-avada_faq\";b:1;s:28:\"post_types-avada_faq-maintax\";i:0;s:26:\"schema-page-type-avada_faq\";s:7:\"WebPage\";s:29:\"schema-article-type-avada_faq\";s:4:\"None\";s:22:\"social-title-avada_faq\";s:9:\"%%title%%\";s:28:\"social-description-avada_faq\";s:0:\"\";s:26:\"social-image-url-avada_faq\";s:0:\"\";s:25:\"social-image-id-avada_faq\";i:0;s:25:\"title-ptarchive-avada_faq\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-ptarchive-avada_faq\";s:0:\"\";s:27:\"bctitle-ptarchive-avada_faq\";s:0:\"\";s:27:\"noindex-ptarchive-avada_faq\";b:0;s:32:\"social-title-ptarchive-avada_faq\";s:21:\"%%pt_plural%% Archive\";s:38:\"social-description-ptarchive-avada_faq\";s:0:\"\";s:36:\"social-image-url-ptarchive-avada_faq\";s:0:\"\";s:35:\"social-image-id-ptarchive-avada_faq\";i:0;s:11:\"title-slide\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:14:\"metadesc-slide\";s:0:\"\";s:13:\"noindex-slide\";b:0;s:24:\"display-metabox-pt-slide\";b:1;s:24:\"post_types-slide-maintax\";i:0;s:22:\"schema-page-type-slide\";s:7:\"WebPage\";s:25:\"schema-article-type-slide\";s:4:\"None\";s:18:\"social-title-slide\";s:9:\"%%title%%\";s:24:\"social-description-slide\";s:0:\"\";s:22:\"social-image-url-slide\";s:0:\"\";s:21:\"social-image-id-slide\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:28:\"title-tax-fusion_tb_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-fusion_tb_category\";s:0:\"\";s:38:\"display-metabox-tax-fusion_tb_category\";b:1;s:30:\"noindex-tax-fusion_tb_category\";b:0;s:35:\"social-title-tax-fusion_tb_category\";s:23:\"%%term_title%% Archives\";s:41:\"social-description-tax-fusion_tb_category\";s:0:\"\";s:39:\"social-image-url-tax-fusion_tb_category\";s:0:\"\";s:38:\"social-image-id-tax-fusion_tb_category\";i:0;s:36:\"taxonomy-fusion_tb_category-ptparent\";i:0;s:28:\"title-tax-portfolio_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-portfolio_category\";s:0:\"\";s:38:\"display-metabox-tax-portfolio_category\";b:1;s:30:\"noindex-tax-portfolio_category\";b:0;s:35:\"social-title-tax-portfolio_category\";s:23:\"%%term_title%% Archives\";s:41:\"social-description-tax-portfolio_category\";s:0:\"\";s:39:\"social-image-url-tax-portfolio_category\";s:0:\"\";s:38:\"social-image-id-tax-portfolio_category\";i:0;s:36:\"taxonomy-portfolio_category-ptparent\";i:0;s:26:\"title-tax-portfolio_skills\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-portfolio_skills\";s:0:\"\";s:36:\"display-metabox-tax-portfolio_skills\";b:1;s:28:\"noindex-tax-portfolio_skills\";b:0;s:33:\"social-title-tax-portfolio_skills\";s:23:\"%%term_title%% Archives\";s:39:\"social-description-tax-portfolio_skills\";s:0:\"\";s:37:\"social-image-url-tax-portfolio_skills\";s:0:\"\";s:36:\"social-image-id-tax-portfolio_skills\";i:0;s:34:\"taxonomy-portfolio_skills-ptparent\";i:0;s:24:\"title-tax-portfolio_tags\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-tax-portfolio_tags\";s:0:\"\";s:34:\"display-metabox-tax-portfolio_tags\";b:1;s:26:\"noindex-tax-portfolio_tags\";b:0;s:31:\"social-title-tax-portfolio_tags\";s:23:\"%%term_title%% Archives\";s:37:\"social-description-tax-portfolio_tags\";s:0:\"\";s:35:\"social-image-url-tax-portfolio_tags\";s:0:\"\";s:34:\"social-image-id-tax-portfolio_tags\";i:0;s:32:\"taxonomy-portfolio_tags-ptparent\";i:0;s:22:\"title-tax-faq_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-tax-faq_category\";s:0:\"\";s:32:\"display-metabox-tax-faq_category\";b:1;s:24:\"noindex-tax-faq_category\";b:0;s:29:\"social-title-tax-faq_category\";s:23:\"%%term_title%% Archives\";s:35:\"social-description-tax-faq_category\";s:0:\"\";s:33:\"social-image-url-tax-faq_category\";s:0:\"\";s:32:\"social-image-id-tax-faq_category\";i:0;s:30:\"taxonomy-faq_category-ptparent\";i:0;s:20:\"title-tax-slide-page\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-tax-slide-page\";s:0:\"\";s:30:\"display-metabox-tax-slide-page\";b:1;s:22:\"noindex-tax-slide-page\";b:0;s:27:\"social-title-tax-slide-page\";s:23:\"%%term_title%% Archives\";s:33:\"social-description-tax-slide-page\";s:0:\"\";s:31:\"social-image-url-tax-slide-page\";s:0:\"\";s:30:\"social-image-id-tax-slide-page\";i:0;s:28:\"taxonomy-slide-page-ptparent\";i:0;s:26:\"title-tax-element_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-element_category\";s:0:\"\";s:36:\"display-metabox-tax-element_category\";b:1;s:28:\"noindex-tax-element_category\";b:0;s:33:\"social-title-tax-element_category\";s:23:\"%%term_title%% Archives\";s:39:\"social-description-tax-element_category\";s:0:\"\";s:37:\"social-image-url-tax-element_category\";s:0:\"\";s:36:\"social-image-id-tax-element_category\";i:0;s:34:\"taxonomy-element_category-ptparent\";i:0;s:27:\"title-tax-template_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-tax-template_category\";s:0:\"\";s:37:\"display-metabox-tax-template_category\";b:1;s:29:\"noindex-tax-template_category\";b:0;s:34:\"social-title-tax-template_category\";s:23:\"%%term_title%% Archives\";s:40:\"social-description-tax-template_category\";s:0:\"\";s:38:\"social-image-url-tax-template_category\";s:0:\"\";s:37:\"social-image-id-tax-template_category\";i:0;s:35:\"taxonomy-template_category-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(665,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}}','yes'),(1194,'rewrite_rules','a:344:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:9:\"events/?$\";s:31:\"index.php?post_type=ajde_events\";s:39:\"events/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=ajde_events&feed=$matches[1]\";s:34:\"events/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=ajde_events&feed=$matches[1]\";s:26:\"events/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=ajde_events&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:11:\"services/?$\";s:35:\"index.php?post_type=avada_portfolio\";s:41:\"services/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:36:\"services/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:28:\"services/page/([0-9]{1,})/?$\";s:53:\"index.php?post_type=avada_portfolio&paged=$matches[1]\";s:12:\"faq-items/?$\";s:29:\"index.php?post_type=avada_faq\";s:42:\"faq-items/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:37:\"faq-items/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:29:\"faq-items/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=avada_faq&paged=$matches[1]\";s:44:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"fusion_tb_layout/([^/]+)/embed/?$\";s:49:\"index.php?fusion_tb_layout=$matches[1]&embed=true\";s:37:\"fusion_tb_layout/([^/]+)/trackback/?$\";s:43:\"index.php?fusion_tb_layout=$matches[1]&tb=1\";s:45:\"fusion_tb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?fusion_tb_layout=$matches[1]&paged=$matches[2]\";s:52:\"fusion_tb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?fusion_tb_layout=$matches[1]&cpage=$matches[2]\";s:39:\"fusion_tb_layout/([^/]+)/var(/(.*))?/?$\";s:54:\"index.php?fusion_tb_layout=$matches[1]&var=$matches[3]\";s:41:\"fusion_tb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?fusion_tb_layout=$matches[1]&page=$matches[2]\";s:33:\"fusion_tb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"fusion_tb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"fusion_tb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"fusion_tb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"fusion_tb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"fusion_tb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"fusion_tb_section/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"fusion_tb_section/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"fusion_tb_section/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"fusion_tb_section/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"fusion_tb_section/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"fusion_tb_section/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"fusion_tb_section/([^/]+)/embed/?$\";s:50:\"index.php?fusion_tb_section=$matches[1]&embed=true\";s:38:\"fusion_tb_section/([^/]+)/trackback/?$\";s:44:\"index.php?fusion_tb_section=$matches[1]&tb=1\";s:46:\"fusion_tb_section/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?fusion_tb_section=$matches[1]&paged=$matches[2]\";s:53:\"fusion_tb_section/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?fusion_tb_section=$matches[1]&cpage=$matches[2]\";s:40:\"fusion_tb_section/([^/]+)/var(/(.*))?/?$\";s:55:\"index.php?fusion_tb_section=$matches[1]&var=$matches[3]\";s:42:\"fusion_tb_section/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?fusion_tb_section=$matches[1]&page=$matches[2]\";s:34:\"fusion_tb_section/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"fusion_tb_section/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"fusion_tb_section/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"fusion_tb_section/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"fusion_tb_section/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"fusion_tb_section/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"fusion_tb_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?fusion_tb_category=$matches[1]&feed=$matches[2]\";s:54:\"fusion_tb_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?fusion_tb_category=$matches[1]&feed=$matches[2]\";s:35:\"fusion_tb_category/([^/]+)/embed/?$\";s:51:\"index.php?fusion_tb_category=$matches[1]&embed=true\";s:47:\"fusion_tb_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?fusion_tb_category=$matches[1]&paged=$matches[2]\";s:29:\"fusion_tb_category/([^/]+)/?$\";s:40:\"index.php?fusion_tb_category=$matches[1]\";s:39:\"fusion_form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"fusion_form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"fusion_form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"fusion_form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"fusion_form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"fusion_form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"fusion_form/([^/]+)/embed/?$\";s:44:\"index.php?fusion_form=$matches[1]&embed=true\";s:32:\"fusion_form/([^/]+)/trackback/?$\";s:38:\"index.php?fusion_form=$matches[1]&tb=1\";s:40:\"fusion_form/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?fusion_form=$matches[1]&paged=$matches[2]\";s:47:\"fusion_form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?fusion_form=$matches[1]&cpage=$matches[2]\";s:34:\"fusion_form/([^/]+)/var(/(.*))?/?$\";s:49:\"index.php?fusion_form=$matches[1]&var=$matches[3]\";s:36:\"fusion_form/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?fusion_form=$matches[1]&page=$matches[2]\";s:28:\"fusion_form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"fusion_form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"fusion_form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"fusion_form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"fusion_form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"fusion_form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:55:\"event-location/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?event_location=$matches[1]&feed=$matches[2]\";s:50:\"event-location/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?event_location=$matches[1]&feed=$matches[2]\";s:31:\"event-location/([^/]+)/embed/?$\";s:47:\"index.php?event_location=$matches[1]&embed=true\";s:43:\"event-location/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?event_location=$matches[1]&paged=$matches[2]\";s:25:\"event-location/([^/]+)/?$\";s:36:\"index.php?event_location=$matches[1]\";s:56:\"event-organizer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?event_organizer=$matches[1]&feed=$matches[2]\";s:51:\"event-organizer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?event_organizer=$matches[1]&feed=$matches[2]\";s:32:\"event-organizer/([^/]+)/embed/?$\";s:48:\"index.php?event_organizer=$matches[1]&embed=true\";s:44:\"event-organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?event_organizer=$matches[1]&paged=$matches[2]\";s:26:\"event-organizer/([^/]+)/?$\";s:37:\"index.php?event_organizer=$matches[1]\";s:51:\"event-type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?event_type=$matches[1]&feed=$matches[2]\";s:46:\"event-type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?event_type=$matches[1]&feed=$matches[2]\";s:27:\"event-type/([^/]+)/embed/?$\";s:43:\"index.php?event_type=$matches[1]&embed=true\";s:39:\"event-type/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?event_type=$matches[1]&paged=$matches[2]\";s:21:\"event-type/([^/]+)/?$\";s:32:\"index.php?event_type=$matches[1]\";s:53:\"event-type-2/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?event_type_2=$matches[1]&feed=$matches[2]\";s:48:\"event-type-2/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?event_type_2=$matches[1]&feed=$matches[2]\";s:29:\"event-type-2/([^/]+)/embed/?$\";s:45:\"index.php?event_type_2=$matches[1]&embed=true\";s:41:\"event-type-2/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?event_type_2=$matches[1]&paged=$matches[2]\";s:23:\"event-type-2/([^/]+)/?$\";s:34:\"index.php?event_type_2=$matches[1]\";s:34:\"events/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"events/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"events/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"events/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"events/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"events/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"events/([^/]+)/embed/?$\";s:44:\"index.php?ajde_events=$matches[1]&embed=true\";s:27:\"events/([^/]+)/trackback/?$\";s:38:\"index.php?ajde_events=$matches[1]&tb=1\";s:47:\"events/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?ajde_events=$matches[1]&feed=$matches[2]\";s:42:\"events/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?ajde_events=$matches[1]&feed=$matches[2]\";s:35:\"events/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?ajde_events=$matches[1]&paged=$matches[2]\";s:42:\"events/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?ajde_events=$matches[1]&cpage=$matches[2]\";s:29:\"events/([^/]+)/var(/(.*))?/?$\";s:49:\"index.php?ajde_events=$matches[1]&var=$matches[3]\";s:31:\"events/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?ajde_events=$matches[1]&page=$matches[2]\";s:23:\"events/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"events/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"events/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"events/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"events/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"events/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"services/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"services/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"services/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"services/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"services/([^/]+)/embed/?$\";s:48:\"index.php?avada_portfolio=$matches[1]&embed=true\";s:29:\"services/([^/]+)/trackback/?$\";s:42:\"index.php?avada_portfolio=$matches[1]&tb=1\";s:49:\"services/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:44:\"services/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:37:\"services/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&paged=$matches[2]\";s:44:\"services/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&cpage=$matches[2]\";s:31:\"services/([^/]+)/var(/(.*))?/?$\";s:53:\"index.php?avada_portfolio=$matches[1]&var=$matches[3]\";s:33:\"services/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&page=$matches[2]\";s:25:\"services/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"services/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"services/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"services/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio_category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio_category=$matches[1]&embed=true\";s:47:\"portfolio_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio_category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio_category/([^/]+)/?$\";s:40:\"index.php?portfolio_category=$matches[1]\";s:57:\"portfolio_skills/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:52:\"portfolio_skills/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:33:\"portfolio_skills/([^/]+)/embed/?$\";s:49:\"index.php?portfolio_skills=$matches[1]&embed=true\";s:45:\"portfolio_skills/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?portfolio_skills=$matches[1]&paged=$matches[2]\";s:27:\"portfolio_skills/([^/]+)/?$\";s:38:\"index.php?portfolio_skills=$matches[1]\";s:55:\"portfolio_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:50:\"portfolio_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:31:\"portfolio_tags/([^/]+)/embed/?$\";s:47:\"index.php?portfolio_tags=$matches[1]&embed=true\";s:43:\"portfolio_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio_tags=$matches[1]&paged=$matches[2]\";s:25:\"portfolio_tags/([^/]+)/?$\";s:36:\"index.php?portfolio_tags=$matches[1]\";s:37:\"faq-items/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"faq-items/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"faq-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"faq-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"faq-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"faq-items/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"faq-items/([^/]+)/embed/?$\";s:42:\"index.php?avada_faq=$matches[1]&embed=true\";s:30:\"faq-items/([^/]+)/trackback/?$\";s:36:\"index.php?avada_faq=$matches[1]&tb=1\";s:50:\"faq-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:45:\"faq-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:38:\"faq-items/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&paged=$matches[2]\";s:45:\"faq-items/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&cpage=$matches[2]\";s:32:\"faq-items/([^/]+)/var(/(.*))?/?$\";s:47:\"index.php?avada_faq=$matches[1]&var=$matches[3]\";s:34:\"faq-items/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?avada_faq=$matches[1]&page=$matches[2]\";s:26:\"faq-items/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"faq-items/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"faq-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"faq-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"faq-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"faq-items/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"faq_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:48:\"faq_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:29:\"faq_category/([^/]+)/embed/?$\";s:45:\"index.php?faq_category=$matches[1]&embed=true\";s:41:\"faq_category/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?faq_category=$matches[1]&paged=$matches[2]\";s:23:\"faq_category/([^/]+)/?$\";s:34:\"index.php?faq_category=$matches[1]\";s:33:\"slide/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"slide/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"slide/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"slide/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"slide/([^/]+)/embed/?$\";s:38:\"index.php?slide=$matches[1]&embed=true\";s:26:\"slide/([^/]+)/trackback/?$\";s:32:\"index.php?slide=$matches[1]&tb=1\";s:34:\"slide/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&paged=$matches[2]\";s:41:\"slide/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&cpage=$matches[2]\";s:28:\"slide/([^/]+)/var(/(.*))?/?$\";s:43:\"index.php?slide=$matches[1]&var=$matches[3]\";s:30:\"slide/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?slide=$matches[1]&page=$matches[2]\";s:22:\"slide/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"slide/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"slide/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"slide/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"slide-page/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:46:\"slide-page/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:27:\"slide-page/([^/]+)/embed/?$\";s:43:\"index.php?slide-page=$matches[1]&embed=true\";s:39:\"slide-page/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?slide-page=$matches[1]&paged=$matches[2]\";s:21:\"slide-page/([^/]+)/?$\";s:32:\"index.php?slide-page=$matches[1]\";s:43:\"fusion_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"fusion_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"fusion_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"fusion_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"fusion_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"fusion_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"fusion_template/([^/]+)/embed/?$\";s:48:\"index.php?fusion_template=$matches[1]&embed=true\";s:36:\"fusion_template/([^/]+)/trackback/?$\";s:42:\"index.php?fusion_template=$matches[1]&tb=1\";s:44:\"fusion_template/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?fusion_template=$matches[1]&paged=$matches[2]\";s:51:\"fusion_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?fusion_template=$matches[1]&cpage=$matches[2]\";s:38:\"fusion_template/([^/]+)/var(/(.*))?/?$\";s:53:\"index.php?fusion_template=$matches[1]&var=$matches[3]\";s:40:\"fusion_template/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?fusion_template=$matches[1]&page=$matches[2]\";s:32:\"fusion_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"fusion_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"fusion_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"fusion_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"fusion_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"fusion_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"fusion_element/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"fusion_element/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"fusion_element/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"fusion_element/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"fusion_element/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"fusion_element/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"fusion_element/([^/]+)/embed/?$\";s:47:\"index.php?fusion_element=$matches[1]&embed=true\";s:35:\"fusion_element/([^/]+)/trackback/?$\";s:41:\"index.php?fusion_element=$matches[1]&tb=1\";s:43:\"fusion_element/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?fusion_element=$matches[1]&paged=$matches[2]\";s:50:\"fusion_element/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?fusion_element=$matches[1]&cpage=$matches[2]\";s:37:\"fusion_element/([^/]+)/var(/(.*))?/?$\";s:52:\"index.php?fusion_element=$matches[1]&var=$matches[3]\";s:39:\"fusion_element/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?fusion_element=$matches[1]&page=$matches[2]\";s:31:\"fusion_element/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"fusion_element/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"fusion_element/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"fusion_element/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"fusion_element/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"fusion_element/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"element_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?element_category=$matches[1]&feed=$matches[2]\";s:52:\"element_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?element_category=$matches[1]&feed=$matches[2]\";s:33:\"element_category/([^/]+)/embed/?$\";s:49:\"index.php?element_category=$matches[1]&embed=true\";s:45:\"element_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?element_category=$matches[1]&paged=$matches[2]\";s:27:\"element_category/([^/]+)/?$\";s:38:\"index.php?element_category=$matches[1]\";s:58:\"template_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?template_category=$matches[1]&feed=$matches[2]\";s:53:\"template_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?template_category=$matches[1]&feed=$matches[2]\";s:34:\"template_category/([^/]+)/embed/?$\";s:50:\"index.php?template_category=$matches[1]&embed=true\";s:46:\"template_category/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?template_category=$matches[1]&paged=$matches[2]\";s:28:\"template_category/([^/]+)/?$\";s:39:\"index.php?template_category=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=1700&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:59:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/var(/(.*))?/?$\";s:96:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&var=$matches[6]\";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})/([0-9]{1,2})/var(/(.*))?/?$\";s:79:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&var=$matches[5]\";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})/([0-9]{1,2})/var(/(.*))?/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&var=$matches[4]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:25:\"([0-9]{4})/var(/(.*))?/?$\";s:42:\"index.php?year=$matches[1]&var=$matches[3]\";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'),(684,'duplicate_post_show_notice','1','yes'),(685,'duplicate_post_copytitle','1','yes'),(686,'duplicate_post_copydate','0','yes'),(687,'duplicate_post_copystatus','0','yes'),(688,'duplicate_post_copyslug','0','yes'),(689,'duplicate_post_copyexcerpt','1','yes'),(690,'duplicate_post_copycontent','1','yes'),(691,'duplicate_post_copythumbnail','1','yes'),(692,'duplicate_post_copytemplate','1','yes'),(693,'duplicate_post_copyformat','1','yes'),(694,'duplicate_post_copyauthor','0','yes'),(695,'duplicate_post_copypassword','0','yes'),(696,'duplicate_post_copyattachments','0','yes'),(697,'duplicate_post_copychildren','0','yes'),(698,'duplicate_post_copycomments','0','yes'),(699,'duplicate_post_copymenuorder','1','yes'),(700,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(701,'duplicate_post_blacklist','','yes'),(702,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(703,'duplicate_post_show_original_column','0','yes'),(704,'duplicate_post_show_original_in_post_states','0','yes'),(705,'duplicate_post_show_original_meta_box','0','yes'),(706,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),(707,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),(708,'duplicate_post_version','4.5','yes'),(243,'fusion_options','a:1030:{s:8:\"last_tab\";s:0:\"\";s:6:\"layout\";s:4:\"wide\";s:10:\"site_width\";s:6:\"1200px\";s:13:\"margin_offset\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:13:\"scroll_offset\";s:4:\"full\";s:18:\"boxed_modal_shadow\";s:0:\"\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";}s:13:\"page_template\";s:10:\"site_width\";s:16:\"hundredp_padding\";s:4:\"30px\";s:13:\"sidebar_width\";s:3:\"24%\";s:14:\"sidebar_gutter\";s:2:\"6%\";s:17:\"sidebar_2_1_width\";s:3:\"20%\";s:17:\"sidebar_2_2_width\";s:3:\"20%\";s:19:\"dual_sidebar_gutter\";s:2:\"4%\";s:10:\"responsive\";s:1:\"1\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:23:\"side_header_break_point\";s:3:\"840\";s:19:\"content_break_point\";s:3:\"840\";s:19:\"sidebar_break_point\";s:3:\"800\";s:11:\"mobile_zoom\";s:1:\"1\";s:16:\"visibility_small\";s:3:\"640\";s:17:\"visibility_medium\";s:4:\"1024\";s:22:\"typography_sensitivity\";s:4:\"0.00\";s:17:\"typography_factor\";s:4:\"1.50\";s:13:\"color_palette\";a:16:{s:6:\"color1\";a:2:{s:5:\"label\";s:7:\"Color 1\";s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color2\";a:2:{s:5:\"label\";s:7:\"Color 2\";s:5:\"color\";s:7:\"#f9f9f9\";}s:6:\"color3\";a:2:{s:5:\"label\";s:7:\"Color 3\";s:5:\"color\";s:7:\"#e2e2e2\";}s:6:\"color4\";a:2:{s:5:\"label\";s:7:\"Color 4\";s:5:\"color\";s:7:\"#ffb600\";}s:6:\"color5\";a:2:{s:5:\"label\";s:7:\"Color 5\";s:5:\"color\";s:7:\"#ff9500\";}s:6:\"color6\";a:2:{s:5:\"label\";s:7:\"Color 6\";s:5:\"color\";s:7:\"#4a4e57\";}s:6:\"color7\";a:2:{s:5:\"label\";s:7:\"Color 7\";s:5:\"color\";s:7:\"#212934\";}s:6:\"color8\";a:2:{s:5:\"label\";s:7:\"Color 8\";s:5:\"color\";s:7:\"#000000\";}s:14:\"custom_color_1\";a:2:{s:5:\"label\";s:9:\"Dark Blue\";s:5:\"color\";s:7:\"#0c3266\";}s:14:\"custom_color_2\";a:2:{s:5:\"label\";s:8:\"mid blue\";s:5:\"color\";s:7:\"#0c3c7c\";}s:14:\"custom_color_3\";a:2:{s:5:\"label\";s:13:\"Rotary Yellow\";s:5:\"color\";s:7:\"#f7a81b\";}s:14:\"custom_color_4\";a:2:{s:5:\"label\";s:13:\"Rotary Silver\";s:5:\"color\";s:7:\"#d0cfcd\";}s:14:\"custom_color_5\";a:2:{s:5:\"label\";s:12:\"Rotary Cloud\";s:5:\"color\";s:7:\"#d3d3d3\";}s:14:\"custom_color_6\";a:2:{s:5:\"label\";s:10:\"Light Blue\";s:5:\"color\";s:21:\"rgba(98,129,186,0.72)\";}s:14:\"custom_color_7\";a:2:{s:5:\"label\";s:10:\"Focus Blue\";s:5:\"color\";s:7:\"#3884af\";}s:14:\"custom_color_8\";a:2:{s:5:\"label\";s:9:\"New Color\";s:5:\"color\";s:7:\"#ffffff\";}}s:13:\"primary_color\";s:25:\"var(--awb-custom_color_2)\";s:15:\"slider_position\";s:5:\"below\";s:15:\"header_position\";s:3:\"top\";s:13:\"header_layout\";s:2:\"v3\";s:19:\"header_left_content\";s:12:\"social_links\";s:20:\"header_right_content\";s:10:\"navigation\";s:17:\"header_v4_content\";s:18:\"tagline_and_search\";s:13:\"header_number\";s:28:\"Call Us Today! 1.555.555.555\";s:12:\"header_email\";s:19:\"info@yourdomain.com\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:18:\"header_banner_code\";s:0:\"\";s:15:\"header_bg_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:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:9:\"no-repeat\";s:17:\"side_header_width\";s:3:\"280\";s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"header_bg_color\";s:17:\"var(--awb-color1)\";s:23:\"archive_header_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"header_border_color\";s:19:\"rgba(226,226,226,0)\";s:19:\"header_top_bg_color\";s:17:\"var(--awb-color4)\";s:17:\"tagline_font_size\";s:4:\"16px\";s:18:\"tagline_font_color\";s:17:\"var(--awb-color6)\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"0\";s:26:\"header_sticky_type2_layout\";s:9:\"menu_only\";s:20:\"header_sticky_shadow\";s:1:\"1\";s:22:\"header_sticky_bg_color\";s:17:\"var(--awb-color1)\";s:24:\"header_sticky_menu_color\";s:17:\"var(--awb-color7)\";s:25:\"header_sticky_nav_padding\";s:2:\"35\";s:27:\"header_sticky_nav_font_size\";s:4:\"14px\";s:10:\"nav_height\";s:2:\"94\";s:20:\"menu_highlight_style\";s:3:\"bar\";s:25:\"menu_highlight_background\";s:17:\"var(--awb-color4)\";s:15:\"menu_arrow_size\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:20:\"nav_highlight_border\";s:1:\"3\";s:11:\"nav_padding\";s:2:\"48\";s:18:\"mobile_nav_padding\";s:2:\"25\";s:15:\"megamenu_shadow\";s:1:\"1\";s:28:\"main_menu_sub_menu_animation\";s:4:\"fade\";s:29:\"dropdown_menu_top_border_size\";s:1:\"3\";s:19:\"dropdown_menu_width\";s:3:\"200\";s:34:\"mainmenu_dropdown_vertical_padding\";s:2:\"12\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"0\";s:31:\"menu_display_dropdown_indicator\";s:4:\"none\";s:20:\"main_nav_search_icon\";s:1:\"1\";s:22:\"main_nav_search_layout\";s:7:\"overlay\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:25:\"main_nav_highlight_radius\";s:3:\"2px\";s:17:\"menu_sub_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"menu_bg_hover_color\";s:17:\"var(--awb-color2)\";s:18:\"menu_sub_sep_color\";s:17:\"var(--awb-color3)\";s:17:\"menu_h45_bg_color\";s:17:\"var(--awb-color1)\";s:14:\"nav_typography\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"14px\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:15:\"menu_text_align\";s:6:\"center\";s:22:\"menu_hover_first_color\";s:17:\"var(--awb-color8)\";s:14:\"menu_sub_color\";s:17:\"var(--awb-color7)\";s:22:\"nav_dropdown_font_size\";s:4:\"14px\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:24:\"flyout_nav_icons_padding\";s:2:\"32\";s:22:\"flyout_menu_icon_color\";s:17:\"var(--awb-color7)\";s:28:\"flyout_menu_icon_hover_color\";s:17:\"var(--awb-color8)\";s:28:\"flyout_menu_background_color\";s:17:\"var(--awb-color1)\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:24:\"flyout_menu_item_padding\";s:2:\"32\";s:23:\"topmenu_dropwdown_width\";s:3:\"200\";s:29:\"header_top_first_border_color\";s:17:\"var(--awb-color1)\";s:23:\"header_top_sub_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"header_top_menu_bg_hover_color\";s:17:\"var(--awb-color2)\";s:29:\"header_top_menu_sub_sep_color\";s:17:\"var(--awb-color3)\";s:14:\"snav_font_size\";s:4:\"12px\";s:11:\"sec_menu_lh\";s:4:\"48px\";s:10:\"snav_color\";s:17:\"var(--awb-color1)\";s:25:\"header_top_menu_sub_color\";s:17:\"var(--awb-color6)\";s:31:\"header_top_menu_sub_hover_color\";s:17:\"var(--awb-color8)\";s:18:\"mobile_menu_design\";s:7:\"classic\";s:28:\"mobile_menu_icons_top_margin\";s:1:\"2\";s:22:\"mobile_menu_nav_height\";s:2:\"42\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:18:\"mobile_menu_search\";s:1:\"1\";s:29:\"mobile_menu_submenu_indicator\";s:1:\"1\";s:22:\"mobile_header_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"mobile_archive_header_bg_color\";s:17:\"var(--awb-color1)\";s:28:\"mobile_menu_background_color\";s:17:\"var(--awb-color1)\";s:23:\"mobile_menu_hover_color\";s:17:\"var(--awb-color2)\";s:24:\"mobile_menu_border_color\";s:17:\"var(--awb-color3)\";s:24:\"mobile_menu_toggle_color\";s:17:\"var(--awb-color3)\";s:22:\"mobile_menu_typography\";a:9:{s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:4:\"42px\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color6)\";}s:28:\"mobile_menu_font_hover_color\";s:17:\"var(--awb-color7)\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:14:\"megamenu_width\";s:10:\"site_width\";s:18:\"megamenu_max_width\";s:4:\"1200\";s:31:\"megamenu_interior_content_width\";s:14:\"viewport_width\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:1:\"7\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:18:\"menu_icon_position\";s:4:\"left\";s:14:\"menu_icon_size\";s:2:\"14\";s:15:\"menu_icon_color\";s:17:\"var(--awb-color7)\";s:21:\"menu_icon_hover_color\";s:17:\"var(--awb-color8)\";s:19:\"menu_thumbnail_size\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:14:\"logo_alignment\";s:4:\"left\";s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"34px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"34px\";s:4:\"left\";s:3:\"0px\";}s:15:\"logo_background\";s:1:\"0\";s:21:\"logo_background_color\";s:17:\"var(--awb-color4)\";s:16:\"logo_custom_link\";s:0:\"\";s:4:\"logo\";a:5:{s:3:\"url\";s:79:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo1x.png\";s:2:\"id\";s:4:\"1685\";s:6:\"height\";s:2:\"72\";s:5:\"width\";s:3:\"231\";s:9:\"thumbnail\";s:86:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo1x-150x72.png\";}s:11:\"logo_retina\";a:5:{s:3:\"url\";s:79:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png\";s:2:\"id\";s:4:\"1684\";s:6:\"height\";s:3:\"122\";s:5:\"width\";s:3:\"414\";s:9:\"thumbnail\";s:87:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-150x122.png\";}s:18:\"sticky_header_logo\";a:5:{s:3:\"url\";s:79:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo1x.png\";s:2:\"id\";s:4:\"1685\";s:6:\"height\";s:2:\"72\";s:5:\"width\";s:3:\"231\";s:9:\"thumbnail\";s:86:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo1x-150x72.png\";}s:25:\"sticky_header_logo_retina\";a:5:{s:3:\"url\";s:79:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png\";s:2:\"id\";s:4:\"1684\";s:6:\"height\";s:3:\"122\";s:5:\"width\";s:3:\"414\";s:9:\"thumbnail\";s:87:\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-150x122.png\";}s:11:\"mobile_logo\";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:18:\"mobile_logo_retina\";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:8:\"fav_icon\";a:5:{s:3:\"url\";s:74:\"https://test-site.wlvrotary.org/wp-content/uploads/2021/04/favicon-new.png\";s:2:\"id\";s:3:\"680\";s:6:\"height\";s:3:\"138\";s:5:\"width\";s:3:\"138\";s:9:\"thumbnail\";s:74:\"https://test-site.wlvrotary.org/wp-content/uploads/2021/04/favicon-new.png\";}s:20:\"fav_icon_apple_touch\";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:\"fav_icon_android\";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:13:\"fav_icon_edge\";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:\"page_title_bar\";s:4:\"hide\";s:17:\"page_title_bar_bs\";s:11:\"breadcrumbs\";s:19:\"page_title_bar_text\";s:1:\"1\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:5:\"300px\";s:24:\"page_title_mobile_height\";s:5:\"240px\";s:19:\"page_title_bg_color\";s:17:\"var(--awb-color2)\";s:23:\"page_title_border_color\";s:19:\"rgba(226,226,226,0)\";s:20:\"page_title_font_size\";s:4:\"54px\";s:22:\"page_title_line_height\";s:0:\"\";s:16:\"page_title_color\";s:17:\"var(--awb-color7)\";s:30:\"page_title_subheader_font_size\";s:4:\"18px\";s:26:\"page_title_subheader_color\";s:17:\"var(--awb-color6)\";s:20:\"page_title_alignment\";s:6:\"center\";s:13:\"page_title_bg\";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:20:\"page_title_bg_retina\";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:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:21:\"breadcrumbs_font_size\";s:4:\"14px\";s:22:\"breadcrumbs_text_color\";s:17:\"var(--awb-color6)\";s:28:\"breadcrumbs_text_hover_color\";s:17:\"var(--awb-color4)\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:20:\"breadcrumb_show_leaf\";s:1:\"1\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:19:\"slidingbar_position\";s:3:\"top\";s:16:\"slidingbar_width\";s:5:\"300px\";s:17:\"slidingbar_sticky\";s:1:\"1\";s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:27:\"slidingbar_column_alignment\";s:7:\"stacked\";s:26:\"slidingbar_content_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";}s:24:\"slidingbar_content_align\";s:4:\"left\";s:23:\"slidingbar_toggle_style\";s:6:\"circle\";s:19:\"slidingbar_bg_color\";s:17:\"var(--awb-color7)\";s:24:\"slidingbar_divider_color\";s:17:\"var(--awb-color7)\";s:28:\"slidingbar_toggle_icon_color\";s:17:\"var(--awb-color1)\";s:20:\"slidingbar_font_size\";s:4:\"14px\";s:25:\"slidingbar_headings_color\";s:17:\"var(--awb-color1)\";s:21:\"slidingbar_text_color\";s:17:\"var(--awb-color1)\";s:21:\"slidingbar_link_color\";s:17:\"var(--awb-color1)\";s:27:\"slidingbar_link_color_hover\";s:17:\"var(--awb-color1)\";s:17:\"slidingbar_border\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";s:1:\"4\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"0\";s:11:\"footer_text\";s:217:\"Copyright 2012 - 2021 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://theme-fusion.com\">ThemeFusion</a> | All Rights Reserved | Powered by <a href=\"https://wordpress.org\">WordPress</a>\";s:16:\"footerw_bg_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:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:9:\"no-repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:16:\"footer_100_width\";s:1:\"0\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"64px\";s:4:\"left\";s:3:\"0px\";}s:15:\"footer_bg_color\";s:17:\"var(--awb-color7)\";s:18:\"footer_border_size\";s:1:\"0\";s:19:\"footer_border_color\";s:17:\"var(--awb-color3)\";s:19:\"footer_divider_line\";s:1:\"0\";s:24:\"footer_divider_line_size\";s:1:\"1\";s:25:\"footer_divider_line_style\";s:5:\"solid\";s:20:\"footer_divider_color\";s:17:\"var(--awb-color7)\";s:22:\"footer_widgets_padding\";s:4:\"16px\";s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:18:\"copyright_bg_color\";s:17:\"var(--awb-color7)\";s:21:\"copyright_border_size\";s:1:\"0\";s:22:\"copyright_border_color\";s:17:\"var(--awb-color7)\";s:26:\"footer_headings_typography\";a:9:{s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"600\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color1)\";}s:17:\"footer_text_color\";s:17:\"var(--awb-color1)\";s:17:\"footer_link_color\";s:99:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\";s:23:\"footer_link_color_hover\";s:17:\"var(--awb-color4)\";s:20:\"copyright_text_color\";s:17:\"var(--awb-color1)\";s:20:\"copyright_link_color\";s:99:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\";s:26:\"copyright_link_color_hover\";s:17:\"var(--awb-color4)\";s:19:\"copyright_font_size\";s:4:\"13px\";s:24:\"responsive_sidebar_order\";s:25:\"content,sidebar,sidebar-2\";s:14:\"sidebar_sticky\";s:4:\"none\";s:15:\"sidebar_padding\";s:3:\"0px\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"18px\";s:21:\"sidebar_heading_color\";s:17:\"var(--awb-color7)\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_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:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:8:\"bg_color\";s:17:\"var(--awb-color1)\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_color\";s:17:\"var(--awb-color1)\";s:16:\"content_bg_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:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:9:\"no-repeat\";s:15:\"typography_sets\";a:5:{s:11:\"typography1\";a:8:{s:5:\"label\";s:8:\"Headings\";s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"700\";s:9:\"font-size\";s:4:\"41px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography2\";a:8:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"600\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:3:\"2px\";s:14:\"text-transform\";s:9:\"uppercase\";}s:11:\"typography3\";a:8:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"700\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.15\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography4\";a:8:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:14:\"Georgia, serif\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography5\";a:8:{s:5:\"label\";s:5:\"Small\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";}}s:15:\"body_typography\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:10:\"link_color\";s:25:\"var(--awb-custom_color_2)\";s:16:\"link_hover_color\";s:25:\"var(--awb-custom_color_2)\";s:15:\"link_decoration\";s:1:\"0\";s:25:\"link_decoration_exclusion\";a:4:{i:0;s:7:\"buttons\";i:1;s:5:\"menus\";i:2;s:4:\"tocs\";i:3;s:11:\"tabstoggles\";}s:20:\"link_decoration_line\";s:4:\"none\";s:21:\"link_decoration_style\";s:5:\"solid\";s:25:\"link_decoration_thickness\";s:3:\"1px\";s:26:\"link_decoration_line_hover\";s:4:\"none\";s:27:\"link_decoration_style_hover\";s:5:\"solid\";s:31:\"link_decoration_thickness_hover\";s:3:\"1px\";s:13:\"h1_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"50px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:13:\"h2_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"38px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:13:\"h3_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"28px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:13:\"h4_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:13:\"h5_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:13:\"h6_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:21:\"post_title_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:29:\"post_titles_extras_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"25px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:25:\"var(--awb-custom_color_2)\";}s:12:\"custom_fonts\";a:7:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"name\";a:1:{i:0;s:0:\"\";}s:5:\"woff2\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:4:\"woff\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"ttf\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"eot\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"svg\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:14:\"adobe_fonts_id\";s:0:\"\";s:19:\"blog_page_title_bar\";s:4:\"hide\";s:24:\"blog_show_page_title_bar\";s:4:\"hide\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:11:\"blog_layout\";s:5:\"large\";s:19:\"blog_archive_layout\";s:5:\"large\";s:20:\"blog_pagination_type\";s:10:\"pagination\";s:36:\"blog_load_more_posts_button_bg_color\";s:17:\"var(--awb-color2)\";s:38:\"blog_load_more_posts_button_text_color\";s:17:\"var(--awb-color7)\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color2)\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color7)\";s:25:\"blog_archive_grid_columns\";s:1:\"3\";s:32:\"blog_archive_grid_column_spacing\";s:2:\"40\";s:18:\"blog_equal_heights\";s:1:\"0\";s:25:\"blog_archive_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";}s:21:\"blog_layout_alignment\";s:0:\"\";s:14:\"content_length\";s:7:\"excerpt\";s:19:\"excerpt_length_blog\";s:2:\"10\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:15:\"dates_box_color\";s:17:\"var(--awb-color2)\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";s:1:\"0\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:5:\"below\";s:23:\"blog_post_meta_position\";s:13:\"below_article\";s:18:\"social_sharing_box\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:13:\"related_posts\";s:1:\"1\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:14:\"meta_font_size\";s:4:\"13px\";s:11:\"date_format\";s:0:\"\";s:24:\"portfolio_archive_layout\";s:4:\"grid\";s:37:\"portfolio_archive_featured_image_size\";s:4:\"full\";s:25:\"portfolio_archive_columns\";s:1:\"1\";s:32:\"portfolio_archive_column_spacing\";s:2:\"20\";s:23:\"portfolio_equal_heights\";s:1:\"0\";s:42:\"portfolio_archive_one_column_text_position\";s:5:\"below\";s:23:\"portfolio_archive_items\";s:2:\"10\";s:29:\"portfolio_archive_text_layout\";s:7:\"no_text\";s:32:\"portfolio_archive_content_length\";s:7:\"excerpt\";s:32:\"portfolio_archive_excerpt_length\";s:2:\"10\";s:36:\"portfolio_archive_strip_html_excerpt\";s:1:\"1\";s:31:\"portfolio_archive_title_display\";s:3:\"all\";s:32:\"portfolio_archive_text_alignment\";s:4:\"left\";s:32:\"portfolio_archive_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:33:\"portfolio_archive_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:17:\"var(--awb-color2)\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:17:\"var(--awb-color7)\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color2)\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color7)\";s:14:\"portfolio_slug\";s:8:\"services\";s:24:\"portfolio_meta_font_size\";s:4:\"13px\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:19:\"portfolio_width_100\";s:1:\"0\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:25:\"show_first_featured_image\";s:1:\"1\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:18:\"portfolio_comments\";s:1:\"0\";s:18:\"social_media_icons\";a:6:{s:25:\"fusionredux_repeater_data\";a:4:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:9:\"pinterest\";}s:9:\"icon_mark\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:3:\"url\";a:4:{i:0;s:1:\"#\";i:1;s:1:\"#\";i:2;s:1:\"#\";i:3;s:1:\"#\";}s:12:\"custom_title\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"custom_source\";a:4:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;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:\"\";}i:2;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:\"\";}i:3;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:29:\"header_social_links_font_size\";s:4:\"16px\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_icon_color\";s:17:\"var(--awb-color1)\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:17:\"var(--awb-color1)\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"16px\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"footer_social_links_icon_color\";s:99:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:17:\"var(--awb-color7)\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:30:\"sharing_box_tagline_text_color\";s:17:\"var(--awb-color7)\";s:15:\"social_bg_color\";s:17:\"var(--awb-color2)\";s:22:\"social_sharing_padding\";a:4:{s:3:\"top\";s:6:\"1.33em\";s:5:\"right\";s:4:\"20px\";s:6:\"bottom\";s:6:\"1.33em\";s:4:\"left\";s:4:\"20px\";}s:14:\"social_sharing\";a:10:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:6:\"tumblr\";i:6;s:9:\"pinterest\";i:7;s:2:\"vk\";i:8;s:4:\"xing\";i:9;s:5:\"email\";}s:30:\"sharing_social_links_font_size\";s:4:\"16px\";s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:31:\"sharing_social_links_icon_color\";s:17:\"var(--awb-color3)\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:99:\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 91% ),var(--awb-color8-a))\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:17:\"slider_arrow_size\";s:4:\"14px\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:17:\"var(--awb-color7)\";s:16:\"es_caption_color\";s:17:\"var(--awb-color6)\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:17:\"form_input_height\";s:4:\"50px\";s:14:\"form_text_size\";s:4:\"16px\";s:13:\"form_bg_color\";s:17:\"var(--awb-color1)\";s:15:\"form_text_color\";s:17:\"var(--awb-color3)\";s:17:\"form_border_width\";a:4:{s:3:\"top\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";}s:17:\"form_border_color\";s:17:\"var(--awb-color3)\";s:23:\"form_focus_border_color\";s:17:\"var(--awb-color3)\";s:18:\"form_border_radius\";s:2:\"25\";s:19:\"form_views_counting\";s:3:\"all\";s:17:\"recaptcha_version\";s:2:\"v3\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:15:\"recaptcha_score\";s:3:\"0.5\";s:24:\"recaptcha_badge_position\";s:6:\"inline\";s:20:\"recaptcha_login_form\";s:1:\"0\";s:11:\"hubspot_api\";s:3:\"off\";s:11:\"hubspot_key\";s:0:\"\";s:13:\"mailchimp_api\";s:3:\"off\";s:13:\"mailchimp_key\";s:0:\"\";s:13:\"email_address\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";s:29:\"contact_form_privacy_checkbox\";s:1:\"0\";s:26:\"contact_form_privacy_label\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:8:\"gmap_api\";s:0:\"\";s:13:\"gmap_api_type\";s:2:\"js\";s:18:\"gmap_embed_address\";s:0:\"\";s:19:\"gmap_embed_map_type\";s:7:\"roadmap\";s:12:\"gmap_address\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:9:\"gmap_type\";s:7:\"roadmap\";s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:14:\"gmap_topmargin\";s:4:\"55px\";s:14:\"map_zoom_level\";s:1:\"8\";s:7:\"map_pin\";s:1:\"1\";s:18:\"gmap_pin_animation\";s:1:\"1\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:17:\"var(--awb-color4)\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"map_infobox_text_color\";s:17:\"var(--awb-color1)\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:21:\"search_filter_results\";s:1:\"0\";s:14:\"search_content\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";}s:27:\"search_limit_to_post_titles\";s:1:\"0\";s:18:\"search_form_design\";s:5:\"clean\";s:11:\"live_search\";s:1:\"0\";s:26:\"live_search_min_char_count\";s:1:\"4\";s:28:\"live_search_results_per_page\";s:3:\"100\";s:26:\"live_search_results_height\";s:3:\"250\";s:34:\"live_search_display_featured_image\";s:1:\"1\";s:29:\"live_search_display_post_type\";s:1:\"1\";s:13:\"search_layout\";s:4:\"grid\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_pagination_type\";s:10:\"pagination\";s:19:\"search_grid_columns\";s:1:\"3\";s:26:\"search_grid_column_spacing\";s:2:\"40\";s:21:\"search_content_length\";s:7:\"excerpt\";s:21:\"search_excerpt_length\";s:2:\"10\";s:25:\"search_strip_html_excerpt\";s:1:\"1\";s:22:\"search_featured_images\";s:1:\"1\";s:11:\"search_meta\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:26:\"search_new_search_position\";s:3:\"top\";s:18:\"gfonts_load_method\";s:5:\"local\";s:14:\"privacy_embeds\";s:1:\"0\";s:14:\"privacy_expiry\";s:2:\"30\";s:19:\"privacy_embed_types\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:22:\"privacy_embed_defaults\";a:0:{}s:16:\"privacy_bg_color\";s:99:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\";s:13:\"privacy_color\";s:17:\"var(--awb-color7)\";s:11:\"privacy_bar\";s:1:\"0\";s:19:\"privacy_bar_padding\";a:4:{s:3:\"top\";s:4:\"15px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";}s:20:\"privacy_bar_bg_color\";s:17:\"var(--awb-color7)\";s:21:\"privacy_bar_font_size\";s:4:\"13px\";s:17:\"privacy_bar_color\";s:17:\"var(--awb-color3)\";s:22:\"privacy_bar_link_color\";s:17:\"var(--awb-color3)\";s:28:\"privacy_bar_link_hover_color\";s:17:\"var(--awb-color4)\";s:16:\"privacy_bar_text\";s:51:\"This website uses cookies and third party services.\";s:23:\"privacy_bar_button_text\";s:2:\"OK\";s:23:\"privacy_bar_button_save\";s:1:\"0\";s:16:\"privacy_bar_more\";s:1:\"0\";s:21:\"privacy_bar_more_text\";s:8:\"Settings\";s:23:\"privacy_bar_update_text\";s:15:\"Update Settings\";s:30:\"privacy_bar_headings_font_size\";s:4:\"13px\";s:26:\"privacy_bar_headings_color\";s:17:\"var(--awb-color3)\";s:19:\"privacy_bar_content\";a:4:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"type\";a:1:{i:0;s:0:\"\";}s:5:\"title\";a:1:{i:0;s:0:\"\";}s:11:\"description\";a:1:{i:0;s:0:\"\";}}s:18:\"privacy_bar_reject\";s:1:\"0\";s:23:\"privacy_bar_reject_text\";s:6:\"Reject\";s:16:\"sidenav_behavior\";s:5:\"hover\";s:18:\"side_nav_font_size\";s:4:\"16px\";s:10:\"post_views\";s:9:\"page_load\";s:19:\"post_views_counting\";s:3:\"all\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"words\";s:16:\"disable_excerpts\";s:1:\"0\";s:24:\"excerpt_read_more_symbol\";s:5:\"[...]\";s:14:\"link_read_more\";s:1:\"0\";s:12:\"avatar_shape\";s:6:\"circle\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:14:\"totop_position\";s:5:\"right\";s:19:\"totop_border_radius\";s:1:\"6\";s:22:\"totop_scroll_down_only\";s:1:\"1\";s:16:\"custom_scrollbar\";s:1:\"0\";s:20:\"scrollbar_background\";s:17:\"var(--awb-color2)\";s:16:\"scrollbar_handle\";s:17:\"var(--awb-color4)\";s:8:\"faq_slug\";s:9:\"faq-items\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:20:\"number_related_posts\";s:1:\"4\";s:21:\"related_posts_columns\";s:1:\"3\";s:28:\"related_posts_column_spacing\";s:2:\"48\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:1:\"0\";s:14:\"image_rollover\";s:1:\"0\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:24:\"image_gradient_top_color\";s:17:\"var(--awb-color4)\";s:27:\"image_gradient_bottom_color\";s:17:\"var(--awb-color4)\";s:25:\"image_rollover_text_color\";s:17:\"var(--awb-color7)\";s:25:\"image_rollover_icon_color\";s:17:\"var(--awb-color1)\";s:17:\"pagination_sizing\";s:12:\"width_height\";s:23:\"pagination_width_height\";s:2:\"30\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:23:\"pagination_border_width\";s:1:\"1\";s:24:\"pagination_border_radius\";s:1:\"0\";s:23:\"pagination_text_display\";s:1:\"1\";s:20:\"pagination_font_size\";s:4:\"13px\";s:16:\"pagination_range\";s:1:\"1\";s:26:\"pagination_start_end_range\";s:1:\"0\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:19:\"rgba(242,243,245,0)\";s:25:\"grid_separator_style_type\";s:4:\"none\";s:20:\"grid_separator_color\";s:17:\"var(--awb-color3)\";s:18:\"masonry_grid_ratio\";s:3:\"1.5\";s:20:\"masonry_width_double\";s:4:\"2000\";s:23:\"enable_language_updates\";s:1:\"1\";s:19:\"dependencies_status\";s:1:\"1\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"0\";s:19:\"status_widget_areas\";s:1:\"1\";s:19:\"status_avada_studio\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"0\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"1\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:7:\"desktop\";s:18:\"status_fontawesome\";a:4:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";i:3;s:3:\"fal\";}s:28:\"fontawesome_v4_compatibility\";s:1:\"1\";s:22:\"status_fontawesome_pro\";s:1:\"0\";s:14:\"status_outline\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:26:\"disable_rich_snippet_title\";s:1:\"1\";s:27:\"disable_rich_snippet_author\";s:1:\"1\";s:25:\"disable_rich_snippet_date\";s:1:\"1\";s:24:\"disable_rich_snippet_faq\";s:1:\"1\";s:34:\"enable_block_editor_backend_styles\";s:1:\"1\";s:17:\"load_block_styles\";s:3:\"off\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"0\";s:19:\"status_fusion_forms\";s:1:\"1\";s:21:\"status_awb_Off_Canvas\";s:1:\"1\";s:23:\"status_fusion_portfolio\";s:1:\"1\";s:18:\"status_fusion_faqs\";s:1:\"1\";s:16:\"maintenance_mode\";s:0:\"\";s:24:\"maintenance_redirect_url\";s:0:\"\";s:20:\"maintenance_template\";s:1:\"0\";s:22:\"maintenance_user_roles\";a:0:{}s:19:\"maintenance_exclude\";s:0:\"\";s:22:\"maintenance_page_title\";s:0:\"\";s:23:\"maintenance_robots_meta\";s:7:\"noindex\";s:10:\"svg_upload\";s:8:\"disabled\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:27:\"wp_big_image_size_threshold\";s:4:\"2560\";s:9:\"lazy_load\";s:5:\"avada\";s:17:\"lazy_load_iframes\";s:4:\"none\";s:17:\"font_face_display\";s:4:\"swap\";s:13:\"preload_fonts\";s:10:\"icon_fonts\";s:22:\"preload_fonts_variants\";a:1:{i:0;s:3:\"400\";}s:21:\"preload_fonts_subsets\";a:1:{i:0;s:5:\"latin\";}s:15:\"emojis_disabled\";s:8:\"disabled\";s:23:\"jquery_migrate_disabled\";s:8:\"disabled\";s:12:\"defer_jquery\";s:1:\"0\";s:12:\"defer_styles\";s:1:\"0\";s:11:\"gzip_status\";s:1:\"0\";s:12:\"video_facade\";s:3:\"off\";s:18:\"clear_object_cache\";s:1:\"0\";s:16:\"css_cache_method\";s:4:\"file\";s:30:\"css_combine_third_party_assets\";s:1:\"1\";s:19:\"media_queries_async\";s:1:\"0\";s:12:\"critical_css\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:11:\"js_compiler\";s:1:\"1\";s:10:\"custom_css\";s:948:\".top-menu{\r\n  letter-spacing: 2px;\r\n}\r\n\r\n.date{\r\n  text-transform: uppercase;\r\n}\r\n\r\n.related h4{\r\n  text-align: center !important;\r\n}\r\n\r\n.fusion-carousel-meta{\r\n  display: none !important;\r\n}\r\n\r\n.service-callback label{\r\n  color: var(--awb-color1) !important;\r\n}\r\n\r\n.menu-overlay{\r\n  z-index: 20000 !important;\r\n}\r\n\r\n.menu-underlay{\r\n  z-index: 15000 !important;\r\n}\r\n\r\n/* Home Slideshow - spacing*/\r\n.tfs-slider .slide-content-container{padding-left:15% !important;}\r\n.tfs-slider .slide-content-container.slide-content-left{max-width:50%;}\r\n.tfs-slider .slide-content-container .heading .title-heading-left{line-height:1.15em !important;}\r\n.tfs-slider .slide-content-container .caption h3{font-weight:400;}\r\n@media only screen and (max-width:640px){\r\n    .tfs-slider .slide-content-container .heading{margin-bottom:0;}\r\n    .tfs-slider .slide-content-container .caption{display:none;}\r\n}\r\n\r\n\r\n.tfs-slide-content h1 {\r\n\r\n    font-family: Arial;\r\n\r\n}\";s:13:\"info_bg_color\";s:17:\"var(--awb-color1)\";s:17:\"info_accent_color\";s:17:\"var(--awb-color6)\";s:15:\"danger_bg_color\";s:17:\"var(--awb-color4)\";s:19:\"danger_accent_color\";s:17:\"var(--awb-color4)\";s:16:\"success_bg_color\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 85%))\";s:20:\"success_accent_color\";s:17:\"var(--awb-color4)\";s:16:\"warning_bg_color\";s:17:\"var(--awb-color4)\";s:20:\"warning_accent_color\";s:17:\"var(--awb-color4)\";s:20:\"alert_box_text_align\";s:6:\"center\";s:24:\"alert_box_text_transform\";s:6:\"normal\";s:21:\"alert_box_dismissable\";s:3:\"yes\";s:16:\"alert_box_shadow\";s:2:\"no\";s:17:\"alert_border_size\";s:1:\"1\";s:16:\"animation_offset\";s:13:\"top-into-view\";s:21:\"status_css_animations\";s:7:\"desktop\";s:15:\"audio_max_width\";s:4:\"100%\";s:22:\"audio_background_color\";s:17:\"var(--awb-color7)\";s:23:\"audio_progressbar_color\";s:17:\"var(--awb-color1)\";s:27:\"audio_controls_color_scheme\";s:5:\"light\";s:17:\"audio_border_size\";s:1:\"0\";s:18:\"audio_border_color\";s:0:\"\";s:19:\"audio_border_radius\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:17:\"blog_grid_columns\";s:1:\"3\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:17:\"blog_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:12:\"blog_excerpt\";s:3:\"yes\";s:19:\"blog_excerpt_length\";s:2:\"10\";s:44:\"blog_element_load_more_posts_button_bg_color\";s:17:\"var(--awb-color2)\";s:46:\"blog_element_load_more_posts_button_text_color\";s:17:\"var(--awb-color7)\";s:50:\"blog_element_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color2)\";s:52:\"blog_element_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color7)\";s:14:\"button_padding\";a:4:{s:3:\"top\";s:4:\"15px\";s:5:\"right\";s:4:\"29px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"29px\";}s:11:\"button_span\";s:2:\"no\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:9:{s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:25:\"button_gradient_top_color\";s:17:\"var(--awb-color4)\";s:28:\"button_gradient_bottom_color\";s:17:\"var(--awb-color4)\";s:31:\"button_gradient_top_color_hover\";s:25:\"var(--awb-custom_color_2)\";s:34:\"button_gradient_bottom_color_hover\";s:25:\"var(--awb-custom_color_2)\";s:21:\"button_gradient_start\";s:1:\"0\";s:19:\"button_gradient_end\";s:3:\"100\";s:20:\"button_gradient_type\";s:6:\"linear\";s:21:\"button_gradient_angle\";s:3:\"180\";s:23:\"button_radial_direction\";s:13:\"center center\";s:19:\"button_accent_color\";s:17:\"var(--awb-color8)\";s:25:\"button_accent_hover_color\";s:17:\"var(--awb-color1)\";s:18:\"button_bevel_color\";s:17:\"var(--awb-color1)\";s:24:\"button_bevel_color_hover\";s:17:\"var(--awb-color1)\";s:19:\"button_border_width\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:20:\"button_border_radius\";a:4:{s:8:\"top_left\";s:4:\"12px\";s:9:\"top_right\";s:4:\"12px\";s:12:\"bottom_right\";s:4:\"12px\";s:11:\"bottom_left\";s:4:\"12px\";}s:19:\"button_border_color\";s:17:\"var(--awb-color4)\";s:25:\"button_border_hover_color\";s:17:\"var(--awb-color4)\";s:14:\"button_presets\";s:1:\"0\";s:18:\"carousel_nav_color\";s:17:\"var(--awb-color7)\";s:20:\"carousel_hover_color\";s:17:\"var(--awb-color7)\";s:14:\"carousel_speed\";s:4:\"2500\";s:21:\"chart_legend_position\";s:3:\"top\";s:19:\"chart_show_tooltips\";s:3:\"yes\";s:14:\"chart_bg_color\";s:19:\"rgba(255,255,255,0)\";s:21:\"chart_axis_text_color\";s:17:\"var(--awb-color6)\";s:20:\"chart_gridline_color\";s:99:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\";s:21:\"checklist_icons_color\";s:17:\"var(--awb-color4)\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:17:\"var(--awb-color4)\";s:20:\"checklist_text_color\";s:17:\"var(--awb-color8)\";s:19:\"checklist_item_size\";s:4:\"16px\";s:22:\"checklist_item_padding\";a:4:{s:3:\"top\";s:6:\"0.35em\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:6:\"0.35em\";s:4:\"left\";s:1:\"0\";}s:17:\"checklist_divider\";s:2:\"no\";s:23:\"checklist_divider_color\";s:0:\"\";s:25:\"checklist_odd_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:26:\"checklist_even_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:11:\"col_spacing\";s:4:\"80px\";s:16:\"col_width_medium\";s:18:\"inherit_from_large\";s:15:\"col_width_small\";s:3:\"1_1\";s:25:\"container_padding_default\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:21:\"container_padding_100\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:4:\"30px\";}s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:31:\"full_width_gradient_start_color\";s:19:\"rgba(255,255,255,0)\";s:29:\"full_width_gradient_end_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"full_width_border_sizes\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:23:\"full_width_border_color\";s:17:\"var(--awb-color3)\";s:29:\"container_scroll_nav_bg_color\";s:17:\"var(--awb-color7)\";s:33:\"container_scroll_nav_bullet_color\";s:17:\"var(--awb-color3)\";s:35:\"container_hundred_percent_animation\";s:4:\"fade\";s:44:\"container_hundred_percent_scroll_sensitivity\";s:3:\"450\";s:41:\"container_hundred_percent_animation_speed\";s:3:\"800\";s:41:\"container_hundred_percent_dots_navigation\";s:1:\"1\";s:39:\"container_hundred_percent_height_mobile\";s:1:\"0\";s:24:\"container_legacy_support\";s:1:\"0\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:2:\"24\";s:23:\"content_box_title_color\";s:17:\"var(--awb-color7)\";s:22:\"content_box_body_color\";s:17:\"var(--awb-color6)\";s:21:\"content_box_icon_size\";s:2:\"20\";s:22:\"content_box_icon_color\";s:17:\"var(--awb-color1)\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:17:\"var(--awb-color7)\";s:38:\"content_box_icon_bg_inner_border_color\";s:17:\"var(--awb-color7)\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"1\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:17:\"var(--awb-color4)\";s:21:\"content_box_link_type\";s:4:\"text\";s:23:\"content_box_button_span\";s:2:\"no\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:18:\"countdown_timezone\";s:9:\"site_time\";s:16:\"countdown_layout\";s:7:\"floated\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:24:\"countdown_label_position\";s:9:\"text_flow\";s:26:\"countdown_background_color\";s:17:\"var(--awb-color4)\";s:26:\"countdown_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:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:29:\"countdown_counter_box_spacing\";s:4:\"10px\";s:27:\"countdown_counter_box_color\";s:17:\"var(--awb-color7)\";s:25:\"countdown_counter_padding\";a:4:{s:3:\"top\";s:5:\"0.6em\";s:5:\"right\";s:5:\"1.1em\";s:6:\"bottom\";s:5:\"0.6em\";s:4:\"left\";s:5:\"1.1em\";}s:29:\"countdown_counter_border_size\";s:1:\"0\";s:30:\"countdown_counter_border_color\";s:17:\"var(--awb-color7)\";s:31:\"countdown_counter_border_radius\";s:3:\"4px\";s:27:\"countdown_counter_font_size\";s:4:\"18px\";s:28:\"countdown_counter_text_color\";s:17:\"var(--awb-color1)\";s:25:\"countdown_label_font_size\";s:4:\"18px\";s:21:\"countdown_label_color\";s:17:\"var(--awb-color1)\";s:27:\"countdown_heading_font_size\";s:4:\"18px\";s:28:\"countdown_heading_text_color\";s:17:\"var(--awb-color1)\";s:30:\"countdown_subheading_font_size\";s:4:\"14px\";s:31:\"countdown_subheading_text_color\";s:17:\"var(--awb-color1)\";s:25:\"countdown_link_text_color\";s:17:\"var(--awb-color1)\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_speed\";s:4:\"1000\";s:17:\"counter_box_color\";s:17:\"var(--awb-color8)\";s:22:\"counter_box_title_size\";s:2:\"60\";s:21:\"counter_box_icon_size\";s:2:\"35\";s:22:\"counter_box_body_color\";s:17:\"var(--awb-color8)\";s:21:\"counter_box_body_size\";s:2:\"14\";s:24:\"counter_box_border_color\";s:17:\"var(--awb-color3)\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:17:\"var(--awb-color4)\";s:22:\"counter_unfilled_color\";s:17:\"var(--awb-color2)\";s:13:\"dropcap_color\";s:17:\"var(--awb-color4)\";s:18:\"dropcap_text_color\";s:17:\"var(--awb-color1)\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:18:\"faq_accordion_type\";s:10:\"accordions\";s:24:\"faq_accordion_boxed_mode\";s:1:\"0\";s:25:\"faq_accordion_border_size\";s:1:\"1\";s:26:\"faq_accordian_border_color\";s:17:\"var(--awb-color3)\";s:30:\"faq_accordian_background_color\";s:17:\"var(--awb-color1)\";s:25:\"faq_accordian_hover_color\";s:17:\"var(--awb-color2)\";s:26:\"faq_accordion_divider_line\";s:1:\"1\";s:27:\"faq_accordion_divider_color\";s:17:\"var(--awb-color3)\";s:33:\"faq_accordion_divider_hover_color\";s:17:\"var(--awb-color3)\";s:30:\"faq_accordion_title_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:23:\"faq_accordion_icon_size\";s:2:\"16\";s:24:\"faq_accordian_icon_color\";s:17:\"var(--awb-color1)\";s:24:\"faq_accordion_icon_boxed\";s:1:\"1\";s:28:\"faq_accordian_inactive_color\";s:17:\"var(--awb-color7)\";s:32:\"faq_accordion_content_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:24:\"faq_accordion_icon_align\";s:4:\"left\";s:26:\"faq_accordian_active_color\";s:17:\"var(--awb-color4)\";s:33:\"faq_accordian_active_accent_color\";s:0:\"\";s:22:\"flip_boxes_flip_effect\";s:7:\"classic\";s:25:\"flip_boxes_flip_direction\";s:5:\"right\";s:24:\"flip_boxes_flip_duration\";s:3:\"0.8\";s:24:\"flip_boxes_equal_heights\";s:2:\"no\";s:19:\"flip_boxes_front_bg\";s:17:\"var(--awb-color7)\";s:24:\"flip_boxes_front_heading\";s:17:\"var(--awb-color2)\";s:21:\"flip_boxes_front_text\";s:17:\"var(--awb-color6)\";s:18:\"flip_boxes_back_bg\";s:17:\"var(--awb-color4)\";s:23:\"flip_boxes_back_heading\";s:17:\"var(--awb-color1)\";s:20:\"flip_boxes_back_text\";s:99:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\";s:22:\"flip_boxes_border_size\";s:1:\"1\";s:23:\"flip_boxes_border_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"6px\";s:13:\"gallery_limit\";s:2:\"-1\";s:23:\"gallery_pagination_type\";s:6:\"button\";s:29:\"gallery_load_more_button_text\";s:9:\"Load More\";s:20:\"gallery_picture_size\";s:4:\"auto\";s:14:\"gallery_layout\";s:4:\"grid\";s:15:\"gallery_columns\";s:1:\"3\";s:22:\"gallery_column_spacing\";s:2:\"10\";s:18:\"gallery_hover_type\";s:4:\"none\";s:24:\"gallery_lightbox_content\";s:4:\"none\";s:19:\"gallery_border_size\";s:1:\"0\";s:20:\"gallery_border_color\";s:17:\"var(--awb-color3)\";s:21:\"gallery_border_radius\";s:3:\"0px\";s:19:\"google_map_api_type\";s:2:\"js\";s:9:\"icon_size\";s:2:\"32\";s:10:\"icon_color\";s:17:\"var(--awb-color1)\";s:16:\"icon_color_hover\";s:17:\"var(--awb-color1)\";s:11:\"icon_circle\";s:3:\"yes\";s:17:\"icon_circle_color\";s:17:\"var(--awb-color6)\";s:23:\"icon_circle_color_hover\";s:17:\"var(--awb-color4)\";s:16:\"icon_border_size\";s:1:\"1\";s:17:\"icon_border_color\";s:17:\"var(--awb-color6)\";s:23:\"icon_border_color_hover\";s:17:\"var(--awb-color4)\";s:18:\"icon_border_radius\";a:4:{s:8:\"top_left\";s:3:\"50%\";s:9:\"top_right\";s:3:\"50%\";s:12:\"bottom_right\";s:3:\"50%\";s:11:\"bottom_left\";s:3:\"50%\";}s:15:\"icon_hover_type\";s:4:\"fade\";s:17:\"before_after_type\";s:12:\"before_after\";s:22:\"before_after_font_size\";s:2:\"14\";s:25:\"before_after_accent_color\";s:17:\"var(--awb-color1)\";s:28:\"before_after_label_placement\";s:14:\"image-centered\";s:24:\"before_after_handle_type\";s:7:\"default\";s:25:\"before_after_handle_color\";s:17:\"var(--awb-color1)\";s:22:\"before_after_handle_bg\";s:19:\"rgba(255,255,255,0)\";s:19:\"before_after_offset\";s:2:\"50\";s:24:\"before_after_orientation\";s:10:\"horizontal\";s:28:\"before_after_handle_movement\";s:10:\"drag_click\";s:28:\"before_after_transition_time\";s:3:\"0.5\";s:24:\"before_after_border_size\";s:1:\"0\";s:25:\"before_after_border_color\";s:17:\"var(--awb-color3)\";s:26:\"before_after_border_radius\";s:3:\"0px\";s:21:\"imageframe_style_type\";s:4:\"none\";s:15:\"imageframe_blur\";s:1:\"3\";s:20:\"imgframe_style_color\";s:17:\"var(--awb-color8)\";s:22:\"imageframe_border_size\";s:1:\"0\";s:21:\"imgframe_border_color\";s:17:\"var(--awb-color3)\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:23:\"instagram_cache_timeout\";s:4:\"hour\";s:14:\"modal_bg_color\";s:17:\"var(--awb-color1)\";s:18:\"modal_border_color\";s:17:\"var(--awb-color3)\";s:13:\"person_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:23:\"person_background_color\";s:13:\"rgba(0,0,0,0)\";s:16:\"person_pic_style\";s:4:\"none\";s:21:\"person_pic_style_blur\";s:1:\"3\";s:18:\"person_style_color\";s:17:\"var(--awb-color8)\";s:19:\"person_border_color\";s:17:\"var(--awb-color3)\";s:18:\"person_border_size\";s:1:\"0\";s:20:\"person_border_radius\";s:3:\"0px\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:17:\"var(--awb-color2)\";s:24:\"popover_content_bg_color\";s:17:\"var(--awb-color1)\";s:20:\"popover_border_color\";s:17:\"var(--awb-color3)\";s:18:\"popover_text_color\";s:17:\"var(--awb-color6)\";s:17:\"popover_placement\";s:3:\"Top\";s:29:\"portfolio_featured_image_size\";s:4:\"full\";s:17:\"portfolio_columns\";s:1:\"3\";s:24:\"portfolio_column_spacing\";s:2:\"30\";s:15:\"portfolio_items\";s:2:\"10\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:24:\"portfolio_content_length\";s:7:\"excerpt\";s:24:\"portfolio_excerpt_length\";s:2:\"10\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:23:\"portfolio_title_display\";s:3:\"all\";s:24:\"portfolio_text_alignment\";s:4:\"left\";s:24:\"portfolio_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:25:\"portfolio_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_element_load_more_posts_button_bg_color\";s:17:\"var(--awb-color2)\";s:51:\"portfolio_element_load_more_posts_button_text_color\";s:17:\"var(--awb-color7)\";s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color2)\";s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color7)\";s:36:\"full_boxed_pricing_box_heading_color\";s:17:\"var(--awb-color7)\";s:29:\"sep_pricing_box_heading_color\";s:17:\"var(--awb-color7)\";s:17:\"pricing_box_color\";s:17:\"var(--awb-color4)\";s:16:\"pricing_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"pricing_background_color_hover\";s:0:\"\";s:20:\"pricing_border_color\";s:17:\"var(--awb-color2)\";s:21:\"pricing_divider_color\";s:17:\"var(--awb-color3)\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:22:\"progressbar_text_color\";s:17:\"var(--awb-color1)\";s:18:\"progressbar_height\";s:4:\"48px\";s:24:\"progressbar_filled_color\";s:17:\"var(--awb-color4)\";s:26:\"progressbar_unfilled_color\";s:17:\"var(--awb-color2)\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:31:\"progressbar_filled_border_color\";s:17:\"var(--awb-color1)\";s:24:\"scroll_progress_position\";s:4:\"flow\";s:22:\"scroll_progress_height\";s:4:\"10px\";s:32:\"scroll_progress_background_color\";s:17:\"var(--awb-color2)\";s:30:\"scroll_progress_progress_color\";s:17:\"var(--awb-color4)\";s:27:\"scroll_progress_border_size\";s:1:\"0\";s:28:\"scroll_progress_border_color\";s:17:\"var(--awb-color1)\";s:29:\"scroll_progress_border_radius\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:23:\"section_sep_border_size\";s:1:\"1\";s:14:\"section_sep_bg\";s:17:\"var(--awb-color2)\";s:24:\"section_sep_border_color\";s:17:\"var(--awb-color3)\";s:20:\"separator_style_type\";s:6:\"double\";s:9:\"sep_color\";s:17:\"var(--awb-color3)\";s:21:\"separator_border_size\";s:1:\"1\";s:19:\"separator_icon_size\";s:2:\"16\";s:20:\"separator_icon_color\";s:17:\"var(--awb-color3)\";s:16:\"separator_circle\";s:1:\"1\";s:25:\"separator_circle_bg_color\";s:19:\"rgba(255,255,255,0)\";s:19:\"social_links_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_color_type\";s:6:\"custom\";s:23:\"social_links_icon_color\";s:17:\"var(--awb-color3)\";s:29:\"social_links_icon_color_hover\";s:17:\"var(--awb-color3)\";s:18:\"social_links_boxed\";s:1:\"0\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:22:\"social_links_box_color\";s:17:\"var(--awb-color2)\";s:28:\"social_links_box_color_hover\";s:17:\"var(--awb-color2)\";s:19:\"social_links_border\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:25:\"social_links_border_color\";s:0:\"\";s:31:\"social_links_border_color_hover\";s:0:\"\";s:22:\"stripe_button_api_mode\";s:4:\"test\";s:29:\"stripe_button_test_secret_key\";s:0:\"\";s:29:\"stripe_button_live_secret_key\";s:0:\"\";s:24:\"syntax_highlighter_theme\";s:7:\"default\";s:31:\"syntax_highlighter_line_numbers\";s:3:\"yes\";s:47:\"syntax_highlighter_line_number_background_color\";s:0:\"\";s:41:\"syntax_highlighter_line_number_text_color\";s:0:\"\";s:32:\"syntax_highlighter_line_wrapping\";s:6:\"scroll\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:3:\"yes\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:17:\"Copy to Clipboard\";s:28:\"syntax_highlighter_font_size\";s:2:\"14\";s:35:\"syntax_highlighter_background_color\";s:0:\"\";s:30:\"syntax_highlighter_border_size\";s:1:\"1\";s:31:\"syntax_highlighter_border_color\";s:17:\"var(--awb-color3)\";s:31:\"syntax_highlighter_border_style\";s:5:\"solid\";s:25:\"syntax_highlighter_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"tabs_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"tabs_inactive_color\";s:17:\"var(--awb-color2)\";s:24:\"tabs_title_border_radius\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:17:\"tabs_border_color\";s:17:\"var(--awb-color3)\";s:18:\"tabs_title_padding\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:20:\"tabs_content_padding\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:18:\"tabs_icon_position\";s:4:\"left\";s:14:\"tabs_icon_size\";s:2:\"16\";s:15:\"tabs_icon_color\";s:0:\"\";s:22:\"tabs_icon_active_color\";s:0:\"\";s:16:\"tabs_title_color\";s:0:\"\";s:23:\"tabs_active_title_color\";s:0:\"\";s:22:\"tabs_mobile_breakpoint\";s:6:\"medium\";s:16:\"tabs_mobile_mode\";s:9:\"accordion\";s:23:\"tabs_mobile_sticky_tabs\";s:2:\"no\";s:11:\"tagcloud_bg\";s:19:\"rgba(255,255,255,0)\";s:17:\"tagcloud_bg_hover\";s:17:\"var(--awb-color4)\";s:14:\"tagcloud_color\";s:99:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\";s:20:\"tagcloud_color_hover\";s:17:\"var(--awb-color1)\";s:21:\"tagcloud_border_color\";s:17:\"var(--awb-color7)\";s:27:\"tagcloud_border_color_hover\";s:17:\"var(--awb-color4)\";s:10:\"tagline_bg\";s:17:\"var(--awb-color2)\";s:20:\"tagline_border_color\";s:19:\"rgba(226,226,226,0)\";s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:20:\"testimonial_bg_color\";s:17:\"var(--awb-color2)\";s:22:\"testimonial_text_color\";s:17:\"var(--awb-color6)\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:12:\"text_columns\";s:1:\"1\";s:21:\"text_column_min_width\";s:5:\"100px\";s:19:\"text_column_spacing\";s:3:\"2em\";s:15:\"text_rule_style\";s:4:\"none\";s:14:\"text_rule_size\";s:1:\"1\";s:15:\"text_rule_color\";s:0:\"\";s:20:\"title_text_transform\";s:10:\"capitalize\";s:16:\"title_style_type\";s:4:\"none\";s:18:\"title_border_color\";s:17:\"var(--awb-color3)\";s:12:\"title_margin\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:3:\"0px\";}s:19:\"title_margin_mobile\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"10px\";s:4:\"left\";s:3:\"0px\";}s:14:\"accordion_type\";s:10:\"accordions\";s:20:\"accordion_boxed_mode\";s:1:\"1\";s:21:\"accordion_border_size\";s:1:\"3\";s:22:\"accordian_border_color\";s:17:\"var(--awb-color4)\";s:26:\"accordian_background_color\";s:17:\"var(--awb-color1)\";s:21:\"accordian_hover_color\";s:17:\"var(--awb-color1)\";s:22:\"accordion_divider_line\";s:1:\"1\";s:23:\"accordion_divider_color\";s:17:\"var(--awb-color3)\";s:29:\"accordion_divider_hover_color\";s:17:\"var(--awb-color3)\";s:26:\"accordion_title_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:19:\"accordion_icon_size\";s:2:\"16\";s:20:\"accordian_icon_color\";s:17:\"var(--awb-color4)\";s:20:\"accordion_icon_boxed\";s:1:\"0\";s:24:\"accordian_inactive_color\";s:17:\"var(--awb-color7)\";s:28:\"accordion_content_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:22:\"accordian_active_color\";s:17:\"var(--awb-color4)\";s:29:\"accordian_active_accent_color\";s:0:\"\";s:20:\"accordion_icon_align\";s:4:\"left\";s:21:\"user_login_text_align\";s:6:\"center\";s:28:\"user_login_form_field_layout\";s:7:\"stacked\";s:27:\"user_login_form_show_labels\";s:2:\"no\";s:33:\"user_login_form_show_placeholders\";s:3:\"yes\";s:32:\"user_login_form_show_remember_me\";s:2:\"no\";s:32:\"user_login_form_background_color\";s:17:\"var(--awb-color2)\";s:15:\"video_max_width\";s:4:\"100%\";s:14:\"video_controls\";s:3:\"yes\";s:13:\"video_preload\";s:4:\"auto\";s:22:\"widget_area_title_size\";s:4:\"19px\";s:23:\"widget_area_title_color\";s:17:\"var(--awb-color8)\";s:22:\"adobe_cache_fonts_info\";s:0:\"\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:19:\"reset_hubspot_cache\";s:0:\"\";s:21:\"reset_mailchimp_cache\";s:0:\"\";s:19:\"reset_caches_button\";s:0:\"\";s:22:\"reset_instagram_caches\";s:0:\"\";s:30:\"stripe_button_validate_test_sk\";s:0:\"\";s:30:\"stripe_button_validate_live_sk\";s:0:\"\";}','yes'),(244,'avada_setup_placeholder_image','7','yes'),(329,'category_children','a:0:{}','yes'),(253,'wp_calendar_block_has_published_posts','1','yes'),(254,'avada_setup_wizard_dummy_content','1','yes'),(335,'element_category_children','a:0:{}','yes'),(11967,'_transient_fusion_fontawesome_en','.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}@font-face{font-family:\"Font Awesome 5 Brands\";font-style:normal;font-weight:normal;src:url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot);src:url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot?#iefix) format(\"embedded-opentype\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2) format(\"woff2\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff) format(\"woff\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.ttf) format(\"truetype\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format(\"svg\");font-display: block;}.fab{font-family:\"Font Awesome 5 Brands\"}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:400;src:url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot);src:url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot?#iefix) format(\"embedded-opentype\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2) format(\"woff2\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff) format(\"woff\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.ttf) format(\"truetype\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format(\"svg\");font-display: block;}.far{font-family:\"Font Awesome 5 Free\";font-weight:400;}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:900;src:url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot);src:url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot?#iefix) format(\"embedded-opentype\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2) format(\"woff2\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff) format(\"woff\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.ttf) format(\"truetype\"),url(//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format(\"svg\");font-display: block;}.fa,.fas{font-family:\"Font Awesome 5 Free\";font-weight:900}.fa-500px:before{content:\"\\f26e\"}.fa-accessible-icon:before{content:\"\\f368\"}.fa-accusoft:before{content:\"\\f369\"}.fa-acquisitions-incorporated:before{content:\"\\f6af\"}.fa-ad:before{content:\"\\f641\"}.fa-address-book:before{content:\"\\f2b9\"}.fa-address-card:before{content:\"\\f2bb\"}.fa-adjust:before{content:\"\\f042\"}.fa-adn:before{content:\"\\f170\"}.fa-adversal:before{content:\"\\f36a\"}.fa-affiliatetheme:before{content:\"\\f36b\"}.fa-air-freshener:before{content:\"\\f5d0\"}.fa-airbnb:before{content:\"\\f834\"}.fa-algolia:before{content:\"\\f36c\"}.fa-align-center:before{content:\"\\f037\"}.fa-align-justify:before{content:\"\\f039\"}.fa-align-left:before{content:\"\\f036\"}.fa-align-right:before{content:\"\\f038\"}.fa-alipay:before{content:\"\\f642\"}.fa-allergies:before{content:\"\\f461\"}.fa-amazon:before{content:\"\\f270\"}.fa-amazon-pay:before{content:\"\\f42c\"}.fa-ambulance:before{content:\"\\f0f9\"}.fa-american-sign-language-interpreting:before{content:\"\\f2a3\"}.fa-amilia:before{content:\"\\f36d\"}.fa-anchor:before{content:\"\\f13d\"}.fa-android:before{content:\"\\f17b\"}.fa-angellist:before{content:\"\\f209\"}.fa-angle-double-down:before{content:\"\\f103\"}.fa-angle-double-left:before{content:\"\\f100\"}.fa-angle-double-right:before{content:\"\\f101\"}.fa-angle-double-up:before{content:\"\\f102\"}.fa-angle-down:before{content:\"\\f107\"}.fa-angle-left:before{content:\"\\f104\"}.fa-angle-right:before{content:\"\\f105\"}.fa-angle-up:before{content:\"\\f106\"}.fa-angry:before{content:\"\\f556\"}.fa-angrycreative:before{content:\"\\f36e\"}.fa-angular:before{content:\"\\f420\"}.fa-ankh:before{content:\"\\f644\"}.fa-app-store:before{content:\"\\f36f\"}.fa-app-store-ios:before{content:\"\\f370\"}.fa-apper:before{content:\"\\f371\"}.fa-apple:before{content:\"\\f179\"}.fa-apple-alt:before{content:\"\\f5d1\"}.fa-apple-pay:before{content:\"\\f415\"}.fa-archive:before{content:\"\\f187\"}.fa-archway:before{content:\"\\f557\"}.fa-arrow-alt-circle-down:before{content:\"\\f358\"}.fa-arrow-alt-circle-left:before{content:\"\\f359\"}.fa-arrow-alt-circle-right:before{content:\"\\f35a\"}.fa-arrow-alt-circle-up:before{content:\"\\f35b\"}.fa-arrow-circle-down:before{content:\"\\f0ab\"}.fa-arrow-circle-left:before{content:\"\\f0a8\"}.fa-arrow-circle-right:before{content:\"\\f0a9\"}.fa-arrow-circle-up:before{content:\"\\f0aa\"}.fa-arrow-down:before{content:\"\\f063\"}.fa-arrow-left:before{content:\"\\f060\"}.fa-arrow-right:before{content:\"\\f061\"}.fa-arrow-up:before{content:\"\\f062\"}.fa-arrows-alt:before{content:\"\\f0b2\"}.fa-arrows-alt-h:before{content:\"\\f337\"}.fa-arrows-alt-v:before{content:\"\\f338\"}.fa-artstation:before{content:\"\\f77a\"}.fa-assistive-listening-systems:before{content:\"\\f2a2\"}.fa-asterisk:before{content:\"\\f069\"}.fa-asymmetrik:before{content:\"\\f372\"}.fa-at:before{content:\"\\f1fa\"}.fa-atlas:before{content:\"\\f558\"}.fa-atlassian:before{content:\"\\f77b\"}.fa-atom:before{content:\"\\f5d2\"}.fa-audible:before{content:\"\\f373\"}.fa-audio-description:before{content:\"\\f29e\"}.fa-autoprefixer:before{content:\"\\f41c\"}.fa-avianex:before{content:\"\\f374\"}.fa-aviato:before{content:\"\\f421\"}.fa-award:before{content:\"\\f559\"}.fa-aws:before{content:\"\\f375\"}.fa-baby:before{content:\"\\f77c\"}.fa-baby-carriage:before{content:\"\\f77d\"}.fa-backspace:before{content:\"\\f55a\"}.fa-backward:before{content:\"\\f04a\"}.fa-bacon:before{content:\"\\f7e5\"}.fa-bacteria:before{content:\"\\e059\"}.fa-bacterium:before{content:\"\\e05a\"}.fa-bahai:before{content:\"\\f666\"}.fa-balance-scale:before{content:\"\\f24e\"}.fa-balance-scale-left:before{content:\"\\f515\"}.fa-balance-scale-right:before{content:\"\\f516\"}.fa-ban:before{content:\"\\f05e\"}.fa-band-aid:before{content:\"\\f462\"}.fa-bandcamp:before{content:\"\\f2d5\"}.fa-barcode:before{content:\"\\f02a\"}.fa-bars:before{content:\"\\f0c9\"}.fa-baseball-ball:before{content:\"\\f433\"}.fa-basketball-ball:before{content:\"\\f434\"}.fa-bath:before{content:\"\\f2cd\"}.fa-battery-empty:before{content:\"\\f244\"}.fa-battery-full:before{content:\"\\f240\"}.fa-battery-half:before{content:\"\\f242\"}.fa-battery-quarter:before{content:\"\\f243\"}.fa-battery-three-quarters:before{content:\"\\f241\"}.fa-battle-net:before{content:\"\\f835\"}.fa-bed:before{content:\"\\f236\"}.fa-beer:before{content:\"\\f0fc\"}.fa-behance:before{content:\"\\f1b4\"}.fa-behance-square:before{content:\"\\f1b5\"}.fa-bell:before{content:\"\\f0f3\"}.fa-bell-slash:before{content:\"\\f1f6\"}.fa-bezier-curve:before{content:\"\\f55b\"}.fa-bible:before{content:\"\\f647\"}.fa-bicycle:before{content:\"\\f206\"}.fa-biking:before{content:\"\\f84a\"}.fa-bimobject:before{content:\"\\f378\"}.fa-binoculars:before{content:\"\\f1e5\"}.fa-biohazard:before{content:\"\\f780\"}.fa-birthday-cake:before{content:\"\\f1fd\"}.fa-bitbucket:before{content:\"\\f171\"}.fa-bitcoin:before{content:\"\\f379\"}.fa-bity:before{content:\"\\f37a\"}.fa-black-tie:before{content:\"\\f27e\"}.fa-blackberry:before{content:\"\\f37b\"}.fa-blender:before{content:\"\\f517\"}.fa-blender-phone:before{content:\"\\f6b6\"}.fa-blind:before{content:\"\\f29d\"}.fa-blog:before{content:\"\\f781\"}.fa-blogger:before{content:\"\\f37c\"}.fa-blogger-b:before{content:\"\\f37d\"}.fa-bluetooth:before{content:\"\\f293\"}.fa-bluetooth-b:before{content:\"\\f294\"}.fa-bold:before{content:\"\\f032\"}.fa-bolt:before{content:\"\\f0e7\"}.fa-bomb:before{content:\"\\f1e2\"}.fa-bone:before{content:\"\\f5d7\"}.fa-bong:before{content:\"\\f55c\"}.fa-book:before{content:\"\\f02d\"}.fa-book-dead:before{content:\"\\f6b7\"}.fa-book-medical:before{content:\"\\f7e6\"}.fa-book-open:before{content:\"\\f518\"}.fa-book-reader:before{content:\"\\f5da\"}.fa-bookmark:before{content:\"\\f02e\"}.fa-bootstrap:before{content:\"\\f836\"}.fa-border-all:before{content:\"\\f84c\"}.fa-border-none:before{content:\"\\f850\"}.fa-border-style:before{content:\"\\f853\"}.fa-bowling-ball:before{content:\"\\f436\"}.fa-box:before{content:\"\\f466\"}.fa-box-open:before{content:\"\\f49e\"}.fa-box-tissue:before{content:\"\\e05b\"}.fa-boxes:before{content:\"\\f468\"}.fa-braille:before{content:\"\\f2a1\"}.fa-brain:before{content:\"\\f5dc\"}.fa-bread-slice:before{content:\"\\f7ec\"}.fa-briefcase:before{content:\"\\f0b1\"}.fa-briefcase-medical:before{content:\"\\f469\"}.fa-broadcast-tower:before{content:\"\\f519\"}.fa-broom:before{content:\"\\f51a\"}.fa-brush:before{content:\"\\f55d\"}.fa-btc:before{content:\"\\f15a\"}.fa-buffer:before{content:\"\\f837\"}.fa-bug:before{content:\"\\f188\"}.fa-building:before{content:\"\\f1ad\"}.fa-bullhorn:before{content:\"\\f0a1\"}.fa-bullseye:before{content:\"\\f140\"}.fa-burn:before{content:\"\\f46a\"}.fa-buromobelexperte:before{content:\"\\f37f\"}.fa-bus:before{content:\"\\f207\"}.fa-bus-alt:before{content:\"\\f55e\"}.fa-business-time:before{content:\"\\f64a\"}.fa-buy-n-large:before{content:\"\\f8a6\"}.fa-buysellads:before{content:\"\\f20d\"}.fa-calculator:before{content:\"\\f1ec\"}.fa-calendar:before{content:\"\\f133\"}.fa-calendar-alt:before{content:\"\\f073\"}.fa-calendar-check:before{content:\"\\f274\"}.fa-calendar-day:before{content:\"\\f783\"}.fa-calendar-minus:before{content:\"\\f272\"}.fa-calendar-plus:before{content:\"\\f271\"}.fa-calendar-times:before{content:\"\\f273\"}.fa-calendar-week:before{content:\"\\f784\"}.fa-camera:before{content:\"\\f030\"}.fa-camera-retro:before{content:\"\\f083\"}.fa-campground:before{content:\"\\f6bb\"}.fa-canadian-maple-leaf:before{content:\"\\f785\"}.fa-candy-cane:before{content:\"\\f786\"}.fa-cannabis:before{content:\"\\f55f\"}.fa-capsules:before{content:\"\\f46b\"}.fa-car:before{content:\"\\f1b9\"}.fa-car-alt:before{content:\"\\f5de\"}.fa-car-battery:before{content:\"\\f5df\"}.fa-car-crash:before{content:\"\\f5e1\"}.fa-car-side:before{content:\"\\f5e4\"}.fa-caravan:before{content:\"\\f8ff\"}.fa-caret-down:before{content:\"\\f0d7\"}.fa-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before{content:\"\\f0da\"}.fa-caret-square-down:before{content:\"\\f150\"}.fa-caret-square-left:before{content:\"\\f191\"}.fa-caret-square-right:before{content:\"\\f152\"}.fa-caret-square-up:before{content:\"\\f151\"}.fa-caret-up:before{content:\"\\f0d8\"}.fa-carrot:before{content:\"\\f787\"}.fa-cart-arrow-down:before{content:\"\\f218\"}.fa-cart-plus:before{content:\"\\f217\"}.fa-cash-register:before{content:\"\\f788\"}.fa-cat:before{content:\"\\f6be\"}.fa-cc-amazon-pay:before{content:\"\\f42d\"}.fa-cc-amex:before{content:\"\\f1f3\"}.fa-cc-apple-pay:before{content:\"\\f416\"}.fa-cc-diners-club:before{content:\"\\f24c\"}.fa-cc-discover:before{content:\"\\f1f2\"}.fa-cc-jcb:before{content:\"\\f24b\"}.fa-cc-mastercard:before{content:\"\\f1f1\"}.fa-cc-paypal:before{content:\"\\f1f4\"}.fa-cc-stripe:before{content:\"\\f1f5\"}.fa-cc-visa:before{content:\"\\f1f0\"}.fa-centercode:before{content:\"\\f380\"}.fa-centos:before{content:\"\\f789\"}.fa-certificate:before{content:\"\\f0a3\"}.fa-chair:before{content:\"\\f6c0\"}.fa-chalkboard:before{content:\"\\f51b\"}.fa-chalkboard-teacher:before{content:\"\\f51c\"}.fa-charging-station:before{content:\"\\f5e7\"}.fa-chart-area:before{content:\"\\f1fe\"}.fa-chart-bar:before{content:\"\\f080\"}.fa-chart-line:before{content:\"\\f201\"}.fa-chart-pie:before{content:\"\\f200\"}.fa-check:before{content:\"\\f00c\"}.fa-check-circle:before{content:\"\\f058\"}.fa-check-double:before{content:\"\\f560\"}.fa-check-square:before{content:\"\\f14a\"}.fa-cheese:before{content:\"\\f7ef\"}.fa-chess:before{content:\"\\f439\"}.fa-chess-bishop:before{content:\"\\f43a\"}.fa-chess-board:before{content:\"\\f43c\"}.fa-chess-king:before{content:\"\\f43f\"}.fa-chess-knight:before{content:\"\\f441\"}.fa-chess-pawn:before{content:\"\\f443\"}.fa-chess-queen:before{content:\"\\f445\"}.fa-chess-rook:before{content:\"\\f447\"}.fa-chevron-circle-down:before{content:\"\\f13a\"}.fa-chevron-circle-left:before{content:\"\\f137\"}.fa-chevron-circle-right:before{content:\"\\f138\"}.fa-chevron-circle-up:before{content:\"\\f139\"}.fa-chevron-down:before{content:\"\\f078\"}.fa-chevron-left:before{content:\"\\f053\"}.fa-chevron-right:before{content:\"\\f054\"}.fa-chevron-up:before{content:\"\\f077\"}.fa-child:before{content:\"\\f1ae\"}.fa-chrome:before{content:\"\\f268\"}.fa-chromecast:before{content:\"\\f838\"}.fa-church:before{content:\"\\f51d\"}.fa-circle:before{content:\"\\f111\"}.fa-circle-notch:before{content:\"\\f1ce\"}.fa-city:before{content:\"\\f64f\"}.fa-clinic-medical:before{content:\"\\f7f2\"}.fa-clipboard:before{content:\"\\f328\"}.fa-clipboard-check:before{content:\"\\f46c\"}.fa-clipboard-list:before{content:\"\\f46d\"}.fa-clock:before{content:\"\\f017\"}.fa-clone:before{content:\"\\f24d\"}.fa-closed-captioning:before{content:\"\\f20a\"}.fa-cloud:before{content:\"\\f0c2\"}.fa-cloud-download-alt:before{content:\"\\f381\"}.fa-cloud-meatball:before{content:\"\\f73b\"}.fa-cloud-moon:before{content:\"\\f6c3\"}.fa-cloud-moon-rain:before{content:\"\\f73c\"}.fa-cloud-rain:before{content:\"\\f73d\"}.fa-cloud-showers-heavy:before{content:\"\\f740\"}.fa-cloud-sun:before{content:\"\\f6c4\"}.fa-cloud-sun-rain:before{content:\"\\f743\"}.fa-cloud-upload-alt:before{content:\"\\f382\"}.fa-cloudflare:before{content:\"\\e07d\"}.fa-cloudscale:before{content:\"\\f383\"}.fa-cloudsmith:before{content:\"\\f384\"}.fa-cloudversify:before{content:\"\\f385\"}.fa-cocktail:before{content:\"\\f561\"}.fa-code:before{content:\"\\f121\"}.fa-code-branch:before{content:\"\\f126\"}.fa-codepen:before{content:\"\\f1cb\"}.fa-codiepie:before{content:\"\\f284\"}.fa-coffee:before{content:\"\\f0f4\"}.fa-cog:before{content:\"\\f013\"}.fa-cogs:before{content:\"\\f085\"}.fa-coins:before{content:\"\\f51e\"}.fa-columns:before{content:\"\\f0db\"}.fa-comment:before{content:\"\\f075\"}.fa-comment-alt:before{content:\"\\f27a\"}.fa-comment-dollar:before{content:\"\\f651\"}.fa-comment-dots:before{content:\"\\f4ad\"}.fa-comment-medical:before{content:\"\\f7f5\"}.fa-comment-slash:before{content:\"\\f4b3\"}.fa-comments:before{content:\"\\f086\"}.fa-comments-dollar:before{content:\"\\f653\"}.fa-compact-disc:before{content:\"\\f51f\"}.fa-compass:before{content:\"\\f14e\"}.fa-compress:before{content:\"\\f066\"}.fa-compress-alt:before{content:\"\\f422\"}.fa-compress-arrows-alt:before{content:\"\\f78c\"}.fa-concierge-bell:before{content:\"\\f562\"}.fa-confluence:before{content:\"\\f78d\"}.fa-connectdevelop:before{content:\"\\f20e\"}.fa-contao:before{content:\"\\f26d\"}.fa-cookie:before{content:\"\\f563\"}.fa-cookie-bite:before{content:\"\\f564\"}.fa-copy:before{content:\"\\f0c5\"}.fa-copyright:before{content:\"\\f1f9\"}.fa-cotton-bureau:before{content:\"\\f89e\"}.fa-couch:before{content:\"\\f4b8\"}.fa-cpanel:before{content:\"\\f388\"}.fa-creative-commons:before{content:\"\\f25e\"}.fa-creative-commons-by:before{content:\"\\f4e7\"}.fa-creative-commons-nc:before{content:\"\\f4e8\"}.fa-creative-commons-nc-eu:before{content:\"\\f4e9\"}.fa-creative-commons-nc-jp:before{content:\"\\f4ea\"}.fa-creative-commons-nd:before{content:\"\\f4eb\"}.fa-creative-commons-pd:before{content:\"\\f4ec\"}.fa-creative-commons-pd-alt:before{content:\"\\f4ed\"}.fa-creative-commons-remix:before{content:\"\\f4ee\"}.fa-creative-commons-sa:before{content:\"\\f4ef\"}.fa-creative-commons-sampling:before{content:\"\\f4f0\"}.fa-creative-commons-sampling-plus:before{content:\"\\f4f1\"}.fa-creative-commons-share:before{content:\"\\f4f2\"}.fa-creative-commons-zero:before{content:\"\\f4f3\"}.fa-credit-card:before{content:\"\\f09d\"}.fa-critical-role:before{content:\"\\f6c9\"}.fa-crop:before{content:\"\\f125\"}.fa-crop-alt:before{content:\"\\f565\"}.fa-cross:before{content:\"\\f654\"}.fa-crosshairs:before{content:\"\\f05b\"}.fa-crow:before{content:\"\\f520\"}.fa-crown:before{content:\"\\f521\"}.fa-crutch:before{content:\"\\f7f7\"}.fa-css3:before{content:\"\\f13c\"}.fa-css3-alt:before{content:\"\\f38b\"}.fa-cube:before{content:\"\\f1b2\"}.fa-cubes:before{content:\"\\f1b3\"}.fa-cut:before{content:\"\\f0c4\"}.fa-cuttlefish:before{content:\"\\f38c\"}.fa-d-and-d:before{content:\"\\f38d\"}.fa-d-and-d-beyond:before{content:\"\\f6ca\"}.fa-dailymotion:before{content:\"\\e052\"}.fa-dashcube:before{content:\"\\f210\"}.fa-database:before{content:\"\\f1c0\"}.fa-deaf:before{content:\"\\f2a4\"}.fa-deezer:before{content:\"\\e077\"}.fa-delicious:before{content:\"\\f1a5\"}.fa-democrat:before{content:\"\\f747\"}.fa-deploydog:before{content:\"\\f38e\"}.fa-deskpro:before{content:\"\\f38f\"}.fa-desktop:before{content:\"\\f108\"}.fa-dev:before{content:\"\\f6cc\"}.fa-deviantart:before{content:\"\\f1bd\"}.fa-dharmachakra:before{content:\"\\f655\"}.fa-dhl:before{content:\"\\f790\"}.fa-diagnoses:before{content:\"\\f470\"}.fa-diaspora:before{content:\"\\f791\"}.fa-dice:before{content:\"\\f522\"}.fa-dice-d20:before{content:\"\\f6cf\"}.fa-dice-d6:before{content:\"\\f6d1\"}.fa-dice-five:before{content:\"\\f523\"}.fa-dice-four:before{content:\"\\f524\"}.fa-dice-one:before{content:\"\\f525\"}.fa-dice-six:before{content:\"\\f526\"}.fa-dice-three:before{content:\"\\f527\"}.fa-dice-two:before{content:\"\\f528\"}.fa-digg:before{content:\"\\f1a6\"}.fa-digital-ocean:before{content:\"\\f391\"}.fa-digital-tachograph:before{content:\"\\f566\"}.fa-directions:before{content:\"\\f5eb\"}.fa-discord:before{content:\"\\f392\"}.fa-discourse:before{content:\"\\f393\"}.fa-disease:before{content:\"\\f7fa\"}.fa-divide:before{content:\"\\f529\"}.fa-dizzy:before{content:\"\\f567\"}.fa-dna:before{content:\"\\f471\"}.fa-dochub:before{content:\"\\f394\"}.fa-docker:before{content:\"\\f395\"}.fa-dog:before{content:\"\\f6d3\"}.fa-dollar-sign:before{content:\"\\f155\"}.fa-dolly:before{content:\"\\f472\"}.fa-dolly-flatbed:before{content:\"\\f474\"}.fa-donate:before{content:\"\\f4b9\"}.fa-door-closed:before{content:\"\\f52a\"}.fa-door-open:before{content:\"\\f52b\"}.fa-dot-circle:before{content:\"\\f192\"}.fa-dove:before{content:\"\\f4ba\"}.fa-download:before{content:\"\\f019\"}.fa-draft2digital:before{content:\"\\f396\"}.fa-drafting-compass:before{content:\"\\f568\"}.fa-dragon:before{content:\"\\f6d5\"}.fa-draw-polygon:before{content:\"\\f5ee\"}.fa-dribbble:before{content:\"\\f17d\"}.fa-dribbble-square:before{content:\"\\f397\"}.fa-dropbox:before{content:\"\\f16b\"}.fa-drum:before{content:\"\\f569\"}.fa-drum-steelpan:before{content:\"\\f56a\"}.fa-drumstick-bite:before{content:\"\\f6d7\"}.fa-drupal:before{content:\"\\f1a9\"}.fa-dumbbell:before{content:\"\\f44b\"}.fa-dumpster:before{content:\"\\f793\"}.fa-dumpster-fire:before{content:\"\\f794\"}.fa-dungeon:before{content:\"\\f6d9\"}.fa-dyalog:before{content:\"\\f399\"}.fa-earlybirds:before{content:\"\\f39a\"}.fa-ebay:before{content:\"\\f4f4\"}.fa-edge:before{content:\"\\f282\"}.fa-edge-legacy:before{content:\"\\e078\"}.fa-edit:before{content:\"\\f044\"}.fa-egg:before{content:\"\\f7fb\"}.fa-eject:before{content:\"\\f052\"}.fa-elementor:before{content:\"\\f430\"}.fa-ellipsis-h:before{content:\"\\f141\"}.fa-ellipsis-v:before{content:\"\\f142\"}.fa-ello:before{content:\"\\f5f1\"}.fa-ember:before{content:\"\\f423\"}.fa-empire:before{content:\"\\f1d1\"}.fa-envelope:before{content:\"\\f0e0\"}.fa-envelope-open:before{content:\"\\f2b6\"}.fa-envelope-open-text:before{content:\"\\f658\"}.fa-envelope-square:before{content:\"\\f199\"}.fa-envira:before{content:\"\\f299\"}.fa-equals:before{content:\"\\f52c\"}.fa-eraser:before{content:\"\\f12d\"}.fa-erlang:before{content:\"\\f39d\"}.fa-ethereum:before{content:\"\\f42e\"}.fa-ethernet:before{content:\"\\f796\"}.fa-etsy:before{content:\"\\f2d7\"}.fa-euro-sign:before{content:\"\\f153\"}.fa-evernote:before{content:\"\\f839\"}.fa-exchange-alt:before{content:\"\\f362\"}.fa-exclamation:before{content:\"\\f12a\"}.fa-exclamation-circle:before{content:\"\\f06a\"}.fa-exclamation-triangle:before{content:\"\\f071\"}.fa-expand:before{content:\"\\f065\"}.fa-expand-alt:before{content:\"\\f424\"}.fa-expand-arrows-alt:before{content:\"\\f31e\"}.fa-expeditedssl:before{content:\"\\f23e\"}.fa-external-link-alt:before{content:\"\\f35d\"}.fa-external-link-square-alt:before{content:\"\\f360\"}.fa-eye:before{content:\"\\f06e\"}.fa-eye-dropper:before{content:\"\\f1fb\"}.fa-eye-slash:before{content:\"\\f070\"}.fa-facebook:before{content:\"\\f09a\"}.fa-facebook-f:before{content:\"\\f39e\"}.fa-facebook-messenger:before{content:\"\\f39f\"}.fa-facebook-square:before{content:\"\\f082\"}.fa-fan:before{content:\"\\f863\"}.fa-fantasy-flight-games:before{content:\"\\f6dc\"}.fa-fast-backward:before{content:\"\\f049\"}.fa-fast-forward:before{content:\"\\f050\"}.fa-faucet:before{content:\"\\e005\"}.fa-fax:before{content:\"\\f1ac\"}.fa-feather:before{content:\"\\f52d\"}.fa-feather-alt:before{content:\"\\f56b\"}.fa-fedex:before{content:\"\\f797\"}.fa-fedora:before{content:\"\\f798\"}.fa-female:before{content:\"\\f182\"}.fa-fighter-jet:before{content:\"\\f0fb\"}.fa-figma:before{content:\"\\f799\"}.fa-file:before{content:\"\\f15b\"}.fa-file-alt:before{content:\"\\f15c\"}.fa-file-archive:before{content:\"\\f1c6\"}.fa-file-audio:before{content:\"\\f1c7\"}.fa-file-code:before{content:\"\\f1c9\"}.fa-file-contract:before{content:\"\\f56c\"}.fa-file-csv:before{content:\"\\f6dd\"}.fa-file-download:before{content:\"\\f56d\"}.fa-file-excel:before{content:\"\\f1c3\"}.fa-file-export:before{content:\"\\f56e\"}.fa-file-image:before{content:\"\\f1c5\"}.fa-file-import:before{content:\"\\f56f\"}.fa-file-invoice:before{content:\"\\f570\"}.fa-file-invoice-dollar:before{content:\"\\f571\"}.fa-file-medical:before{content:\"\\f477\"}.fa-file-medical-alt:before{content:\"\\f478\"}.fa-file-pdf:before{content:\"\\f1c1\"}.fa-file-powerpoint:before{content:\"\\f1c4\"}.fa-file-prescription:before{content:\"\\f572\"}.fa-file-signature:before{content:\"\\f573\"}.fa-file-upload:before{content:\"\\f574\"}.fa-file-video:before{content:\"\\f1c8\"}.fa-file-word:before{content:\"\\f1c2\"}.fa-fill:before{content:\"\\f575\"}.fa-fill-drip:before{content:\"\\f576\"}.fa-film:before{content:\"\\f008\"}.fa-filter:before{content:\"\\f0b0\"}.fa-fingerprint:before{content:\"\\f577\"}.fa-fire:before{content:\"\\f06d\"}.fa-fire-alt:before{content:\"\\f7e4\"}.fa-fire-extinguisher:before{content:\"\\f134\"}.fa-firefox:before{content:\"\\f269\"}.fa-firefox-browser:before{content:\"\\e007\"}.fa-first-aid:before{content:\"\\f479\"}.fa-first-order:before{content:\"\\f2b0\"}.fa-first-order-alt:before{content:\"\\f50a\"}.fa-firstdraft:before{content:\"\\f3a1\"}.fa-fish:before{content:\"\\f578\"}.fa-fist-raised:before{content:\"\\f6de\"}.fa-flag:before{content:\"\\f024\"}.fa-flag-checkered:before{content:\"\\f11e\"}.fa-flag-usa:before{content:\"\\f74d\"}.fa-flask:before{content:\"\\f0c3\"}.fa-flickr:before{content:\"\\f16e\"}.fa-flipboard:before{content:\"\\f44d\"}.fa-flushed:before{content:\"\\f579\"}.fa-fly:before{content:\"\\f417\"}.fa-folder:before{content:\"\\f07b\"}.fa-folder-minus:before{content:\"\\f65d\"}.fa-folder-open:before{content:\"\\f07c\"}.fa-folder-plus:before{content:\"\\f65e\"}.fa-font:before{content:\"\\f031\"}.fa-font-awesome:before{content:\"\\f2b4\"}.fa-font-awesome-alt:before{content:\"\\f35c\"}.fa-font-awesome-flag:before{content:\"\\f425\"}.fa-fonticons:before{content:\"\\f280\"}.fa-fonticons-fi:before{content:\"\\f3a2\"}.fa-football-ball:before{content:\"\\f44e\"}.fa-fort-awesome:before{content:\"\\f286\"}.fa-fort-awesome-alt:before{content:\"\\f3a3\"}.fa-forumbee:before{content:\"\\f211\"}.fa-forward:before{content:\"\\f04e\"}.fa-foursquare:before{content:\"\\f180\"}.fa-free-code-camp:before{content:\"\\f2c5\"}.fa-freebsd:before{content:\"\\f3a4\"}.fa-frog:before{content:\"\\f52e\"}.fa-frown:before{content:\"\\f119\"}.fa-frown-open:before{content:\"\\f57a\"}.fa-fulcrum:before{content:\"\\f50b\"}.fa-funnel-dollar:before{content:\"\\f662\"}.fa-futbol:before{content:\"\\f1e3\"}.fa-galactic-republic:before{content:\"\\f50c\"}.fa-galactic-senate:before{content:\"\\f50d\"}.fa-gamepad:before{content:\"\\f11b\"}.fa-gas-pump:before{content:\"\\f52f\"}.fa-gavel:before{content:\"\\f0e3\"}.fa-gem:before{content:\"\\f3a5\"}.fa-genderless:before{content:\"\\f22d\"}.fa-get-pocket:before{content:\"\\f265\"}.fa-gg:before{content:\"\\f260\"}.fa-gg-circle:before{content:\"\\f261\"}.fa-ghost:before{content:\"\\f6e2\"}.fa-gift:before{content:\"\\f06b\"}.fa-gifts:before{content:\"\\f79c\"}.fa-git:before{content:\"\\f1d3\"}.fa-git-alt:before{content:\"\\f841\"}.fa-git-square:before{content:\"\\f1d2\"}.fa-github:before{content:\"\\f09b\"}.fa-github-alt:before{content:\"\\f113\"}.fa-github-square:before{content:\"\\f092\"}.fa-gitkraken:before{content:\"\\f3a6\"}.fa-gitlab:before{content:\"\\f296\"}.fa-gitter:before{content:\"\\f426\"}.fa-glass-cheers:before{content:\"\\f79f\"}.fa-glass-martini:before{content:\"\\f000\"}.fa-glass-martini-alt:before{content:\"\\f57b\"}.fa-glass-whiskey:before{content:\"\\f7a0\"}.fa-glasses:before{content:\"\\f530\"}.fa-glide:before{content:\"\\f2a5\"}.fa-glide-g:before{content:\"\\f2a6\"}.fa-globe:before{content:\"\\f0ac\"}.fa-globe-africa:before{content:\"\\f57c\"}.fa-globe-americas:before{content:\"\\f57d\"}.fa-globe-asia:before{content:\"\\f57e\"}.fa-globe-europe:before{content:\"\\f7a2\"}.fa-gofore:before{content:\"\\f3a7\"}.fa-golf-ball:before{content:\"\\f450\"}.fa-goodreads:before{content:\"\\f3a8\"}.fa-goodreads-g:before{content:\"\\f3a9\"}.fa-google:before{content:\"\\f1a0\"}.fa-google-drive:before{content:\"\\f3aa\"}.fa-google-pay:before{content:\"\\e079\"}.fa-google-play:before{content:\"\\f3ab\"}.fa-google-plus:before{content:\"\\f2b3\"}.fa-google-plus-g:before{content:\"\\f0d5\"}.fa-google-plus-square:before{content:\"\\f0d4\"}.fa-google-wallet:before{content:\"\\f1ee\"}.fa-gopuram:before{content:\"\\f664\"}.fa-graduation-cap:before{content:\"\\f19d\"}.fa-gratipay:before{content:\"\\f184\"}.fa-grav:before{content:\"\\f2d6\"}.fa-greater-than:before{content:\"\\f531\"}.fa-greater-than-equal:before{content:\"\\f532\"}.fa-grimace:before{content:\"\\f57f\"}.fa-grin:before{content:\"\\f580\"}.fa-grin-alt:before{content:\"\\f581\"}.fa-grin-beam:before{content:\"\\f582\"}.fa-grin-beam-sweat:before{content:\"\\f583\"}.fa-grin-hearts:before{content:\"\\f584\"}.fa-grin-squint:before{content:\"\\f585\"}.fa-grin-squint-tears:before{content:\"\\f586\"}.fa-grin-stars:before{content:\"\\f587\"}.fa-grin-tears:before{content:\"\\f588\"}.fa-grin-tongue:before{content:\"\\f589\"}.fa-grin-tongue-squint:before{content:\"\\f58a\"}.fa-grin-tongue-wink:before{content:\"\\f58b\"}.fa-grin-wink:before{content:\"\\f58c\"}.fa-grip-horizontal:before{content:\"\\f58d\"}.fa-grip-lines:before{content:\"\\f7a4\"}.fa-grip-lines-vertical:before{content:\"\\f7a5\"}.fa-grip-vertical:before{content:\"\\f58e\"}.fa-gripfire:before{content:\"\\f3ac\"}.fa-grunt:before{content:\"\\f3ad\"}.fa-guilded:before{content:\"\\e07e\"}.fa-guitar:before{content:\"\\f7a6\"}.fa-gulp:before{content:\"\\f3ae\"}.fa-h-square:before{content:\"\\f0fd\"}.fa-hacker-news:before{content:\"\\f1d4\"}.fa-hacker-news-square:before{content:\"\\f3af\"}.fa-hackerrank:before{content:\"\\f5f7\"}.fa-hamburger:before{content:\"\\f805\"}.fa-hammer:before{content:\"\\f6e3\"}.fa-hamsa:before{content:\"\\f665\"}.fa-hand-holding:before{content:\"\\f4bd\"}.fa-hand-holding-heart:before{content:\"\\f4be\"}.fa-hand-holding-medical:before{content:\"\\e05c\"}.fa-hand-holding-usd:before{content:\"\\f4c0\"}.fa-hand-holding-water:before{content:\"\\f4c1\"}.fa-hand-lizard:before{content:\"\\f258\"}.fa-hand-middle-finger:before{content:\"\\f806\"}.fa-hand-paper:before{content:\"\\f256\"}.fa-hand-peace:before{content:\"\\f25b\"}.fa-hand-point-down:before{content:\"\\f0a7\"}.fa-hand-point-left:before{content:\"\\f0a5\"}.fa-hand-point-right:before{content:\"\\f0a4\"}.fa-hand-point-up:before{content:\"\\f0a6\"}.fa-hand-pointer:before{content:\"\\f25a\"}.fa-hand-rock:before{content:\"\\f255\"}.fa-hand-scissors:before{content:\"\\f257\"}.fa-hand-sparkles:before{content:\"\\e05d\"}.fa-hand-spock:before{content:\"\\f259\"}.fa-hands:before{content:\"\\f4c2\"}.fa-hands-helping:before{content:\"\\f4c4\"}.fa-hands-wash:before{content:\"\\e05e\"}.fa-handshake:before{content:\"\\f2b5\"}.fa-handshake-alt-slash:before{content:\"\\e05f\"}.fa-handshake-slash:before{content:\"\\e060\"}.fa-hanukiah:before{content:\"\\f6e6\"}.fa-hard-hat:before{content:\"\\f807\"}.fa-hashtag:before{content:\"\\f292\"}.fa-hat-cowboy:before{content:\"\\f8c0\"}.fa-hat-cowboy-side:before{content:\"\\f8c1\"}.fa-hat-wizard:before{content:\"\\f6e8\"}.fa-hdd:before{content:\"\\f0a0\"}.fa-head-side-cough:before{content:\"\\e061\"}.fa-head-side-cough-slash:before{content:\"\\e062\"}.fa-head-side-mask:before{content:\"\\e063\"}.fa-head-side-virus:before{content:\"\\e064\"}.fa-heading:before{content:\"\\f1dc\"}.fa-headphones:before{content:\"\\f025\"}.fa-headphones-alt:before{content:\"\\f58f\"}.fa-headset:before{content:\"\\f590\"}.fa-heart:before{content:\"\\f004\"}.fa-heart-broken:before{content:\"\\f7a9\"}.fa-heartbeat:before{content:\"\\f21e\"}.fa-helicopter:before{content:\"\\f533\"}.fa-highlighter:before{content:\"\\f591\"}.fa-hiking:before{content:\"\\f6ec\"}.fa-hippo:before{content:\"\\f6ed\"}.fa-hips:before{content:\"\\f452\"}.fa-hire-a-helper:before{content:\"\\f3b0\"}.fa-history:before{content:\"\\f1da\"}.fa-hive:before{content:\"\\e07f\"}.fa-hockey-puck:before{content:\"\\f453\"}.fa-holly-berry:before{content:\"\\f7aa\"}.fa-home:before{content:\"\\f015\"}.fa-hooli:before{content:\"\\f427\"}.fa-hornbill:before{content:\"\\f592\"}.fa-horse:before{content:\"\\f6f0\"}.fa-horse-head:before{content:\"\\f7ab\"}.fa-hospital:before{content:\"\\f0f8\"}.fa-hospital-alt:before{content:\"\\f47d\"}.fa-hospital-symbol:before{content:\"\\f47e\"}.fa-hospital-user:before{content:\"\\f80d\"}.fa-hot-tub:before{content:\"\\f593\"}.fa-hotdog:before{content:\"\\f80f\"}.fa-hotel:before{content:\"\\f594\"}.fa-hotjar:before{content:\"\\f3b1\"}.fa-hourglass:before{content:\"\\f254\"}.fa-hourglass-end:before{content:\"\\f253\"}.fa-hourglass-half:before{content:\"\\f252\"}.fa-hourglass-start:before{content:\"\\f251\"}.fa-house-damage:before{content:\"\\f6f1\"}.fa-house-user:before{content:\"\\e065\"}.fa-houzz:before{content:\"\\f27c\"}.fa-hryvnia:before{content:\"\\f6f2\"}.fa-html5:before{content:\"\\f13b\"}.fa-hubspot:before{content:\"\\f3b2\"}.fa-i-cursor:before{content:\"\\f246\"}.fa-ice-cream:before{content:\"\\f810\"}.fa-icicles:before{content:\"\\f7ad\"}.fa-icons:before{content:\"\\f86d\"}.fa-id-badge:before{content:\"\\f2c1\"}.fa-id-card:before{content:\"\\f2c2\"}.fa-id-card-alt:before{content:\"\\f47f\"}.fa-ideal:before{content:\"\\e013\"}.fa-igloo:before{content:\"\\f7ae\"}.fa-image:before{content:\"\\f03e\"}.fa-images:before{content:\"\\f302\"}.fa-imdb:before{content:\"\\f2d8\"}.fa-inbox:before{content:\"\\f01c\"}.fa-indent:before{content:\"\\f03c\"}.fa-industry:before{content:\"\\f275\"}.fa-infinity:before{content:\"\\f534\"}.fa-info:before{content:\"\\f129\"}.fa-info-circle:before{content:\"\\f05a\"}.fa-innosoft:before{content:\"\\e080\"}.fa-instagram:before{content:\"\\f16d\"}.fa-instagram-square:before{content:\"\\e055\"}.fa-instalod:before{content:\"\\e081\"}.fa-intercom:before{content:\"\\f7af\"}.fa-internet-explorer:before{content:\"\\f26b\"}.fa-invision:before{content:\"\\f7b0\"}.fa-ioxhost:before{content:\"\\f208\"}.fa-italic:before{content:\"\\f033\"}.fa-itch-io:before{content:\"\\f83a\"}.fa-itunes:before{content:\"\\f3b4\"}.fa-itunes-note:before{content:\"\\f3b5\"}.fa-java:before{content:\"\\f4e4\"}.fa-jedi:before{content:\"\\f669\"}.fa-jedi-order:before{content:\"\\f50e\"}.fa-jenkins:before{content:\"\\f3b6\"}.fa-jira:before{content:\"\\f7b1\"}.fa-joget:before{content:\"\\f3b7\"}.fa-joint:before{content:\"\\f595\"}.fa-joomla:before{content:\"\\f1aa\"}.fa-journal-whills:before{content:\"\\f66a\"}.fa-js:before{content:\"\\f3b8\"}.fa-js-square:before{content:\"\\f3b9\"}.fa-jsfiddle:before{content:\"\\f1cc\"}.fa-kaaba:before{content:\"\\f66b\"}.fa-kaggle:before{content:\"\\f5fa\"}.fa-key:before{content:\"\\f084\"}.fa-keybase:before{content:\"\\f4f5\"}.fa-keyboard:before{content:\"\\f11c\"}.fa-keycdn:before{content:\"\\f3ba\"}.fa-khanda:before{content:\"\\f66d\"}.fa-kickstarter:before{content:\"\\f3bb\"}.fa-kickstarter-k:before{content:\"\\f3bc\"}.fa-kiss:before{content:\"\\f596\"}.fa-kiss-beam:before{content:\"\\f597\"}.fa-kiss-wink-heart:before{content:\"\\f598\"}.fa-kiwi-bird:before{content:\"\\f535\"}.fa-korvue:before{content:\"\\f42f\"}.fa-landmark:before{content:\"\\f66f\"}.fa-language:before{content:\"\\f1ab\"}.fa-laptop:before{content:\"\\f109\"}.fa-laptop-code:before{content:\"\\f5fc\"}.fa-laptop-house:before{content:\"\\e066\"}.fa-laptop-medical:before{content:\"\\f812\"}.fa-laravel:before{content:\"\\f3bd\"}.fa-lastfm:before{content:\"\\f202\"}.fa-lastfm-square:before{content:\"\\f203\"}.fa-laugh:before{content:\"\\f599\"}.fa-laugh-beam:before{content:\"\\f59a\"}.fa-laugh-squint:before{content:\"\\f59b\"}.fa-laugh-wink:before{content:\"\\f59c\"}.fa-layer-group:before{content:\"\\f5fd\"}.fa-leaf:before{content:\"\\f06c\"}.fa-leanpub:before{content:\"\\f212\"}.fa-lemon:before{content:\"\\f094\"}.fa-less:before{content:\"\\f41d\"}.fa-less-than:before{content:\"\\f536\"}.fa-less-than-equal:before{content:\"\\f537\"}.fa-level-down-alt:before{content:\"\\f3be\"}.fa-level-up-alt:before{content:\"\\f3bf\"}.fa-life-ring:before{content:\"\\f1cd\"}.fa-lightbulb:before{content:\"\\f0eb\"}.fa-line:before{content:\"\\f3c0\"}.fa-link:before{content:\"\\f0c1\"}.fa-linkedin:before{content:\"\\f08c\"}.fa-linkedin-in:before{content:\"\\f0e1\"}.fa-linode:before{content:\"\\f2b8\"}.fa-linux:before{content:\"\\f17c\"}.fa-lira-sign:before{content:\"\\f195\"}.fa-list:before{content:\"\\f03a\"}.fa-list-alt:before{content:\"\\f022\"}.fa-list-ol:before{content:\"\\f0cb\"}.fa-list-ul:before{content:\"\\f0ca\"}.fa-location-arrow:before{content:\"\\f124\"}.fa-lock:before{content:\"\\f023\"}.fa-lock-open:before{content:\"\\f3c1\"}.fa-long-arrow-alt-down:before{content:\"\\f309\"}.fa-long-arrow-alt-left:before{content:\"\\f30a\"}.fa-long-arrow-alt-right:before{content:\"\\f30b\"}.fa-long-arrow-alt-up:before{content:\"\\f30c\"}.fa-low-vision:before{content:\"\\f2a8\"}.fa-luggage-cart:before{content:\"\\f59d\"}.fa-lungs:before{content:\"\\f604\"}.fa-lungs-virus:before{content:\"\\e067\"}.fa-lyft:before{content:\"\\f3c3\"}.fa-magento:before{content:\"\\f3c4\"}.fa-magic:before{content:\"\\f0d0\"}.fa-magnet:before{content:\"\\f076\"}.fa-mail-bulk:before{content:\"\\f674\"}.fa-mailchimp:before{content:\"\\f59e\"}.fa-male:before{content:\"\\f183\"}.fa-mandalorian:before{content:\"\\f50f\"}.fa-map:before{content:\"\\f279\"}.fa-map-marked:before{content:\"\\f59f\"}.fa-map-marked-alt:before{content:\"\\f5a0\"}.fa-map-marker:before{content:\"\\f041\"}.fa-map-marker-alt:before{content:\"\\f3c5\"}.fa-map-pin:before{content:\"\\f276\"}.fa-map-signs:before{content:\"\\f277\"}.fa-markdown:before{content:\"\\f60f\"}.fa-marker:before{content:\"\\f5a1\"}.fa-mars:before{content:\"\\f222\"}.fa-mars-double:before{content:\"\\f227\"}.fa-mars-stroke:before{content:\"\\f229\"}.fa-mars-stroke-h:before{content:\"\\f22b\"}.fa-mars-stroke-v:before{content:\"\\f22a\"}.fa-mask:before{content:\"\\f6fa\"}.fa-mastodon:before{content:\"\\f4f6\"}.fa-maxcdn:before{content:\"\\f136\"}.fa-mdb:before{content:\"\\f8ca\"}.fa-medal:before{content:\"\\f5a2\"}.fa-medapps:before{content:\"\\f3c6\"}.fa-medium:before{content:\"\\f23a\"}.fa-medium-m:before{content:\"\\f3c7\"}.fa-medkit:before{content:\"\\f0fa\"}.fa-medrt:before{content:\"\\f3c8\"}.fa-meetup:before{content:\"\\f2e0\"}.fa-megaport:before{content:\"\\f5a3\"}.fa-meh:before{content:\"\\f11a\"}.fa-meh-blank:before{content:\"\\f5a4\"}.fa-meh-rolling-eyes:before{content:\"\\f5a5\"}.fa-memory:before{content:\"\\f538\"}.fa-mendeley:before{content:\"\\f7b3\"}.fa-menorah:before{content:\"\\f676\"}.fa-mercury:before{content:\"\\f223\"}.fa-meteor:before{content:\"\\f753\"}.fa-microblog:before{content:\"\\e01a\"}.fa-microchip:before{content:\"\\f2db\"}.fa-microphone:before{content:\"\\f130\"}.fa-microphone-alt:before{content:\"\\f3c9\"}.fa-microphone-alt-slash:before{content:\"\\f539\"}.fa-microphone-slash:before{content:\"\\f131\"}.fa-microscope:before{content:\"\\f610\"}.fa-microsoft:before{content:\"\\f3ca\"}.fa-minus:before{content:\"\\f068\"}.fa-minus-circle:before{content:\"\\f056\"}.fa-minus-square:before{content:\"\\f146\"}.fa-mitten:before{content:\"\\f7b5\"}.fa-mix:before{content:\"\\f3cb\"}.fa-mixcloud:before{content:\"\\f289\"}.fa-mixer:before{content:\"\\e056\"}.fa-mizuni:before{content:\"\\f3cc\"}.fa-mobile:before{content:\"\\f10b\"}.fa-mobile-alt:before{content:\"\\f3cd\"}.fa-modx:before{content:\"\\f285\"}.fa-monero:before{content:\"\\f3d0\"}.fa-money-bill:before{content:\"\\f0d6\"}.fa-money-bill-alt:before{content:\"\\f3d1\"}.fa-money-bill-wave:before{content:\"\\f53a\"}.fa-money-bill-wave-alt:before{content:\"\\f53b\"}.fa-money-check:before{content:\"\\f53c\"}.fa-money-check-alt:before{content:\"\\f53d\"}.fa-monument:before{content:\"\\f5a6\"}.fa-moon:before{content:\"\\f186\"}.fa-mortar-pestle:before{content:\"\\f5a7\"}.fa-mosque:before{content:\"\\f678\"}.fa-motorcycle:before{content:\"\\f21c\"}.fa-mountain:before{content:\"\\f6fc\"}.fa-mouse:before{content:\"\\f8cc\"}.fa-mouse-pointer:before{content:\"\\f245\"}.fa-mug-hot:before{content:\"\\f7b6\"}.fa-music:before{content:\"\\f001\"}.fa-napster:before{content:\"\\f3d2\"}.fa-neos:before{content:\"\\f612\"}.fa-network-wired:before{content:\"\\f6ff\"}.fa-neuter:before{content:\"\\f22c\"}.fa-newspaper:before{content:\"\\f1ea\"}.fa-nimblr:before{content:\"\\f5a8\"}.fa-node:before{content:\"\\f419\"}.fa-node-js:before{content:\"\\f3d3\"}.fa-not-equal:before{content:\"\\f53e\"}.fa-notes-medical:before{content:\"\\f481\"}.fa-npm:before{content:\"\\f3d4\"}.fa-ns8:before{content:\"\\f3d5\"}.fa-nutritionix:before{content:\"\\f3d6\"}.fa-object-group:before{content:\"\\f247\"}.fa-object-ungroup:before{content:\"\\f248\"}.fa-octopus-deploy:before{content:\"\\e082\"}.fa-odnoklassniki:before{content:\"\\f263\"}.fa-odnoklassniki-square:before{content:\"\\f264\"}.fa-oil-can:before{content:\"\\f613\"}.fa-old-republic:before{content:\"\\f510\"}.fa-om:before{content:\"\\f679\"}.fa-opencart:before{content:\"\\f23d\"}.fa-openid:before{content:\"\\f19b\"}.fa-opera:before{content:\"\\f26a\"}.fa-optin-monster:before{content:\"\\f23c\"}.fa-orcid:before{content:\"\\f8d2\"}.fa-osi:before{content:\"\\f41a\"}.fa-otter:before{content:\"\\f700\"}.fa-outdent:before{content:\"\\f03b\"}.fa-page4:before{content:\"\\f3d7\"}.fa-pagelines:before{content:\"\\f18c\"}.fa-pager:before{content:\"\\f815\"}.fa-paint-brush:before{content:\"\\f1fc\"}.fa-paint-roller:before{content:\"\\f5aa\"}.fa-palette:before{content:\"\\f53f\"}.fa-palfed:before{content:\"\\f3d8\"}.fa-pallet:before{content:\"\\f482\"}.fa-paper-plane:before{content:\"\\f1d8\"}.fa-paperclip:before{content:\"\\f0c6\"}.fa-parachute-box:before{content:\"\\f4cd\"}.fa-paragraph:before{content:\"\\f1dd\"}.fa-parking:before{content:\"\\f540\"}.fa-passport:before{content:\"\\f5ab\"}.fa-pastafarianism:before{content:\"\\f67b\"}.fa-paste:before{content:\"\\f0ea\"}.fa-patreon:before{content:\"\\f3d9\"}.fa-pause:before{content:\"\\f04c\"}.fa-pause-circle:before{content:\"\\f28b\"}.fa-paw:before{content:\"\\f1b0\"}.fa-paypal:before{content:\"\\f1ed\"}.fa-peace:before{content:\"\\f67c\"}.fa-pen:before{content:\"\\f304\"}.fa-pen-alt:before{content:\"\\f305\"}.fa-pen-fancy:before{content:\"\\f5ac\"}.fa-pen-nib:before{content:\"\\f5ad\"}.fa-pen-square:before{content:\"\\f14b\"}.fa-pencil-alt:before{content:\"\\f303\"}.fa-pencil-ruler:before{content:\"\\f5ae\"}.fa-penny-arcade:before{content:\"\\f704\"}.fa-people-arrows:before{content:\"\\e068\"}.fa-people-carry:before{content:\"\\f4ce\"}.fa-pepper-hot:before{content:\"\\f816\"}.fa-perbyte:before{content:\"\\e083\"}.fa-percent:before{content:\"\\f295\"}.fa-percentage:before{content:\"\\f541\"}.fa-periscope:before{content:\"\\f3da\"}.fa-person-booth:before{content:\"\\f756\"}.fa-phabricator:before{content:\"\\f3db\"}.fa-phoenix-framework:before{content:\"\\f3dc\"}.fa-phoenix-squadron:before{content:\"\\f511\"}.fa-phone:before{content:\"\\f095\"}.fa-phone-alt:before{content:\"\\f879\"}.fa-phone-slash:before{content:\"\\f3dd\"}.fa-phone-square:before{content:\"\\f098\"}.fa-phone-square-alt:before{content:\"\\f87b\"}.fa-phone-volume:before{content:\"\\f2a0\"}.fa-photo-video:before{content:\"\\f87c\"}.fa-php:before{content:\"\\f457\"}.fa-pied-piper:before{content:\"\\f2ae\"}.fa-pied-piper-alt:before{content:\"\\f1a8\"}.fa-pied-piper-hat:before{content:\"\\f4e5\"}.fa-pied-piper-pp:before{content:\"\\f1a7\"}.fa-pied-piper-square:before{content:\"\\e01e\"}.fa-piggy-bank:before{content:\"\\f4d3\"}.fa-pills:before{content:\"\\f484\"}.fa-pinterest:before{content:\"\\f0d2\"}.fa-pinterest-p:before{content:\"\\f231\"}.fa-pinterest-square:before{content:\"\\f0d3\"}.fa-pizza-slice:before{content:\"\\f818\"}.fa-place-of-worship:before{content:\"\\f67f\"}.fa-plane:before{content:\"\\f072\"}.fa-plane-arrival:before{content:\"\\f5af\"}.fa-plane-departure:before{content:\"\\f5b0\"}.fa-plane-slash:before{content:\"\\e069\"}.fa-play:before{content:\"\\f04b\"}.fa-play-circle:before{content:\"\\f144\"}.fa-playstation:before{content:\"\\f3df\"}.fa-plug:before{content:\"\\f1e6\"}.fa-plus:before{content:\"\\f067\"}.fa-plus-circle:before{content:\"\\f055\"}.fa-plus-square:before{content:\"\\f0fe\"}.fa-podcast:before{content:\"\\f2ce\"}.fa-poll:before{content:\"\\f681\"}.fa-poll-h:before{content:\"\\f682\"}.fa-poo:before{content:\"\\f2fe\"}.fa-poo-storm:before{content:\"\\f75a\"}.fa-poop:before{content:\"\\f619\"}.fa-portrait:before{content:\"\\f3e0\"}.fa-pound-sign:before{content:\"\\f154\"}.fa-power-off:before{content:\"\\f011\"}.fa-pray:before{content:\"\\f683\"}.fa-praying-hands:before{content:\"\\f684\"}.fa-prescription:before{content:\"\\f5b1\"}.fa-prescription-bottle:before{content:\"\\f485\"}.fa-prescription-bottle-alt:before{content:\"\\f486\"}.fa-print:before{content:\"\\f02f\"}.fa-procedures:before{content:\"\\f487\"}.fa-product-hunt:before{content:\"\\f288\"}.fa-project-diagram:before{content:\"\\f542\"}.fa-pump-medical:before{content:\"\\e06a\"}.fa-pump-soap:before{content:\"\\e06b\"}.fa-pushed:before{content:\"\\f3e1\"}.fa-puzzle-piece:before{content:\"\\f12e\"}.fa-python:before{content:\"\\f3e2\"}.fa-qq:before{content:\"\\f1d6\"}.fa-qrcode:before{content:\"\\f029\"}.fa-question:before{content:\"\\f128\"}.fa-question-circle:before{content:\"\\f059\"}.fa-quidditch:before{content:\"\\f458\"}.fa-quinscape:before{content:\"\\f459\"}.fa-quora:before{content:\"\\f2c4\"}.fa-quote-left:before{content:\"\\f10d\"}.fa-quote-right:before{content:\"\\f10e\"}.fa-quran:before{content:\"\\f687\"}.fa-r-project:before{content:\"\\f4f7\"}.fa-radiation:before{content:\"\\f7b9\"}.fa-radiation-alt:before{content:\"\\f7ba\"}.fa-rainbow:before{content:\"\\f75b\"}.fa-random:before{content:\"\\f074\"}.fa-raspberry-pi:before{content:\"\\f7bb\"}.fa-ravelry:before{content:\"\\f2d9\"}.fa-react:before{content:\"\\f41b\"}.fa-reacteurope:before{content:\"\\f75d\"}.fa-readme:before{content:\"\\f4d5\"}.fa-rebel:before{content:\"\\f1d0\"}.fa-receipt:before{content:\"\\f543\"}.fa-record-vinyl:before{content:\"\\f8d9\"}.fa-recycle:before{content:\"\\f1b8\"}.fa-red-river:before{content:\"\\f3e3\"}.fa-reddit:before{content:\"\\f1a1\"}.fa-reddit-alien:before{content:\"\\f281\"}.fa-reddit-square:before{content:\"\\f1a2\"}.fa-redhat:before{content:\"\\f7bc\"}.fa-redo:before{content:\"\\f01e\"}.fa-redo-alt:before{content:\"\\f2f9\"}.fa-registered:before{content:\"\\f25d\"}.fa-remove-format:before{content:\"\\f87d\"}.fa-renren:before{content:\"\\f18b\"}.fa-reply:before{content:\"\\f3e5\"}.fa-reply-all:before{content:\"\\f122\"}.fa-replyd:before{content:\"\\f3e6\"}.fa-republican:before{content:\"\\f75e\"}.fa-researchgate:before{content:\"\\f4f8\"}.fa-resolving:before{content:\"\\f3e7\"}.fa-restroom:before{content:\"\\f7bd\"}.fa-retweet:before{content:\"\\f079\"}.fa-rev:before{content:\"\\f5b2\"}.fa-ribbon:before{content:\"\\f4d6\"}.fa-ring:before{content:\"\\f70b\"}.fa-road:before{content:\"\\f018\"}.fa-robot:before{content:\"\\f544\"}.fa-rocket:before{content:\"\\f135\"}.fa-rocketchat:before{content:\"\\f3e8\"}.fa-rockrms:before{content:\"\\f3e9\"}.fa-route:before{content:\"\\f4d7\"}.fa-rss:before{content:\"\\f09e\"}.fa-rss-square:before{content:\"\\f143\"}.fa-ruble-sign:before{content:\"\\f158\"}.fa-ruler:before{content:\"\\f545\"}.fa-ruler-combined:before{content:\"\\f546\"}.fa-ruler-horizontal:before{content:\"\\f547\"}.fa-ruler-vertical:before{content:\"\\f548\"}.fa-running:before{content:\"\\f70c\"}.fa-rupee-sign:before{content:\"\\f156\"}.fa-rust:before{content:\"\\e07a\"}.fa-sad-cry:before{content:\"\\f5b3\"}.fa-sad-tear:before{content:\"\\f5b4\"}.fa-safari:before{content:\"\\f267\"}.fa-salesforce:before{content:\"\\f83b\"}.fa-sass:before{content:\"\\f41e\"}.fa-satellite:before{content:\"\\f7bf\"}.fa-satellite-dish:before{content:\"\\f7c0\"}.fa-save:before{content:\"\\f0c7\"}.fa-schlix:before{content:\"\\f3ea\"}.fa-school:before{content:\"\\f549\"}.fa-screwdriver:before{content:\"\\f54a\"}.fa-scribd:before{content:\"\\f28a\"}.fa-scroll:before{content:\"\\f70e\"}.fa-sd-card:before{content:\"\\f7c2\"}.fa-search:before{content:\"\\f002\"}.fa-search-dollar:before{content:\"\\f688\"}.fa-search-location:before{content:\"\\f689\"}.fa-search-minus:before{content:\"\\f010\"}.fa-search-plus:before{content:\"\\f00e\"}.fa-searchengin:before{content:\"\\f3eb\"}.fa-seedling:before{content:\"\\f4d8\"}.fa-sellcast:before{content:\"\\f2da\"}.fa-sellsy:before{content:\"\\f213\"}.fa-server:before{content:\"\\f233\"}.fa-servicestack:before{content:\"\\f3ec\"}.fa-shapes:before{content:\"\\f61f\"}.fa-share:before{content:\"\\f064\"}.fa-share-alt:before{content:\"\\f1e0\"}.fa-share-alt-square:before{content:\"\\f1e1\"}.fa-share-square:before{content:\"\\f14d\"}.fa-shekel-sign:before{content:\"\\f20b\"}.fa-shield-alt:before{content:\"\\f3ed\"}.fa-shield-virus:before{content:\"\\e06c\"}.fa-ship:before{content:\"\\f21a\"}.fa-shipping-fast:before{content:\"\\f48b\"}.fa-shirtsinbulk:before{content:\"\\f214\"}.fa-shoe-prints:before{content:\"\\f54b\"}.fa-shopify:before{content:\"\\e057\"}.fa-shopping-bag:before{content:\"\\f290\"}.fa-shopping-basket:before{content:\"\\f291\"}.fa-shopping-cart:before{content:\"\\f07a\"}.fa-shopware:before{content:\"\\f5b5\"}.fa-shower:before{content:\"\\f2cc\"}.fa-shuttle-van:before{content:\"\\f5b6\"}.fa-sign:before{content:\"\\f4d9\"}.fa-sign-in-alt:before{content:\"\\f2f6\"}.fa-sign-language:before{content:\"\\f2a7\"}.fa-sign-out-alt:before{content:\"\\f2f5\"}.fa-signal:before{content:\"\\f012\"}.fa-signature:before{content:\"\\f5b7\"}.fa-sim-card:before{content:\"\\f7c4\"}.fa-simplybuilt:before{content:\"\\f215\"}.fa-sink:before{content:\"\\e06d\"}.fa-sistrix:before{content:\"\\f3ee\"}.fa-sitemap:before{content:\"\\f0e8\"}.fa-sith:before{content:\"\\f512\"}.fa-skating:before{content:\"\\f7c5\"}.fa-sketch:before{content:\"\\f7c6\"}.fa-skiing:before{content:\"\\f7c9\"}.fa-skiing-nordic:before{content:\"\\f7ca\"}.fa-skull:before{content:\"\\f54c\"}.fa-skull-crossbones:before{content:\"\\f714\"}.fa-skyatlas:before{content:\"\\f216\"}.fa-skype:before{content:\"\\f17e\"}.fa-slack:before{content:\"\\f198\"}.fa-slack-hash:before{content:\"\\f3ef\"}.fa-slash:before{content:\"\\f715\"}.fa-sleigh:before{content:\"\\f7cc\"}.fa-sliders-h:before{content:\"\\f1de\"}.fa-slideshare:before{content:\"\\f1e7\"}.fa-smile:before{content:\"\\f118\"}.fa-smile-beam:before{content:\"\\f5b8\"}.fa-smile-wink:before{content:\"\\f4da\"}.fa-smog:before{content:\"\\f75f\"}.fa-smoking:before{content:\"\\f48d\"}.fa-smoking-ban:before{content:\"\\f54d\"}.fa-sms:before{content:\"\\f7cd\"}.fa-snapchat:before{content:\"\\f2ab\"}.fa-snapchat-ghost:before{content:\"\\f2ac\"}.fa-snapchat-square:before{content:\"\\f2ad\"}.fa-snowboarding:before{content:\"\\f7ce\"}.fa-snowflake:before{content:\"\\f2dc\"}.fa-snowman:before{content:\"\\f7d0\"}.fa-snowplow:before{content:\"\\f7d2\"}.fa-soap:before{content:\"\\e06e\"}.fa-socks:before{content:\"\\f696\"}.fa-solar-panel:before{content:\"\\f5ba\"}.fa-sort:before{content:\"\\f0dc\"}.fa-sort-alpha-down:before{content:\"\\f15d\"}.fa-sort-alpha-down-alt:before{content:\"\\f881\"}.fa-sort-alpha-up:before{content:\"\\f15e\"}.fa-sort-alpha-up-alt:before{content:\"\\f882\"}.fa-sort-amount-down:before{content:\"\\f160\"}.fa-sort-amount-down-alt:before{content:\"\\f884\"}.fa-sort-amount-up:before{content:\"\\f161\"}.fa-sort-amount-up-alt:before{content:\"\\f885\"}.fa-sort-down:before{content:\"\\f0dd\"}.fa-sort-numeric-down:before{content:\"\\f162\"}.fa-sort-numeric-down-alt:before{content:\"\\f886\"}.fa-sort-numeric-up:before{content:\"\\f163\"}.fa-sort-numeric-up-alt:before{content:\"\\f887\"}.fa-sort-up:before{content:\"\\f0de\"}.fa-soundcloud:before{content:\"\\f1be\"}.fa-sourcetree:before{content:\"\\f7d3\"}.fa-spa:before{content:\"\\f5bb\"}.fa-space-shuttle:before{content:\"\\f197\"}.fa-speakap:before{content:\"\\f3f3\"}.fa-speaker-deck:before{content:\"\\f83c\"}.fa-spell-check:before{content:\"\\f891\"}.fa-spider:before{content:\"\\f717\"}.fa-spinner:before{content:\"\\f110\"}.fa-splotch:before{content:\"\\f5bc\"}.fa-spotify:before{content:\"\\f1bc\"}.fa-spray-can:before{content:\"\\f5bd\"}.fa-square:before{content:\"\\f0c8\"}.fa-square-full:before{content:\"\\f45c\"}.fa-square-root-alt:before{content:\"\\f698\"}.fa-squarespace:before{content:\"\\f5be\"}.fa-stack-exchange:before{content:\"\\f18d\"}.fa-stack-overflow:before{content:\"\\f16c\"}.fa-stackpath:before{content:\"\\f842\"}.fa-stamp:before{content:\"\\f5bf\"}.fa-star:before{content:\"\\f005\"}.fa-star-and-crescent:before{content:\"\\f699\"}.fa-star-half:before{content:\"\\f089\"}.fa-star-half-alt:before{content:\"\\f5c0\"}.fa-star-of-david:before{content:\"\\f69a\"}.fa-star-of-life:before{content:\"\\f621\"}.fa-staylinked:before{content:\"\\f3f5\"}.fa-steam:before{content:\"\\f1b6\"}.fa-steam-square:before{content:\"\\f1b7\"}.fa-steam-symbol:before{content:\"\\f3f6\"}.fa-step-backward:before{content:\"\\f048\"}.fa-step-forward:before{content:\"\\f051\"}.fa-stethoscope:before{content:\"\\f0f1\"}.fa-sticker-mule:before{content:\"\\f3f7\"}.fa-sticky-note:before{content:\"\\f249\"}.fa-stop:before{content:\"\\f04d\"}.fa-stop-circle:before{content:\"\\f28d\"}.fa-stopwatch:before{content:\"\\f2f2\"}.fa-stopwatch-20:before{content:\"\\e06f\"}.fa-store:before{content:\"\\f54e\"}.fa-store-alt:before{content:\"\\f54f\"}.fa-store-alt-slash:before{content:\"\\e070\"}.fa-store-slash:before{content:\"\\e071\"}.fa-strava:before{content:\"\\f428\"}.fa-stream:before{content:\"\\f550\"}.fa-street-view:before{content:\"\\f21d\"}.fa-strikethrough:before{content:\"\\f0cc\"}.fa-stripe:before{content:\"\\f429\"}.fa-stripe-s:before{content:\"\\f42a\"}.fa-stroopwafel:before{content:\"\\f551\"}.fa-studiovinari:before{content:\"\\f3f8\"}.fa-stumbleupon:before{content:\"\\f1a4\"}.fa-stumbleupon-circle:before{content:\"\\f1a3\"}.fa-subscript:before{content:\"\\f12c\"}.fa-subway:before{content:\"\\f239\"}.fa-suitcase:before{content:\"\\f0f2\"}.fa-suitcase-rolling:before{content:\"\\f5c1\"}.fa-sun:before{content:\"\\f185\"}.fa-superpowers:before{content:\"\\f2dd\"}.fa-superscript:before{content:\"\\f12b\"}.fa-supple:before{content:\"\\f3f9\"}.fa-surprise:before{content:\"\\f5c2\"}.fa-suse:before{content:\"\\f7d6\"}.fa-swatchbook:before{content:\"\\f5c3\"}.fa-swift:before{content:\"\\f8e1\"}.fa-swimmer:before{content:\"\\f5c4\"}.fa-swimming-pool:before{content:\"\\f5c5\"}.fa-symfony:before{content:\"\\f83d\"}.fa-synagogue:before{content:\"\\f69b\"}.fa-sync:before{content:\"\\f021\"}.fa-sync-alt:before{content:\"\\f2f1\"}.fa-syringe:before{content:\"\\f48e\"}.fa-table:before{content:\"\\f0ce\"}.fa-table-tennis:before{content:\"\\f45d\"}.fa-tablet:before{content:\"\\f10a\"}.fa-tablet-alt:before{content:\"\\f3fa\"}.fa-tablets:before{content:\"\\f490\"}.fa-tachometer-alt:before{content:\"\\f3fd\"}.fa-tag:before{content:\"\\f02b\"}.fa-tags:before{content:\"\\f02c\"}.fa-tape:before{content:\"\\f4db\"}.fa-tasks:before{content:\"\\f0ae\"}.fa-taxi:before{content:\"\\f1ba\"}.fa-teamspeak:before{content:\"\\f4f9\"}.fa-teeth:before{content:\"\\f62e\"}.fa-teeth-open:before{content:\"\\f62f\"}.fa-telegram:before{content:\"\\f2c6\"}.fa-telegram-plane:before{content:\"\\f3fe\"}.fa-temperature-high:before{content:\"\\f769\"}.fa-temperature-low:before{content:\"\\f76b\"}.fa-tencent-weibo:before{content:\"\\f1d5\"}.fa-tenge:before{content:\"\\f7d7\"}.fa-terminal:before{content:\"\\f120\"}.fa-text-height:before{content:\"\\f034\"}.fa-text-width:before{content:\"\\f035\"}.fa-th:before{content:\"\\f00a\"}.fa-th-large:before{content:\"\\f009\"}.fa-th-list:before{content:\"\\f00b\"}.fa-the-red-yeti:before{content:\"\\f69d\"}.fa-theater-masks:before{content:\"\\f630\"}.fa-themeco:before{content:\"\\f5c6\"}.fa-themeisle:before{content:\"\\f2b2\"}.fa-thermometer:before{content:\"\\f491\"}.fa-thermometer-empty:before{content:\"\\f2cb\"}.fa-thermometer-full:before{content:\"\\f2c7\"}.fa-thermometer-half:before{content:\"\\f2c9\"}.fa-thermometer-quarter:before{content:\"\\f2ca\"}.fa-thermometer-three-quarters:before{content:\"\\f2c8\"}.fa-think-peaks:before{content:\"\\f731\"}.fa-thumbs-down:before{content:\"\\f165\"}.fa-thumbs-up:before{content:\"\\f164\"}.fa-thumbtack:before{content:\"\\f08d\"}.fa-ticket-alt:before{content:\"\\f3ff\"}.fa-tiktok:before{content:\"\\e07b\"}.fa-times:before{content:\"\\f00d\"}.fa-times-circle:before{content:\"\\f057\"}.fa-tint:before{content:\"\\f043\"}.fa-tint-slash:before{content:\"\\f5c7\"}.fa-tired:before{content:\"\\f5c8\"}.fa-toggle-off:before{content:\"\\f204\"}.fa-toggle-on:before{content:\"\\f205\"}.fa-toilet:before{content:\"\\f7d8\"}.fa-toilet-paper:before{content:\"\\f71e\"}.fa-toilet-paper-slash:before{content:\"\\e072\"}.fa-toolbox:before{content:\"\\f552\"}.fa-tools:before{content:\"\\f7d9\"}.fa-tooth:before{content:\"\\f5c9\"}.fa-torah:before{content:\"\\f6a0\"}.fa-torii-gate:before{content:\"\\f6a1\"}.fa-tractor:before{content:\"\\f722\"}.fa-trade-federation:before{content:\"\\f513\"}.fa-trademark:before{content:\"\\f25c\"}.fa-traffic-light:before{content:\"\\f637\"}.fa-trailer:before{content:\"\\e041\"}.fa-train:before{content:\"\\f238\"}.fa-tram:before{content:\"\\f7da\"}.fa-transgender:before{content:\"\\f224\"}.fa-transgender-alt:before{content:\"\\f225\"}.fa-trash:before{content:\"\\f1f8\"}.fa-trash-alt:before{content:\"\\f2ed\"}.fa-trash-restore:before{content:\"\\f829\"}.fa-trash-restore-alt:before{content:\"\\f82a\"}.fa-tree:before{content:\"\\f1bb\"}.fa-trello:before{content:\"\\f181\"}.fa-tripadvisor:before{content:\"\\f262\"}.fa-trophy:before{content:\"\\f091\"}.fa-truck:before{content:\"\\f0d1\"}.fa-truck-loading:before{content:\"\\f4de\"}.fa-truck-monster:before{content:\"\\f63b\"}.fa-truck-moving:before{content:\"\\f4df\"}.fa-truck-pickup:before{content:\"\\f63c\"}.fa-tshirt:before{content:\"\\f553\"}.fa-tty:before{content:\"\\f1e4\"}.fa-tumblr:before{content:\"\\f173\"}.fa-tumblr-square:before{content:\"\\f174\"}.fa-tv:before{content:\"\\f26c\"}.fa-twitch:before{content:\"\\f1e8\"}.fa-twitter:before{content:\"\\f099\"}.fa-twitter-square:before{content:\"\\f081\"}.fa-typo3:before{content:\"\\f42b\"}.fa-uber:before{content:\"\\f402\"}.fa-ubuntu:before{content:\"\\f7df\"}.fa-uikit:before{content:\"\\f403\"}.fa-umbraco:before{content:\"\\f8e8\"}.fa-umbrella:before{content:\"\\f0e9\"}.fa-umbrella-beach:before{content:\"\\f5ca\"}.fa-uncharted:before{content:\"\\e084\"}.fa-underline:before{content:\"\\f0cd\"}.fa-undo:before{content:\"\\f0e2\"}.fa-undo-alt:before{content:\"\\f2ea\"}.fa-uniregistry:before{content:\"\\f404\"}.fa-unity:before{content:\"\\e049\"}.fa-universal-access:before{content:\"\\f29a\"}.fa-university:before{content:\"\\f19c\"}.fa-unlink:before{content:\"\\f127\"}.fa-unlock:before{content:\"\\f09c\"}.fa-unlock-alt:before{content:\"\\f13e\"}.fa-unsplash:before{content:\"\\e07c\"}.fa-untappd:before{content:\"\\f405\"}.fa-upload:before{content:\"\\f093\"}.fa-ups:before{content:\"\\f7e0\"}.fa-usb:before{content:\"\\f287\"}.fa-user:before{content:\"\\f007\"}.fa-user-alt:before{content:\"\\f406\"}.fa-user-alt-slash:before{content:\"\\f4fa\"}.fa-user-astronaut:before{content:\"\\f4fb\"}.fa-user-check:before{content:\"\\f4fc\"}.fa-user-circle:before{content:\"\\f2bd\"}.fa-user-clock:before{content:\"\\f4fd\"}.fa-user-cog:before{content:\"\\f4fe\"}.fa-user-edit:before{content:\"\\f4ff\"}.fa-user-friends:before{content:\"\\f500\"}.fa-user-graduate:before{content:\"\\f501\"}.fa-user-injured:before{content:\"\\f728\"}.fa-user-lock:before{content:\"\\f502\"}.fa-user-md:before{content:\"\\f0f0\"}.fa-user-minus:before{content:\"\\f503\"}.fa-user-ninja:before{content:\"\\f504\"}.fa-user-nurse:before{content:\"\\f82f\"}.fa-user-plus:before{content:\"\\f234\"}.fa-user-secret:before{content:\"\\f21b\"}.fa-user-shield:before{content:\"\\f505\"}.fa-user-slash:before{content:\"\\f506\"}.fa-user-tag:before{content:\"\\f507\"}.fa-user-tie:before{content:\"\\f508\"}.fa-user-times:before{content:\"\\f235\"}.fa-users:before{content:\"\\f0c0\"}.fa-users-cog:before{content:\"\\f509\"}.fa-users-slash:before{content:\"\\e073\"}.fa-usps:before{content:\"\\f7e1\"}.fa-ussunnah:before{content:\"\\f407\"}.fa-utensil-spoon:before{content:\"\\f2e5\"}.fa-utensils:before{content:\"\\f2e7\"}.fa-vaadin:before{content:\"\\f408\"}.fa-vector-square:before{content:\"\\f5cb\"}.fa-venus:before{content:\"\\f221\"}.fa-venus-double:before{content:\"\\f226\"}.fa-venus-mars:before{content:\"\\f228\"}.fa-vest:before{content:\"\\e085\"}.fa-vest-patches:before{content:\"\\e086\"}.fa-viacoin:before{content:\"\\f237\"}.fa-viadeo:before{content:\"\\f2a9\"}.fa-viadeo-square:before{content:\"\\f2aa\"}.fa-vial:before{content:\"\\f492\"}.fa-vials:before{content:\"\\f493\"}.fa-viber:before{content:\"\\f409\"}.fa-video:before{content:\"\\f03d\"}.fa-video-slash:before{content:\"\\f4e2\"}.fa-vihara:before{content:\"\\f6a7\"}.fa-vimeo:before{content:\"\\f40a\"}.fa-vimeo-square:before{content:\"\\f194\"}.fa-vimeo-v:before{content:\"\\f27d\"}.fa-vine:before{content:\"\\f1ca\"}.fa-virus:before{content:\"\\e074\"}.fa-virus-slash:before{content:\"\\e075\"}.fa-viruses:before{content:\"\\e076\"}.fa-vk:before{content:\"\\f189\"}.fa-vnv:before{content:\"\\f40b\"}.fa-voicemail:before{content:\"\\f897\"}.fa-volleyball-ball:before{content:\"\\f45f\"}.fa-volume-down:before{content:\"\\f027\"}.fa-volume-mute:before{content:\"\\f6a9\"}.fa-volume-off:before{content:\"\\f026\"}.fa-volume-up:before{content:\"\\f028\"}.fa-vote-yea:before{content:\"\\f772\"}.fa-vr-cardboard:before{content:\"\\f729\"}.fa-vuejs:before{content:\"\\f41f\"}.fa-walking:before{content:\"\\f554\"}.fa-wallet:before{content:\"\\f555\"}.fa-warehouse:before{content:\"\\f494\"}.fa-watchman-monitoring:before{content:\"\\e087\"}.fa-water:before{content:\"\\f773\"}.fa-wave-square:before{content:\"\\f83e\"}.fa-waze:before{content:\"\\f83f\"}.fa-weebly:before{content:\"\\f5cc\"}.fa-weibo:before{content:\"\\f18a\"}.fa-weight:before{content:\"\\f496\"}.fa-weight-hanging:before{content:\"\\f5cd\"}.fa-weixin:before{content:\"\\f1d7\"}.fa-whatsapp:before{content:\"\\f232\"}.fa-whatsapp-square:before{content:\"\\f40c\"}.fa-wheelchair:before{content:\"\\f193\"}.fa-whmcs:before{content:\"\\f40d\"}.fa-wifi:before{content:\"\\f1eb\"}.fa-wikipedia-w:before{content:\"\\f266\"}.fa-wind:before{content:\"\\f72e\"}.fa-window-close:before{content:\"\\f410\"}.fa-window-maximize:before{content:\"\\f2d0\"}.fa-window-minimize:before{content:\"\\f2d1\"}.fa-window-restore:before{content:\"\\f2d2\"}.fa-windows:before{content:\"\\f17a\"}.fa-wine-bottle:before{content:\"\\f72f\"}.fa-wine-glass:before{content:\"\\f4e3\"}.fa-wine-glass-alt:before{content:\"\\f5ce\"}.fa-wix:before{content:\"\\f5cf\"}.fa-wizards-of-the-coast:before{content:\"\\f730\"}.fa-wodu:before{content:\"\\e088\"}.fa-wolf-pack-battalion:before{content:\"\\f514\"}.fa-won-sign:before{content:\"\\f159\"}.fa-wordpress:before{content:\"\\f19a\"}.fa-wordpress-simple:before{content:\"\\f411\"}.fa-wpbeginner:before{content:\"\\f297\"}.fa-wpexplorer:before{content:\"\\f2de\"}.fa-wpforms:before{content:\"\\f298\"}.fa-wpressr:before{content:\"\\f3e4\"}.fa-wrench:before{content:\"\\f0ad\"}.fa-x-ray:before{content:\"\\f497\"}.fa-xbox:before{content:\"\\f412\"}.fa-xing:before{content:\"\\f168\"}.fa-xing-square:before{content:\"\\f169\"}.fa-y-combinator:before{content:\"\\f23b\"}.fa-yahoo:before{content:\"\\f19e\"}.fa-yammer:before{content:\"\\f840\"}.fa-yandex:before{content:\"\\f413\"}.fa-yandex-international:before{content:\"\\f414\"}.fa-yarn:before{content:\"\\f7e3\"}.fa-yelp:before{content:\"\\f1e9\"}.fa-yen-sign:before{content:\"\\f157\"}.fa-yin-yang:before{content:\"\\f6ad\"}.fa-yoast:before{content:\"\\f2b1\"}.fa-youtube:before{content:\"\\f167\"}.fa-youtube-square:before{content:\"\\f431\"}.fa-zhihu:before{content:\"\\f63f\"}.fa.fa-glass:before{content:\"\\f000\"}.fa.fa-meetup{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-star-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-o:before{content:\"\\f005\"}.fa.fa-close:before,.fa.fa-remove:before{content:\"\\f00d\"}.fa.fa-gear:before{content:\"\\f013\"}.fa.fa-trash-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-trash-o:before{content:\"\\f2ed\"}.fa.fa-file-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-o:before{content:\"\\f15b\"}.fa.fa-clock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-clock-o:before{content:\"\\f017\"}.fa.fa-arrow-circle-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:\"\\f358\"}.fa.fa-arrow-circle-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:\"\\f35b\"}.fa.fa-play-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-play-circle-o:before{content:\"\\f144\"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:\"\\f01e\"}.fa.fa-refresh:before{content:\"\\f021\"}.fa.fa-list-alt{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-dedent:before{content:\"\\f03b\"}.fa.fa-video-camera:before{content:\"\\f03d\"}.fa.fa-picture-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-picture-o:before{content:\"\\f03e\"}.fa.fa-photo{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-photo:before{content:\"\\f03e\"}.fa.fa-image{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-image:before{content:\"\\f03e\"}.fa.fa-pencil:before{content:\"\\f303\"}.fa.fa-map-marker:before{content:\"\\f3c5\"}.fa.fa-pencil-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-pencil-square-o:before{content:\"\\f044\"}.fa.fa-share-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-share-square-o:before{content:\"\\f14d\"}.fa.fa-check-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-check-square-o:before{content:\"\\f14a\"}.fa.fa-arrows:before{content:\"\\f0b2\"}.fa.fa-times-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-circle-o:before{content:\"\\f057\"}.fa.fa-check-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-check-circle-o:before{content:\"\\f058\"}.fa.fa-mail-forward:before{content:\"\\f064\"}.fa.fa-eye,.fa.fa-eye-slash{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-warning:before{content:\"\\f071\"}.fa.fa-calendar:before{content:\"\\f073\"}.fa.fa-arrows-v:before{content:\"\\f338\"}.fa.fa-arrows-h:before{content:\"\\f337\"}.fa.fa-bar-chart{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bar-chart:before{content:\"\\f080\"}.fa.fa-bar-chart-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bar-chart-o:before{content:\"\\f080\"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-gears:before{content:\"\\f085\"}.fa.fa-thumbs-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-thumbs-o-up:before{content:\"\\f164\"}.fa.fa-thumbs-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-thumbs-o-down:before{content:\"\\f165\"}.fa.fa-heart-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-heart-o:before{content:\"\\f004\"}.fa.fa-sign-out:before{content:\"\\f2f5\"}.fa.fa-linkedin-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-linkedin-square:before{content:\"\\f08c\"}.fa.fa-thumb-tack:before{content:\"\\f08d\"}.fa.fa-external-link:before{content:\"\\f35d\"}.fa.fa-sign-in:before{content:\"\\f2f6\"}.fa.fa-github-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-lemon-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-lemon-o:before{content:\"\\f094\"}.fa.fa-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-square-o:before{content:\"\\f0c8\"}.fa.fa-bookmark-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bookmark-o:before{content:\"\\f02e\"}.fa.fa-facebook,.fa.fa-twitter{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook:before{content:\"\\f39e\"}.fa.fa-facebook-f{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook-f:before{content:\"\\f39e\"}.fa.fa-github{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-credit-card{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-feed:before{content:\"\\f09e\"}.fa.fa-hdd-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hdd-o:before{content:\"\\f0a0\"}.fa.fa-hand-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-right:before{content:\"\\f0a4\"}.fa.fa-hand-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-left:before{content:\"\\f0a5\"}.fa.fa-hand-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-up:before{content:\"\\f0a6\"}.fa.fa-hand-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-down:before{content:\"\\f0a7\"}.fa.fa-arrows-alt:before{content:\"\\f31e\"}.fa.fa-group:before{content:\"\\f0c0\"}.fa.fa-chain:before{content:\"\\f0c1\"}.fa.fa-scissors:before{content:\"\\f0c4\"}.fa.fa-files-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-files-o:before{content:\"\\f0c5\"}.fa.fa-floppy-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-floppy-o:before{content:\"\\f0c7\"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:\"\\f0c9\"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus:before{content:\"\\f0d5\"}.fa.fa-money{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-money:before{content:\"\\f3d1\"}.fa.fa-unsorted:before{content:\"\\f0dc\"}.fa.fa-sort-desc:before{content:\"\\f0dd\"}.fa.fa-sort-asc:before{content:\"\\f0de\"}.fa.fa-linkedin{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-linkedin:before{content:\"\\f0e1\"}.fa.fa-rotate-left:before{content:\"\\f0e2\"}.fa.fa-legal:before{content:\"\\f0e3\"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:\"\\f3fd\"}.fa.fa-comment-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-comment-o:before{content:\"\\f075\"}.fa.fa-comments-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-comments-o:before{content:\"\\f086\"}.fa.fa-flash:before{content:\"\\f0e7\"}.fa.fa-clipboard,.fa.fa-paste{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-paste:before{content:\"\\f328\"}.fa.fa-lightbulb-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-lightbulb-o:before{content:\"\\f0eb\"}.fa.fa-exchange:before{content:\"\\f362\"}.fa.fa-cloud-download:before{content:\"\\f381\"}.fa.fa-cloud-upload:before{content:\"\\f382\"}.fa.fa-bell-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bell-o:before{content:\"\\f0f3\"}.fa.fa-cutlery:before{content:\"\\f2e7\"}.fa.fa-file-text-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-text-o:before{content:\"\\f15c\"}.fa.fa-building-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-building-o:before{content:\"\\f1ad\"}.fa.fa-hospital-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hospital-o:before{content:\"\\f0f8\"}.fa.fa-tablet:before{content:\"\\f3fa\"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:\"\\f3cd\"}.fa.fa-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-circle-o:before{content:\"\\f111\"}.fa.fa-mail-reply:before{content:\"\\f3e5\"}.fa.fa-github-alt{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-folder-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-folder-o:before{content:\"\\f07b\"}.fa.fa-folder-open-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-folder-open-o:before{content:\"\\f07c\"}.fa.fa-smile-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-smile-o:before{content:\"\\f118\"}.fa.fa-frown-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-frown-o:before{content:\"\\f119\"}.fa.fa-meh-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-meh-o:before{content:\"\\f11a\"}.fa.fa-keyboard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-keyboard-o:before{content:\"\\f11c\"}.fa.fa-flag-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-flag-o:before{content:\"\\f024\"}.fa.fa-mail-reply-all:before{content:\"\\f122\"}.fa.fa-star-half-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-o:before{content:\"\\f089\"}.fa.fa-star-half-empty{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-empty:before{content:\"\\f089\"}.fa.fa-star-half-full{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-full:before{content:\"\\f089\"}.fa.fa-code-fork:before{content:\"\\f126\"}.fa.fa-chain-broken:before{content:\"\\f127\"}.fa.fa-shield:before{content:\"\\f3ed\"}.fa.fa-calendar-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-o:before{content:\"\\f133\"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ticket:before{content:\"\\f3ff\"}.fa.fa-minus-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-minus-square-o:before{content:\"\\f146\"}.fa.fa-level-up:before{content:\"\\f3bf\"}.fa.fa-level-down:before{content:\"\\f3be\"}.fa.fa-pencil-square:before{content:\"\\f14b\"}.fa.fa-external-link-square:before{content:\"\\f360\"}.fa.fa-compass{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-down:before{content:\"\\f150\"}.fa.fa-toggle-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-down:before{content:\"\\f150\"}.fa.fa-caret-square-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-up:before{content:\"\\f151\"}.fa.fa-toggle-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-up:before{content:\"\\f151\"}.fa.fa-caret-square-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-right:before{content:\"\\f152\"}.fa.fa-toggle-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-right:before{content:\"\\f152\"}.fa.fa-eur:before,.fa.fa-euro:before{content:\"\\f153\"}.fa.fa-gbp:before{content:\"\\f154\"}.fa.fa-dollar:before,.fa.fa-usd:before{content:\"\\f155\"}.fa.fa-inr:before,.fa.fa-rupee:before{content:\"\\f156\"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:\"\\f157\"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:\"\\f158\"}.fa.fa-krw:before,.fa.fa-won:before{content:\"\\f159\"}.fa.fa-bitcoin,.fa.fa-btc{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bitcoin:before{content:\"\\f15a\"}.fa.fa-file-text:before{content:\"\\f15c\"}.fa.fa-sort-alpha-asc:before{content:\"\\f15d\"}.fa.fa-sort-alpha-desc:before{content:\"\\f15e\"}.fa.fa-sort-amount-asc:before{content:\"\\f160\"}.fa.fa-sort-amount-desc:before{content:\"\\f161\"}.fa.fa-sort-numeric-asc:before{content:\"\\f162\"}.fa.fa-sort-numeric-desc:before{content:\"\\f163\"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-youtube-play:before{content:\"\\f167\"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bitbucket-square:before{content:\"\\f171\"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-long-arrow-down:before{content:\"\\f309\"}.fa.fa-long-arrow-up:before{content:\"\\f30c\"}.fa.fa-long-arrow-left:before{content:\"\\f30a\"}.fa.fa-long-arrow-right:before{content:\"\\f30b\"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-gittip:before{content:\"\\f184\"}.fa.fa-sun-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-sun-o:before{content:\"\\f185\"}.fa.fa-moon-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-moon-o:before{content:\"\\f186\"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:\"\\f35a\"}.fa.fa-arrow-circle-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:\"\\f359\"}.fa.fa-caret-square-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-left:before{content:\"\\f191\"}.fa.fa-toggle-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-left:before{content:\"\\f191\"}.fa.fa-dot-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-dot-circle-o:before{content:\"\\f192\"}.fa.fa-vimeo-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:\"\\f195\"}.fa.fa-plus-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-plus-square-o:before{content:\"\\f0fe\"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:\"\\f19c\"}.fa.fa-mortar-board:before{content:\"\\f19d\"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-spoon:before{content:\"\\f2e5\"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-automobile:before{content:\"\\f1b9\"}.fa.fa-cab:before{content:\"\\f1ba\"}.fa.fa-envelope-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-envelope-o:before{content:\"\\f0e0\"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-file-pdf-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-pdf-o:before{content:\"\\f1c1\"}.fa.fa-file-word-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-word-o:before{content:\"\\f1c2\"}.fa.fa-file-excel-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-excel-o:before{content:\"\\f1c3\"}.fa.fa-file-powerpoint-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-powerpoint-o:before{content:\"\\f1c4\"}.fa.fa-file-image-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-image-o:before{content:\"\\f1c5\"}.fa.fa-file-photo-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-photo-o:before{content:\"\\f1c5\"}.fa.fa-file-picture-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-picture-o:before{content:\"\\f1c5\"}.fa.fa-file-archive-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-archive-o:before{content:\"\\f1c6\"}.fa.fa-file-zip-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-zip-o:before{content:\"\\f1c6\"}.fa.fa-file-audio-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-audio-o:before{content:\"\\f1c7\"}.fa.fa-file-sound-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-sound-o:before{content:\"\\f1c7\"}.fa.fa-file-video-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-video-o:before{content:\"\\f1c8\"}.fa.fa-file-movie-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-movie-o:before{content:\"\\f1c8\"}.fa.fa-file-code-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-code-o:before{content:\"\\f1c9\"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-bouy:before{content:\"\\f1cd\"}.fa.fa-life-buoy{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-buoy:before{content:\"\\f1cd\"}.fa.fa-life-saver{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-saver:before{content:\"\\f1cd\"}.fa.fa-support{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-support:before{content:\"\\f1cd\"}.fa.fa-circle-o-notch:before{content:\"\\f1ce\"}.fa.fa-ra,.fa.fa-rebel{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ra:before{content:\"\\f1d0\"}.fa.fa-resistance{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-resistance:before{content:\"\\f1d0\"}.fa.fa-empire,.fa.fa-ge{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ge:before{content:\"\\f1d1\"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-y-combinator-square:before{content:\"\\f1d4\"}.fa.fa-yc-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-yc-square:before{content:\"\\f1d4\"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-wechat:before{content:\"\\f1d7\"}.fa.fa-send:before{content:\"\\f1d8\"}.fa.fa-paper-plane-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-paper-plane-o:before{content:\"\\f1d8\"}.fa.fa-send-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-send-o:before{content:\"\\f1d8\"}.fa.fa-circle-thin{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-circle-thin:before{content:\"\\f111\"}.fa.fa-header:before{content:\"\\f1dc\"}.fa.fa-sliders:before{content:\"\\f1de\"}.fa.fa-futbol-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-futbol-o:before{content:\"\\f1e3\"}.fa.fa-soccer-ball-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-soccer-ball-o:before{content:\"\\f1e3\"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-newspaper-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-newspaper-o:before{content:\"\\f1ea\"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bell-slash-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bell-slash-o:before{content:\"\\f1f6\"}.fa.fa-trash:before{content:\"\\f2ed\"}.fa.fa-copyright{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-eyedropper:before{content:\"\\f1fb\"}.fa.fa-area-chart:before{content:\"\\f1fe\"}.fa.fa-pie-chart:before{content:\"\\f200\"}.fa.fa-line-chart:before{content:\"\\f201\"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-cc{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-cc:before{content:\"\\f20a\"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:\"\\f20b\"}.fa.fa-meanpath{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-meanpath:before{content:\"\\f2b4\"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-diamond{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-diamond:before{content:\"\\f3a5\"}.fa.fa-intersex:before{content:\"\\f224\"}.fa.fa-facebook-official{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook-official:before{content:\"\\f09a\"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-hotel:before{content:\"\\f236\"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-yc:before{content:\"\\f23b\"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:\"\\f240\"}.fa.fa-battery-3:before{content:\"\\f241\"}.fa.fa-battery-2:before{content:\"\\f242\"}.fa.fa-battery-1:before{content:\"\\f243\"}.fa.fa-battery-0:before{content:\"\\f244\"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-sticky-note-o:before{content:\"\\f249\"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hourglass-o:before{content:\"\\f254\"}.fa.fa-hourglass-1:before{content:\"\\f251\"}.fa.fa-hourglass-2:before{content:\"\\f252\"}.fa.fa-hourglass-3:before{content:\"\\f253\"}.fa.fa-hand-rock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-rock-o:before{content:\"\\f255\"}.fa.fa-hand-grab-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-grab-o:before{content:\"\\f255\"}.fa.fa-hand-paper-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-paper-o:before{content:\"\\f256\"}.fa.fa-hand-stop-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-stop-o:before{content:\"\\f256\"}.fa.fa-hand-scissors-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-scissors-o:before{content:\"\\f257\"}.fa.fa-hand-lizard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-lizard-o:before{content:\"\\f258\"}.fa.fa-hand-spock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-spock-o:before{content:\"\\f259\"}.fa.fa-hand-pointer-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-pointer-o:before{content:\"\\f25a\"}.fa.fa-hand-peace-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-peace-o:before{content:\"\\f25b\"}.fa.fa-registered{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-television:before{content:\"\\f26c\"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-calendar-plus-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-plus-o:before{content:\"\\f271\"}.fa.fa-calendar-minus-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-minus-o:before{content:\"\\f272\"}.fa.fa-calendar-times-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-times-o:before{content:\"\\f273\"}.fa.fa-calendar-check-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-check-o:before{content:\"\\f274\"}.fa.fa-map-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-map-o:before{content:\"\\f279\"}.fa.fa-commenting:before{content:\"\\f4ad\"}.fa.fa-commenting-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-commenting-o:before{content:\"\\f4ad\"}.fa.fa-houzz,.fa.fa-vimeo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-vimeo:before{content:\"\\f27d\"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-credit-card-alt:before{content:\"\\f09d\"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-pause-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-pause-circle-o:before{content:\"\\f28b\"}.fa.fa-stop-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-stop-circle-o:before{content:\"\\f28d\"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-wheelchair-alt:before{content:\"\\f368\"}.fa.fa-question-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-question-circle-o:before{content:\"\\f059\"}.fa.fa-volume-control-phone:before{content:\"\\f2a0\"}.fa.fa-asl-interpreting:before{content:\"\\f2a3\"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:\"\\f2a4\"}.fa.fa-glide,.fa.fa-glide-g{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-signing:before{content:\"\\f2a7\"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus-official:before{content:\"\\f2b3\"}.fa.fa-google-plus-circle{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus-circle:before{content:\"\\f2b3\"}.fa.fa-fa,.fa.fa-font-awesome{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-fa:before{content:\"\\f2b4\"}.fa.fa-handshake-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-handshake-o:before{content:\"\\f2b5\"}.fa.fa-envelope-open-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-envelope-open-o:before{content:\"\\f2b6\"}.fa.fa-linode{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-address-book-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-address-book-o:before{content:\"\\f2b9\"}.fa.fa-vcard:before{content:\"\\f2bb\"}.fa.fa-address-card-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-address-card-o:before{content:\"\\f2bb\"}.fa.fa-vcard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-vcard-o:before{content:\"\\f2bb\"}.fa.fa-user-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-user-circle-o:before{content:\"\\f2bd\"}.fa.fa-user-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-user-o:before{content:\"\\f007\"}.fa.fa-id-badge{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-drivers-license:before{content:\"\\f2c2\"}.fa.fa-id-card-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-id-card-o:before{content:\"\\f2c2\"}.fa.fa-drivers-license-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-drivers-license-o:before{content:\"\\f2c2\"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:\"\\f2c7\"}.fa.fa-thermometer-3:before{content:\"\\f2c8\"}.fa.fa-thermometer-2:before{content:\"\\f2c9\"}.fa.fa-thermometer-1:before{content:\"\\f2ca\"}.fa.fa-thermometer-0:before{content:\"\\f2cb\"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:\"\\f2cd\"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-rectangle:before{content:\"\\f410\"}.fa.fa-window-close-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-window-close-o:before{content:\"\\f410\"}.fa.fa-times-rectangle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-rectangle-o:before{content:\"\\f410\"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-eercast:before{content:\"\\f2da\"}.fa.fa-snowflake-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-snowflake-o:before{content:\"\\f2dc\"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:\"Font Awesome 5 Brands\";font-weight:400}','yes'),(11546,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1673333942','no'),(11547,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:5906;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4809;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2778;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2648;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2046;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1900;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1894;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1611;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1560;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1542;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1541;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1516;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1502;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1448;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1356;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1268;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1175;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1155;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1140;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1041;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1009;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:991;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:961;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:901;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:868;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:866;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:864;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:860;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:860;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:857;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:807;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:789;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:779;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:769;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:766;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:762;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:754;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:730;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:727;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:719;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:715;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:705;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:682;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:682;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:680;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:671;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:666;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:627;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:620;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:610;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:604;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:604;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:600;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:590;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:590;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:587;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:584;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:573;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:568;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:567;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:560;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:552;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:551;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:539;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:538;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:538;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:529;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:527;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:524;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:519;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:513;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:509;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:507;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:507;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:495;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:472;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:469;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:465;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:462;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:450;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:448;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:444;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:435;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:430;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:423;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:419;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:416;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:415;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:410;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:410;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:409;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:400;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:396;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:394;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:392;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:390;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:388;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:386;}}','no'),(8679,'wpseo_taxonomy_meta','a:1:{s:10:\"slide-page\";a:1:{i:33;a:3:{s:13:\"wpseo_focuskw\";s:21:\"sunrise-homepage-hero\";s:13:\"wpseo_linkdex\";s:2:\"24\";s:19:\"wpseo_content_score\";s:1:\"0\";}}}','yes'),(8541,'wp-smush-install-type','existing','no'),(8542,'wp-smush-version','3.12.4','no'),(11976,'_transient_timeout_fusion_fb_tos','1673933013','no');
INSERT INTO `wpwlvrot_options` VALUES (11977,'_transient_fusion_fb_tos','a:46:{s:23:\"alert_shortcode_section\";a:7:{s:5:\"label\";s:5:\"Alert\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"alert_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:28:\"fusiona-exclamation-triangle\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:13:{s:13:\"info_bg_color\";a:6:{s:5:\"label\";s:24:\"General Background Color\";s:11:\"description\";s:49:\"Set the background color for general alert boxes.\";s:2:\"id\";s:13:\"info_bg_color\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"--info_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";}s:17:\"info_accent_color\";a:6:{s:5:\"label\";s:20:\"General Accent Color\";s:11:\"description\";s:45:\"Set the accent color for general alert boxes.\";s:2:\"id\";s:17:\"info_accent_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--info_accent_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"danger_bg_color\";a:6:{s:5:\"label\";s:22:\"Error Background Color\";s:11:\"description\";s:47:\"Set the background color for error alert boxes.\";s:2:\"id\";s:15:\"danger_bg_color\";s:7:\"default\";s:20:\"rgba(219,75,104,0.1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--danger_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"danger_accent_color\";a:6:{s:5:\"label\";s:18:\"Error Accent Color\";s:11:\"description\";s:43:\"Set the accent color for error alert boxes.\";s:2:\"id\";s:19:\"danger_accent_color\";s:7:\"default\";s:7:\"#db4b68\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--danger_accent_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"success_bg_color\";a:6:{s:5:\"label\";s:24:\"Success Background Color\";s:11:\"description\";s:49:\"Set the background color for success alert boxes.\";s:2:\"id\";s:16:\"success_bg_color\";s:7:\"default\";s:20:\"rgba(18,184,120,0.1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--success_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"success_accent_color\";a:6:{s:5:\"label\";s:20:\"Success Accent Color\";s:11:\"description\";s:45:\"Set the accent color for success alert boxes.\";s:2:\"id\";s:20:\"success_accent_color\";s:7:\"default\";s:7:\"#12b878\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--success_accent_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"warning_bg_color\";a:6:{s:5:\"label\";s:23:\"Notice Background Color\";s:11:\"description\";s:48:\"Set the background color for notice alert boxes.\";s:2:\"id\";s:16:\"warning_bg_color\";s:7:\"default\";s:20:\"rgba(241,174,42,0.1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--warning_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"warning_accent_color\";a:6:{s:5:\"label\";s:19:\"Notice Accent Color\";s:11:\"description\";s:44:\"Set the accent color for notice alert boxes.\";s:2:\"id\";s:20:\"warning_accent_color\";s:7:\"default\";s:7:\"#f1ae2a\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--warning_accent_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"alert_box_text_align\";a:7:{s:5:\"label\";s:17:\"Content Alignment\";s:11:\"description\";s:43:\"Choose how the content should be displayed.\";s:2:\"id\";s:20:\"alert_box_text_align\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:6:\"center\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:37:\".fusion-alert:not(.fusion-live-alert)\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:14:\"fusion-alert-$\";s:12:\"remove_attrs\";a:3:{i:0;s:17:\"fusion-alert-left\";i:1;s:19:\"fusion-alert-center\";i:2;s:18:\"fusion-alert-right\";}}}}s:24:\"alert_box_text_transform\";a:7:{s:5:\"label\";s:14:\"Text Transform\";s:11:\"description\";s:33:\"Choose how the text is displayed.\";s:2:\"id\";s:24:\"alert_box_text_transform\";s:7:\"default\";s:6:\"normal\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"normal\";s:6:\"Normal\";s:10:\"capitalize\";s:9:\"Uppercase\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:37:\".fusion-alert:not(.fusion-live-alert)\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:14:\"fusion-alert-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"fusion-alert-capitalize\";i:1;s:19:\"fusion-alert-normal\";}}}}s:21:\"alert_box_dismissable\";a:7:{s:5:\"label\";s:15:\"Dismissable Box\";s:11:\"description\";s:46:\"Select if the alert box should be dismissable.\";s:2:\"id\";s:21:\"alert_box_dismissable\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:44:\".fusion-alert:not(.fusion-live-alert) .close\";s:8:\"property\";s:7:\"display\";s:13:\"value_pattern\";s:4:\"none\";s:7:\"exclude\";a:1:{i:0;s:3:\"yes\";}}i:1;a:4:{s:7:\"element\";s:44:\".fusion-alert:not(.fusion-live-alert) .close\";s:8:\"property\";s:7:\"display\";s:13:\"value_pattern\";s:6:\"inline\";s:7:\"exclude\";a:1:{i:0;s:2:\"no\";}}}}s:16:\"alert_box_shadow\";a:7:{s:5:\"label\";s:10:\"Box Shadow\";s:11:\"description\";s:41:\"Display a box shadow below the alert box.\";s:2:\"id\";s:16:\"alert_box_shadow\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:6:\"output\";a:2:{i:0;a:6:{s:7:\"element\";s:37:\".fusion-alert:not(.fusion-live-alert)\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:12:\"alert-shadow\";s:12:\"remove_attrs\";a:1:{i:0;s:15:\"alert-shadow-no\";}s:7:\"exclude\";a:1:{i:0;s:2:\"no\";}}i:1;a:6:{s:7:\"element\";s:37:\".fusion-alert:not(.fusion-live-alert)\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:15:\"alert-shadow-no\";s:12:\"remove_attrs\";a:1:{i:0;s:12:\"alert-shadow\";}s:7:\"exclude\";a:1:{i:0;s:3:\"yes\";}}}}s:17:\"alert_border_size\";a:7:{s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:44:\"Controls the border size of the alert boxes.\";s:2:\"id\";s:17:\"alert_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--alert_border_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}}}s:28:\"animations_shortcode_section\";a:7:{s:5:\"label\";s:10:\"Animations\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"animations_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:19:\"fusiona-play-circle\";s:6:\"fields\";a:2:{s:16:\"animation_offset\";a:8:{s:5:\"label\";s:16:\"Animation Offset\";s:11:\"description\";s:41:\"Controls when the animation should start.\";s:2:\"id\";s:16:\"animation_offset\";s:7:\"default\";s:13:\"top-into-view\";s:4:\"type\";s:6:\"select\";s:11:\"option_name\";s:14:\"fusion_options\";s:7:\"choices\";a:3:{s:13:\"top-into-view\";s:38:\"Top of element hits bottom of viewport\";s:15:\"top-mid-of-view\";s:38:\"Top of element hits middle of viewport\";s:14:\"bottom-in-view\";s:33:\"Bottom of element enters viewport\";}s:9:\"transport\";s:11:\"postMessage\";}s:21:\"status_css_animations\";a:7:{s:5:\"label\";s:29:\"Element Appearance Animations\";s:11:\"description\";s:52:\"Select to enable animations for elements appearance.\";s:2:\"id\";s:21:\"status_css_animations\";s:7:\"default\";s:7:\"desktop\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:18:\"desktop_and_mobile\";s:20:\"Desktop &amp; Mobile\";s:7:\"desktop\";s:12:\"Desktop Only\";s:3:\"off\";s:3:\"Off\";}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionAnimationsVars\";s:2:\"id\";s:21:\"status_css_animations\";s:7:\"trigger\";a:1:{i:0;s:13:\"CSSAnimations\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:23:\"audio_shortcode_section\";a:7:{s:5:\"label\";s:5:\"Audio\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"audio_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-audio\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:7:{s:15:\"audio_max_width\";a:6:{s:5:\"label\";s:13:\"Maximum Width\";s:11:\"description\";s:46:\"Set the maximum width using a valid CSS value.\";s:2:\"id\";s:15:\"audio_max_width\";s:7:\"default\";s:4:\"100%\";s:4:\"type\";s:4:\"text\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--awb-audio-max-width-default\";s:7:\"element\";s:4:\"body\";}}}s:22:\"audio_background_color\";a:6:{s:5:\"label\";s:16:\"Background Color\";s:11:\"description\";s:51:\"Controls the background color for the audio player.\";s:2:\"id\";s:22:\"audio_background_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:36:\"--awb-audio-background-color-default\";s:7:\"element\";s:4:\"body\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"audio_progressbar_color\";a:6:{s:5:\"label\";s:20:\"Audio Progress Color\";s:11:\"description\";s:42:\"Select a color for the audio progress-bar.\";s:2:\"id\";s:23:\"audio_progressbar_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--awb-audio-accent-color-default\";s:7:\"element\";s:4:\"body\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"audio_controls_color_scheme\";a:6:{s:5:\"label\";s:21:\"Controls Color Scheme\";s:11:\"description\";s:132:\"Depending on the background color you can change this value to &quot;Light&quot; or &quot;Dark&quot; to ensure controls are visible.\";s:2:\"id\";s:27:\"audio_controls_color_scheme\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:5:\"light\";s:7:\"choices\";a:2:{s:5:\"light\";s:5:\"Light\";s:4:\"dark\";s:4:\"Dark\";}}s:17:\"audio_border_size\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:11:\"Border Size\";s:2:\"id\";s:17:\"audio_border_size\";s:7:\"default\";i:0;s:11:\"description\";s:20:\"Set the border size.\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--awb-audio-border-size-default\";s:7:\"element\";s:4:\"body\";}}}s:18:\"audio_border_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:47:\"Controls the border color for the audio player.\";s:2:\"id\";s:18:\"audio_border_color\";s:5:\"group\";s:6:\"Design\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--awb-audio-border-color-default\";s:7:\"element\";s:4:\"body\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"audio_border_radius\";a:8:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:22:\"Set the border radius.\";s:2:\"id\";s:19:\"audio_border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:4:\"type\";s:13:\"border_radius\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:42:\"--awb-audio-border-top-left-radius-default\";s:6:\"choice\";s:8:\"top_left\";s:7:\"element\";s:4:\"body\";}i:1;a:3:{s:4:\"name\";s:43:\"--awb-audio-border-top-right-radius-default\";s:6:\"choice\";s:9:\"top_right\";s:7:\"element\";s:4:\"body\";}i:2;a:3:{s:4:\"name\";s:46:\"--awb-audio-border-bottom-right-radius-default\";s:6:\"choice\";s:12:\"bottom_right\";s:7:\"element\";s:4:\"body\";}i:3;a:3:{s:4:\"name\";s:45:\"--awb-audio-border-bottom-left-radius-default\";s:6:\"choice\";s:11:\"bottom_left\";s:7:\"element\";s:4:\"body\";}}s:9:\"transport\";s:11:\"postMessage\";}}}s:22:\"blog_shortcode_section\";a:7:{s:5:\"label\";s:4:\"Blog\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"blog_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:12:\"fusiona-blog\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:9:{s:17:\"blog_grid_columns\";a:7:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:134:\"Set the number of columns per row for grid and masonry layout. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:17:\"blog_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"blog_grid_column_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:71:\"Controls the column spacing for blog posts for grid and masonry layout.\";s:2:\"id\";s:24:\"blog_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"blog_grid_padding\";a:7:{s:5:\"label\";s:22:\"Blog Grid Text Padding\";s:11:\"description\";s:105:\"Controls the top/right/bottom/left padding of the blog text when using grid / masonry or timeline layout.\";s:2:\"id\";s:17:\"blog_grid_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"blog_excerpt\";a:7:{s:5:\"label\";s:15:\"Content Display\";s:11:\"description\";s:107:\"Controls if the post content displays an excerpt, full content or is completely disabled for blog elements.\";s:2:\"id\";s:12:\"blog_excerpt\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"hide\";s:7:\"No Text\";s:3:\"yes\";s:7:\"Excerpt\";s:2:\"no\";s:12:\"Full Content\";}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"blog_excerpt_length\";a:8:{s:5:\"label\";s:14:\"Excerpt Length\";s:11:\"description\";s:63:\"Controls the number of words in the excerpts for blog elements.\";s:2:\"id\";s:19:\"blog_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"blog_excerpt\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"yes\";}}s:9:\"transport\";s:11:\"postMessage\";}s:44:\"blog_element_load_more_posts_button_bg_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:94:\"Controls the background color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:44:\"blog_element_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:46:\"--blog_element_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:46:\"blog_element_load_more_posts_button_text_color\";a:6:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:88:\"Controls the text color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:46:\"blog_element_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:48:\"--blog_element_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:50:\"blog_element_load_more_posts_hover_button_bg_color\";a:6:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:100:\"Controls the hover background color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:50:\"blog_element_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:52:\"--blog_element_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:52:\"blog_element_load_more_posts_hover_button_text_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:94:\"Controls the hover text color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:52:\"blog_element_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:54:\"--blog_element_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:24:\"button_shortcode_section\";a:5:{s:5:\"label\";s:6:\"Button\";s:2:\"id\";s:24:\"button_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:19:\"fusiona-check-empty\";s:6:\"fields\";a:22:{s:14:\"button_padding\";a:7:{s:5:\"label\";s:14:\"Button Padding\";s:11:\"description\";s:33:\"Controls the padding for buttons.\";s:2:\"id\";s:14:\"button_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"13px\";s:5:\"right\";s:4:\"29px\";s:6:\"bottom\";s:4:\"13px\";s:4:\"left\";s:4:\"29px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:20:\"--button_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:23:\"--button_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:21:\"--button_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:22:\"--button_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:11:\"button_span\";a:7:{s:5:\"label\";s:11:\"Button Span\";s:11:\"description\";s:61:\"Controls if the button spans the full width of its container.\";s:2:\"id\";s:11:\"button_span\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-button_span-$\";s:12:\"remove_attrs\";a:2:{i:0;s:22:\"fusion-button_span-yes\";i:1;s:21:\"fusion-button_span-no\";}s:11:\"toLowerCase\";b:1;}}}s:11:\"button_type\";a:7:{s:5:\"label\";s:11:\"Button Type\";s:11:\"description\";s:33:\"Controls the default button type.\";s:2:\"id\";s:11:\"button_type\";s:7:\"default\";s:4:\"Flat\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Flat\";s:4:\"Flat\";s:2:\"3d\";s:2:\"3D\";}s:6:\"output\";a:2:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-button_type-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"fusion-button_type-flat\";i:1;s:21:\"fusion-button_type-3d\";}s:11:\"toLowerCase\";b:1;}i:1;a:6:{s:7:\"element\";s:27:\".fusion-button-default-type\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:8:\"button-$\";s:12:\"remove_attrs\";a:2:{i:0;s:9:\"button-3d\";i:1;s:11:\"button-flat\";}s:11:\"toLowerCase\";b:1;}}}s:17:\"button_typography\";a:8:{s:2:\"id\";s:17:\"button_typography\";s:5:\"label\";s:17:\"Button Typography\";s:11:\"description\";s:58:\"These settings control the typography for all button text.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:14:\"text-transform\";s:37:\"var(--awb-typography3-text-transform)\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:31:\"--button_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:17:\"button_typography\";}}i:1;a:3:{s:4:\"name\";s:31:\"--button_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:3:{s:4:\"name\";s:34:\"--button_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:30:\"--button_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:4;a:2:{s:4:\"name\";s:18:\"--button_font_size\";s:6:\"choice\";s:9:\"font-size\";}i:5;a:2:{s:4:\"name\";s:20:\"--button_line_height\";s:6:\"choice\";s:11:\"line-height\";}i:6;a:2:{s:4:\"name\";s:23:\"--button_text_transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:25:\"button_gradient_top_color\";a:7:{s:5:\"label\";s:27:\"Button Gradient Start Color\";s:11:\"description\";s:50:\"Controls the start color of the button background.\";s:2:\"id\";s:25:\"button_gradient_top_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--button_gradient_top_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:28:\"button_gradient_bottom_color\";i:1;s:19:\"not-equal-to-option\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:26:\"fusion-has-button-gradient\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:28:\"button_gradient_bottom_color\";a:6:{s:5:\"label\";s:25:\"Button Gradient End Color\";s:11:\"description\";s:48:\"Controls the end color of the button background.\";s:2:\"id\";s:28:\"button_gradient_bottom_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--button_gradient_bottom_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"button_gradient_top_color_hover\";a:7:{s:5:\"label\";s:33:\"Button Gradient Start Hover Color\";s:11:\"description\";s:56:\"Controls the start hover color of the button background.\";s:2:\"id\";s:31:\"button_gradient_top_color_hover\";s:7:\"default\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--button_gradient_top_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"preview\";a:3:{s:8:\"selector\";s:43:\".fusion-button,.fusion-button .wpcf7-submit\";s:4:\"type\";s:5:\"class\";s:6:\"toggle\";s:5:\"hover\";}}s:34:\"button_gradient_bottom_color_hover\";a:7:{s:5:\"label\";s:31:\"Button Gradient End Hover Color\";s:11:\"description\";s:54:\"Controls the end hover color of the button background.\";s:2:\"id\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"default\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"preview\";a:3:{s:8:\"selector\";s:43:\".fusion-button,.fusion-button .wpcf7-submit\";s:4:\"type\";s:5:\"class\";s:6:\"toggle\";s:5:\"hover\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--button_gradient_bottom_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"button_gradient_start\";a:7:{s:5:\"label\";s:21:\"Button Gradient Start\";s:11:\"description\";s:45:\"Controls the start position for the gradient.\";s:2:\"id\";s:21:\"button_gradient_start\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--button_gradient_start\";s:13:\"value_pattern\";s:2:\"$%\";}}}s:19:\"button_gradient_end\";a:7:{s:5:\"label\";s:19:\"Button Gradient End\";s:11:\"description\";s:43:\"Controls the end position for the gradient.\";s:2:\"id\";s:19:\"button_gradient_end\";s:7:\"default\";s:3:\"100\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--button_gradient_end\";s:13:\"value_pattern\";s:2:\"$%\";}}}s:20:\"button_gradient_type\";a:7:{s:5:\"label\";s:20:\"Button Gradient Type\";s:11:\"description\";s:30:\"Controls the type of gradient.\";s:2:\"id\";s:20:\"button_gradient_type\";s:7:\"default\";s:6:\"linear\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"linear\";s:6:\"Linear\";s:6:\"radial\";s:6:\"Radial\";}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:24:\"fusion-button_gradient-$\";s:12:\"remove_attrs\";a:2:{i:0;s:29:\"fusion-button_gradient-linear\";i:1;s:29:\"fusion-button_gradient-radial\";}s:11:\"toLowerCase\";b:1;}}}s:21:\"button_gradient_angle\";a:8:{s:5:\"label\";s:21:\"Button Gradient Angle\";s:11:\"description\";s:43:\"Controls the angle for the linear gradient.\";s:2:\"id\";s:21:\"button_gradient_angle\";s:7:\"default\";s:3:\"180\";s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"360\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--button_gradient_angle\";s:13:\"value_pattern\";s:4:\"$deg\";}}}s:23:\"button_radial_direction\";a:8:{s:5:\"label\";s:23:\"Button Radial Direction\";s:11:\"description\";s:37:\"Select direction for radial gradient.\";s:2:\"id\";s:23:\"button_radial_direction\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:9:{s:8:\"left top\";s:8:\"Left Top\";s:11:\"left center\";s:11:\"Left Center\";s:11:\"left bottom\";s:11:\"Left Bottom\";s:9:\"right top\";s:9:\"Right Top\";s:12:\"right center\";s:12:\"Right Center\";s:12:\"right bottom\";s:12:\"Right Bottom\";s:10:\"center top\";s:10:\"Center Top\";s:13:\"center center\";s:13:\"Center Center\";s:13:\"center bottom\";s:13:\"Center Bottom\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--button_radial_direction\";}}}s:19:\"button_accent_color\";a:6:{s:5:\"label\";s:17:\"Button Text Color\";s:11:\"description\";s:56:\"Controls the color of the button text, divider and icon.\";s:2:\"id\";s:19:\"button_accent_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--button_accent_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"button_accent_hover_color\";a:7:{s:5:\"label\";s:23:\"Button Text Hover Color\";s:11:\"description\";s:62:\"Controls the hover color of the button text, divider and icon.\";s:2:\"id\";s:25:\"button_accent_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--button_accent_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"preview\";a:3:{s:8:\"selector\";s:43:\".fusion-button,.fusion-button .wpcf7-submit\";s:4:\"type\";s:5:\"class\";s:6:\"toggle\";s:5:\"hover\";}}s:18:\"button_bevel_color\";a:6:{s:5:\"label\";s:30:\"Button Bevel Color For 3D Mode\";s:11:\"description\";s:66:\"Controls the bevel color of the buttons when using 3D button type.\";s:2:\"id\";s:18:\"button_bevel_color\";s:7:\"default\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:20:\"--button_bevel_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:19:\"--button_box_shadow\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:76:\"inset 0px 1px 0px #ffffff, 0px 3px 0px $, 1px 5px 5px 3px rgba(0, 0, 0, 0.3)\";i:1;s:4:\"none\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"button_type\";i:1;s:3:\"===\";i:2;s:2:\"3d\";}}}}}}}s:24:\"button_bevel_color_hover\";a:6:{s:5:\"label\";s:36:\"Button Hover Bevel Color For 3D Mode\";s:11:\"description\";s:72:\"Controls the hover bevel color of the buttons when using 3D button type.\";s:2:\"id\";s:24:\"button_bevel_color_hover\";s:7:\"default\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--button_bevel_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"button_border_width\";a:7:{s:5:\"label\";s:18:\"Button Border Size\";s:11:\"description\";s:37:\"Controls the border size for buttons.\";s:2:\"id\";s:19:\"button_border_width\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:25:\"--button_border_width-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:27:\"--button_border_width-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:28:\"--button_border_width-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:26:\"--button_border_width-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}}}s:20:\"button_border_radius\";a:7:{s:4:\"type\";s:13:\"border_radius\";s:5:\"label\";s:20:\"Button Border Radius\";s:11:\"description\";s:39:\"Controls the border radius for buttons.\";s:2:\"id\";s:20:\"button_border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"4px\";s:9:\"top_right\";s:3:\"4px\";s:12:\"bottom_right\";s:3:\"4px\";s:11:\"bottom_left\";s:3:\"4px\";}s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:31:\"--button-border-radius-top-left\";s:6:\"choice\";s:8:\"top_left\";s:7:\"element\";s:4:\"body\";}i:1;a:3:{s:4:\"name\";s:32:\"--button-border-radius-top-right\";s:6:\"choice\";s:9:\"top_right\";s:7:\"element\";s:4:\"body\";}i:2;a:3:{s:4:\"name\";s:35:\"--button-border-radius-bottom-right\";s:6:\"choice\";s:12:\"bottom_right\";s:7:\"element\";s:4:\"body\";}i:3;a:3:{s:4:\"name\";s:34:\"--button-border-radius-bottom-left\";s:6:\"choice\";s:11:\"bottom_left\";s:7:\"element\";s:4:\"body\";}}}s:19:\"button_border_color\";a:6:{s:5:\"label\";s:19:\"Button Border Color\";s:11:\"description\";s:38:\"Controls the border color for buttons.\";s:2:\"id\";s:19:\"button_border_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--button_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"button_border_hover_color\";a:6:{s:5:\"label\";s:25:\"Button Border Hover Color\";s:11:\"description\";s:46:\"Controls the hover border color of the button.\";s:2:\"id\";s:25:\"button_border_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--button_border_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:14:\"button_presets\";a:6:{s:5:\"label\";s:21:\"Legacy Button Presets\";s:11:\"description\";s:56:\"Select if you would like to enable legacy color presets.\";s:2:\"id\";s:14:\"button_presets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}}}s:26:\"carousel_shortcode_section\";a:6:{s:5:\"label\";s:8:\"Carousel\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"carousel_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-images\";s:6:\"fields\";a:3:{s:18:\"carousel_nav_color\";a:7:{s:5:\"label\";s:29:\"Carousel Navigation Box Color\";s:11:\"description\";s:62:\"Controls the color of the navigation box for carousel sliders.\";s:2:\"id\";s:18:\"carousel_nav_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\";s:4:\"type\";s:11:\"color-alpha\";s:11:\"option_name\";s:14:\"fusion_options\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--carousel_nav_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"carousel_hover_color\";a:7:{s:5:\"label\";s:35:\"Carousel Hover Navigation Box Color\";s:11:\"description\";s:68:\"Controls the color of the hover navigation box for carousel sliders.\";s:2:\"id\";s:20:\"carousel_hover_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:11:\"option_name\";s:14:\"fusion_options\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--carousel_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:14:\"carousel_speed\";a:8:{s:5:\"label\";s:14:\"Carousel Speed\";s:11:\"description\";s:65:\"Controls the speed of all carousel elements. ex: 1000 = 1 second.\";s:2:\"id\";s:14:\"carousel_speed\";s:7:\"default\";s:4:\"2500\";s:4:\"type\";s:6:\"slider\";s:11:\"option_name\";s:14:\"fusion_options\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionCarouselVars\";s:2:\"id\";s:14:\"carousel_speed\";s:7:\"trigger\";a:1:{i:0;s:23:\"fusion-reinit-carousels\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:23:\"chart_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Chart\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"chart_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-bar-chart\";s:6:\"fields\";a:5:{s:21:\"chart_legend_position\";a:7:{s:5:\"label\";s:15:\"Legend Position\";s:11:\"description\";s:133:\"Set chart legend position. Note that on mobile devices legend will be positioned below the chart when left or right position is used.\";s:2:\"id\";s:21:\"chart_legend_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:3:\"off\";s:3:\"Off\";}}s:19:\"chart_show_tooltips\";a:7:{s:5:\"label\";s:13:\"Show Tooltips\";s:11:\"description\";s:146:\"Choose whether tooltips should be displayed on hover. If your chart is in a column and the column has a hover type or link, tooltips are disabled.\";s:2:\"id\";s:19:\"chart_show_tooltips\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:14:\"chart_bg_color\";a:7:{s:5:\"label\";s:22:\"Chart Background Color\";s:11:\"description\";s:37:\"Controls the background of the chart.\";s:2:\"id\";s:14:\"chart_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--chart_bg_color\";}}}s:21:\"chart_axis_text_color\";a:6:{s:5:\"label\";s:21:\"Chart Axis Text Color\";s:11:\"description\";s:49:\"Controls the text color of the x-axis and y-axis.\";s:2:\"id\";s:21:\"chart_axis_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"chart_gridline_color\";a:6:{s:5:\"label\";s:20:\"Chart Gridline Color\";s:11:\"description\";s:65:\"Controls the color of the chart background grid lines and values.\";s:2:\"id\";s:20:\"chart_gridline_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:27:\"checklist_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Checklist\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"checklist_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-list-ul\";s:6:\"fields\";a:10:{s:21:\"checklist_icons_color\";a:6:{s:5:\"label\";s:20:\"Checklist Icon Color\";s:11:\"description\";s:41:\"Controls the color of the checklist icon.\";s:2:\"id\";s:21:\"checklist_icons_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--checklist_icons_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"checklist_circle\";a:6:{s:5:\"label\";s:21:\"Checklist Icon Circle\";s:11:\"description\";s:72:\"Turn on if you want to display a circle background for checklists icons.\";s:2:\"id\";s:16:\"checklist_circle\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"checklist_circle_color\";a:7:{s:5:\"label\";s:27:\"Checklist Icon Circle Color\";s:11:\"description\";s:59:\"Controls the color of the checklist icon circle background.\";s:2:\"id\";s:22:\"checklist_circle_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--checklist_circle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"checklist_text_color\";a:6:{s:5:\"label\";s:20:\"Checklist Text Color\";s:11:\"description\";s:41:\"Controls the color of the checklist text.\";s:2:\"id\";s:20:\"checklist_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--checklist_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"checklist_item_size\";a:7:{s:5:\"label\";s:14:\"Item Font Size\";s:11:\"description\";s:41:\"Controls the font size of the list items.\";s:2:\"id\";s:19:\"checklist_item_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--checklist_item_size\";}}}s:22:\"checklist_item_padding\";a:7:{s:5:\"label\";s:12:\"Item Padding\";s:11:\"description\";s:44:\"Controls the padding size of the list items.\";s:2:\"id\";s:22:\"checklist_item_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:6:\"0.35em\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:6:\"0.35em\";s:4:\"left\";s:1:\"0\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:28:\"--checklist_item_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:31:\"--checklist_item_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:29:\"--checklist_item_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:30:\"--checklist_item_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:17:\"checklist_divider\";a:7:{s:5:\"label\";s:13:\"Divider Lines\";s:11:\"description\";s:54:\"Choose if a divider line shows between each list item.\";s:2:\"id\";s:17:\"checklist_divider\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:9:\"transport\";s:11:\"postMessage\";}s:23:\"checklist_divider_color\";a:7:{s:5:\"label\";s:18:\"Divider Line Color\";s:11:\"description\";s:40:\"Controls the color of the divider lines.\";s:2:\"id\";s:23:\"checklist_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--checklist_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"checklist_odd_row_bgcolor\";a:6:{s:5:\"label\";s:34:\"Checklist Odd Row Background Color\";s:11:\"description\";s:55:\"Controls the background color of the checklist odd row.\";s:2:\"id\";s:25:\"checklist_odd_row_bgcolor\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--checklist_odd_row_bgcolor\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"checklist_even_row_bgcolor\";a:6:{s:5:\"label\";s:35:\"Checklist Even Row Background Color\";s:11:\"description\";s:56:\"Controls the background color of the checklist even row.\";s:2:\"id\";s:26:\"checklist_even_row_bgcolor\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--checklist_even_row_bgcolor\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:24:\"column_shortcode_section\";a:7:{s:5:\"label\";s:6:\"Column\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:24:\"column_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-column\";s:6:\"fields\";a:4:{s:10:\"col_margin\";a:8:{s:5:\"label\";s:14:\"Column Margins\";s:11:\"description\";s:53:\"Controls the top/bottom margins for all column sizes.\";s:2:\"id\";s:10:\"col_margin\";s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:16:\"--col_margin-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:19:\"--col_margin-bottom\";s:6:\"choice\";s:6:\"bottom\";}}}s:11:\"col_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:59:\"Controls the column spacing between one column to the next.\";s:2:\"id\";s:11:\"col_spacing\";s:7:\"default\";s:2:\"4%\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:13:\"--col_spacing\";}}}s:16:\"col_width_medium\";a:8:{s:5:\"label\";s:30:\"Column Width On Medium Screens\";s:11:\"description\";s:65:\"Controls how columns should be displayed on medium sized screens.\";s:2:\"id\";s:16:\"col_width_medium\";s:7:\"default\";s:18:\"inherit_from_large\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:18:\"inherit_from_large\";s:18:\"Inherit From Large\";s:3:\"1_1\";s:11:\"Full Width \";}i:0;a:2:{s:4:\"name\";s:20:\"--medium-col-default\";s:8:\"callback\";a:2:{i:0;s:24:\"column_width_inheritance\";i:1;s:0:\"\";}}}s:15:\"col_width_small\";a:8:{s:5:\"label\";s:29:\"Column Width On Small Screens\";s:11:\"description\";s:64:\"Controls how columns should be displayed on small sized screens.\";s:2:\"id\";s:15:\"col_width_small\";s:7:\"default\";s:3:\"1_1\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:18:\"inherit_from_large\";s:18:\"Inherit From Large\";s:3:\"1_1\";s:11:\"Full Width \";}i:0;a:2:{s:4:\"name\";s:19:\"--small-col-default\";s:8:\"callback\";a:2:{i:0;s:24:\"column_width_inheritance\";i:1;s:0:\"\";}}}}}s:27:\"container_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Container\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"container_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-container\";s:6:\"fields\";a:16:{s:29:\"container_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:151:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For column spacing option, please check column element options panel.</div>\";s:2:\"id\";s:29:\"container_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:25:\"container_padding_default\";a:8:{s:5:\"label\";s:38:\"Container Padding for Default Template\";s:11:\"description\";s:106:\"Controls the top/right/bottom/left padding of the container element when using the Default page template. \";s:2:\"id\";s:25:\"container_padding_default\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:31:\"--container_padding_default_top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:34:\"--container_padding_default_bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:32:\"--container_padding_default_left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:33:\"--container_padding_default_right\";s:6:\"choice\";s:5:\"right\";}}}s:21:\"container_padding_100\";a:8:{s:5:\"label\";s:41:\"Container Padding for 100% Width Template\";s:11:\"description\";s:108:\"Controls the top/right/bottom/left padding of the container element when using the 100% width page template.\";s:2:\"id\";s:21:\"container_padding_100\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:27:\"--container_padding_100_top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:30:\"--container_padding_100_bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:28:\"--container_padding_100_left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:29:\"--container_padding_100_right\";s:6:\"choice\";s:5:\"right\";}}}s:19:\"full_width_bg_color\";a:7:{s:5:\"label\";s:26:\"Container Background Color\";s:11:\"description\";s:55:\"Controls the background color of the container element.\";s:2:\"id\";s:19:\"full_width_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--full_width_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"full_width_gradient_start_color\";a:6:{s:5:\"label\";s:30:\"Container Gradient Start Color\";s:11:\"description\";s:63:\"Controls the start color for gradient of the container element.\";s:2:\"id\";s:31:\"full_width_gradient_start_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"full_width_gradient_end_color\";a:6:{s:5:\"label\";s:28:\"Container Gradient End Color\";s:11:\"description\";s:61:\"Controls the end color for gradient of the container element.\";s:2:\"id\";s:29:\"full_width_gradient_end_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"full_width_border_sizes\";a:8:{s:5:\"label\";s:22:\"Container Border Sizes\";s:11:\"description\";s:50:\"Controls the border size of the container element.\";s:2:\"id\";s:23:\"full_width_border_sizes\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:29:\"--full_width_border_sizes_top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:32:\"--full_width_border_sizes_bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:30:\"--full_width_border_sizes_left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:31:\"--full_width_border_sizes_right\";s:6:\"choice\";s:5:\"right\";}}}s:23:\"full_width_border_color\";a:7:{s:5:\"label\";s:22:\"Container Border Color\";s:11:\"description\";s:51:\"Controls the border color of the container element.\";s:2:\"id\";s:23:\"full_width_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--full_width_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"container_scroll_nav_bg_color\";a:6:{s:5:\"label\";s:49:\"Container 100% Height Navigation Background Color\";s:11:\"description\";s:101:\"Controls the background colors of the navigation area and name box when using 100% height containers.\";s:2:\"id\";s:29:\"container_scroll_nav_bg_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 80%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--container_scroll_nav_bg_color\";s:7:\"element\";s:26:\".fusion-scroll-section-nav\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:33:\"container_scroll_nav_bullet_color\";a:6:{s:5:\"label\";s:46:\"Container 100% Height Navigation Element Color\";s:11:\"description\";s:93:\"Controls the color of the navigation circles and text name when using 100% height containers.\";s:2:\"id\";s:33:\"container_scroll_nav_bullet_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:35:\"--container_scroll_nav_bullet_color\";s:7:\"element\";s:34:\".fusion-scroll-section-link-bullet\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:35:\"container_hundred_percent_animation\";a:7:{s:5:\"label\";s:31:\"Container 100% Height Animation\";s:11:\"description\";s:83:\"Select the animation of the scrolling transition on 100% height scrolling sections.\";s:2:\"id\";s:35:\"container_hundred_percent_animation\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:6:{s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:5:\"Slide\";s:5:\"stack\";s:5:\"Stack\";s:4:\"zoom\";s:4:\"Zoom\";s:13:\"slide-zoom-in\";s:13:\"Slide Zoom In\";s:14:\"slide-zoom-out\";s:14:\"Slide Zoom Out\";}}s:44:\"container_hundred_percent_scroll_sensitivity\";a:8:{s:5:\"label\";s:40:\"Container 100% Height Scroll Sensitivity\";s:11:\"description\";s:104:\"Controls the sensitivity of the scrolling transition on 100% height scrolling sections. In milliseconds.\";s:2:\"id\";s:44:\"container_hundred_percent_scroll_sensitivity\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";s:3:\"450\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"200\";s:3:\"max\";s:4:\"1500\";s:4:\"step\";s:2:\"10\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:35:\"container_hundred_percent_animation\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"fade\";}}}s:41:\"container_hundred_percent_animation_speed\";a:8:{s:5:\"label\";s:34:\"Container 100% Height Scroll Speed\";s:11:\"description\";s:98:\"Controls the speed of the scrolling transition on 100% height scrolling sections. In milliseconds.\";s:2:\"id\";s:41:\"container_hundred_percent_animation_speed\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:2:\"10\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:35:\"container_hundred_percent_animation\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"fade\";}}}s:41:\"container_hundred_percent_dots_navigation\";a:6:{s:5:\"label\";s:37:\"Container 100% Height Dots Navigation\";s:11:\"description\";s:132:\"Enable / Disable the dots navigation for 100% height containers. Disabling dots navigation may be useful if using custom navigation.\";s:2:\"id\";s:41:\"container_hundred_percent_dots_navigation\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:39:\"container_hundred_percent_height_mobile\";a:6:{s:5:\"label\";s:31:\"Container 100% Height On Mobile\";s:11:\"description\";s:303:\"Turn on to enable the 100% height containers on mobile. Please note, this feature only works when your containers have minimal content. If the container has a lot of content it will overflow the screen height. In many cases, 100% height containers work well on desktop, but will need disabled on mobile.\";s:2:\"id\";s:39:\"container_hundred_percent_height_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"fusionContainerVars\";s:2:\"id\";s:39:\"container_hundred_percent_height_mobile\";s:7:\"trigger\";a:1:{i:0;s:6:\"resize\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"container_legacy_support\";a:6:{s:5:\"label\";s:24:\"Legacy Container Support\";s:11:\"description\";s:262:\"<strong>IMPORTANT:</strong> If you disable legacy mode and then save a page, all containers on that page will be saved as flex mode.  If you later decide to turn the global legacy support back on then you will have to re-edit those pages if you want legacy mode.\";s:2:\"id\";s:24:\"container_legacy_support\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}}}s:31:\"content_boxes_shortcode_section\";a:5:{s:5:\"label\";s:13:\"Content Boxes\";s:2:\"id\";s:31:\"content_boxes_shortcode_section\";s:4:\"icon\";s:17:\"fusiona-newspaper\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:20:{s:20:\"content_box_bg_color\";a:7:{s:5:\"label\";s:28:\"Content Box Background Color\";s:11:\"description\";s:48:\"Controls the background color for content boxes.\";s:2:\"id\";s:20:\"content_box_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--content_box_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"content_box_title_size\";a:8:{s:5:\"label\";s:27:\"Content Box Title Font Size\";s:11:\"description\";s:36:\"Controls the size of the title text.\";s:2:\"id\";s:22:\"content_box_title_size\";s:7:\"default\";s:2:\"24\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"250\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--content_box_title_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"content_box_title_color\";a:7:{s:5:\"label\";s:28:\"Content Box Title Font Color\";s:11:\"description\";s:37:\"Controls the color of the title font.\";s:2:\"id\";s:23:\"content_box_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--content_box_title_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"content_box_body_color\";a:7:{s:5:\"label\";s:27:\"Content Box Body Font Color\";s:11:\"description\";s:36:\"Controls the color of the body font.\";s:2:\"id\";s:22:\"content_box_body_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--content_box_body_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"content_box_icon_size\";a:7:{s:5:\"label\";s:26:\"Content Box Icon Font Size\";s:11:\"description\";s:30:\"Controls the size of the icon.\";s:2:\"id\";s:21:\"content_box_icon_size\";s:7:\"default\";s:2:\"20\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"250\";s:4:\"step\";s:1:\"1\";}}s:22:\"content_box_icon_color\";a:7:{s:5:\"label\";s:22:\"Content Box Icon Color\";s:11:\"description\";s:43:\"Controls the color of the content box icon.\";s:2:\"id\";s:22:\"content_box_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--content_box_icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"content_box_icon_circle\";a:7:{s:5:\"label\";s:27:\"Content Box Icon Background\";s:11:\"description\";s:48:\"Turn on to display a background behind the icon.\";s:2:\"id\";s:23:\"content_box_icon_circle\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:2:\"On\";s:2:\"no\";s:3:\"Off\";}}s:30:\"content_box_icon_circle_radius\";a:7:{s:5:\"label\";s:34:\"Content Box Icon Background Radius\";s:11:\"description\";s:50:\"Controls the border radius of the icon background.\";s:2:\"id\";s:30:\"content_box_icon_circle_radius\";s:7:\"default\";s:3:\"50%\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:25:\"content_box_icon_bg_color\";a:7:{s:5:\"label\";s:33:\"Content Box Icon Background Color\";s:11:\"description\";s:42:\"Controls the color of the icon background.\";s:2:\"id\";s:25:\"content_box_icon_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:38:\"content_box_icon_bg_inner_border_color\";a:7:{s:5:\"label\";s:46:\"Content Box Icon Background Inner Border Color\";s:11:\"description\";s:55:\"Controls the inner border color of the icon background.\";s:2:\"id\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:37:\"content_box_icon_bg_inner_border_size\";a:8:{s:5:\"label\";s:45:\"Content Box Icon Background Inner Border Size\";s:11:\"description\";s:54:\"Controls the inner border size of the icon background.\";s:2:\"id\";s:37:\"content_box_icon_bg_inner_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:38:\"content_box_icon_bg_outer_border_color\";a:7:{s:5:\"label\";s:46:\"Content Box Icon Background Outer Border Color\";s:11:\"description\";s:55:\"Controls the outer border color of the icon background.\";s:2:\"id\";s:38:\"content_box_icon_bg_outer_border_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:37:\"content_box_icon_bg_outer_border_size\";a:8:{s:5:\"label\";s:45:\"Content Box Icon Background Outer Border Size\";s:11:\"description\";s:54:\"Controls the outer border size of the icon background.\";s:2:\"id\";s:37:\"content_box_icon_bg_outer_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:27:\"content_box_icon_hover_type\";a:7:{s:5:\"label\";s:32:\"Content Box Hover Animation Type\";s:11:\"description\";s:38:\"Controls the hover effect of the icon.\";s:2:\"id\";s:27:\"content_box_icon_hover_type\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:5:\"Slide\";s:7:\"pulsate\";s:7:\"Pulsate\";}}s:40:\"content_box_hover_animation_accent_color\";a:7:{s:5:\"label\";s:30:\"Content Box Hover Accent Color\";s:11:\"description\";s:35:\"Controls the accent color on hover.\";s:2:\"id\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:42:\"--content_box_hover_animation_accent_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"content_box_link_type\";a:7:{s:5:\"label\";s:21:\"Content Box Link Type\";s:11:\"description\";s:59:\"Controls the type of link that displays in the content box.\";s:2:\"id\";s:21:\"content_box_link_type\";s:7:\"default\";s:4:\"text\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"text\";s:4:\"Text\";s:10:\"button-bar\";s:10:\"Button Bar\";s:6:\"button\";s:6:\"Button\";}}s:23:\"content_box_button_span\";a:8:{s:5:\"label\";s:11:\"Button Span\";s:11:\"description\";s:46:\"Choose to have the button span the full width.\";s:2:\"id\";s:23:\"content_box_button_span\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:15:\"soft_dependency\";b:1;}s:21:\"content_box_link_area\";a:7:{s:5:\"label\";s:21:\"Content Box Link Area\";s:11:\"description\";s:49:\"Controls which area the link will be assigned to.\";s:2:\"id\";s:21:\"content_box_link_area\";s:7:\"default\";s:9:\"link-icon\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:9:\"link-icon\";s:11:\"Link + Icon\";s:3:\"box\";s:18:\"Entire Content Box\";}}s:23:\"content_box_link_target\";a:7:{s:5:\"label\";s:23:\"Content Box Link Target\";s:11:\"description\";s:32:\"Controls how the link will open.\";s:2:\"id\";s:23:\"content_box_link_target\";s:7:\"default\";s:5:\"_self\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:5:\"_self\";s:15:\"Same Window/Tab\";s:6:\"_blank\";s:14:\"New Window/Tab\";}}s:18:\"content_box_margin\";a:8:{s:5:\"label\";s:30:\"Content Box Top/Bottom Margins\";s:11:\"description\";s:49:\"Controls the top/bottom margin for content boxes.\";s:2:\"id\";s:18:\"content_box_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:24:\"--content_box_margin_top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:27:\"--content_box_margin_bottom\";s:6:\"choice\";s:6:\"bottom\";}}}}}s:27:\"countdown_shortcode_section\";a:5:{s:5:\"label\";s:9:\"Countdown\";s:2:\"id\";s:27:\"countdown_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:24:\"fusiona-calendar-check-o\";s:6:\"fields\";a:24:{s:18:\"countdown_timezone\";a:7:{s:5:\"label\";s:18:\"Countdown Timezone\";s:11:\"description\";s:65:\"Controls the timezone that is used for the countdown calculation.\";s:2:\"id\";s:18:\"countdown_timezone\";s:7:\"default\";s:9:\"site_time\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:9:\"site_time\";s:13:\"Site Timezone\";s:9:\"user_time\";s:13:\"User Timezone\";}}s:16:\"countdown_layout\";a:7:{s:5:\"label\";s:16:\"Countdown Layout\";s:11:\"description\";s:42:\"Select the layout of the coundown element.\";s:2:\"id\";s:16:\"countdown_layout\";s:7:\"default\";s:7:\"floated\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"floated\";s:7:\"Floated\";s:7:\"stacked\";s:7:\"Stacked\";}}s:20:\"countdown_show_weeks\";a:7:{s:5:\"label\";s:20:\"Countdown Show Weeks\";s:11:\"description\";s:56:\"Turn on to display the number of weeks in the countdown.\";s:2:\"id\";s:20:\"countdown_show_weeks\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:2:\"On\";s:2:\"no\";s:3:\"Off\";}}s:24:\"countdown_label_position\";a:7:{s:5:\"label\";s:24:\"Countdown Label Position\";s:11:\"description\";s:44:\"Select the position of the date/time labels.\";s:2:\"id\";s:24:\"countdown_label_position\";s:7:\"default\";s:9:\"text_flow\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:9:\"text_flow\";s:9:\"Text Flow\";s:3:\"top\";s:3:\"Top\";s:6:\"bottom\";s:6:\"Bottom\";}}s:26:\"countdown_background_color\";a:7:{s:5:\"label\";s:26:\"Countdown Background Color\";s:11:\"description\";s:52:\"Controls the background color for the countdown box.\";s:2:\"id\";s:26:\"countdown_background_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--countdown_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"countdown_background_image\";a:7:{s:5:\"label\";s:26:\"Countdown Background Image\";s:11:\"description\";s:49:\"Select an image for the countdown box background.\";s:2:\"id\";s:26:\"countdown_background_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"countdown_background_repeat\";a:7:{s:5:\"label\";s:27:\"Countdown Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:27:\"countdown_background_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:17:\"Repeat Horizontal\";s:8:\"repeat-y\";s:15:\"Repeat Vertical\";s:9:\"no-repeat\";s:11:\"Repeat None\";}}s:29:\"countdown_background_position\";a:7:{s:5:\"label\";s:29:\"Countdown Background Position\";s:11:\"description\";s:48:\"Controls how the background image is positioned.\";s:2:\"id\";s:29:\"countdown_background_position\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:9:{s:8:\"top left\";s:8:\"top left\";s:10:\"top center\";s:10:\"top center\";s:9:\"top right\";s:9:\"top right\";s:11:\"center left\";s:11:\"center left\";s:13:\"center center\";s:13:\"center center\";s:12:\"center right\";s:12:\"center right\";s:11:\"bottom left\";s:11:\"bottom left\";s:13:\"bottom center\";s:13:\"bottom center\";s:12:\"bottom right\";s:12:\"bottom right\";}}s:29:\"countdown_counter_box_spacing\";a:7:{s:5:\"label\";s:29:\"Countdown Counter Box Spacing\";s:11:\"description\";s:47:\"Controls the spacing between the counter boxes.\";s:2:\"id\";s:29:\"countdown_counter_box_spacing\";s:7:\"default\";s:4:\"10px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:31:\"--countdown_counter_box_spacing\";}}}s:27:\"countdown_counter_box_color\";a:7:{s:5:\"label\";s:38:\"Countdown Counter Box Background Color\";s:11:\"description\";s:52:\"Controls the background color for the counter boxes.\";s:2:\"id\";s:27:\"countdown_counter_box_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--countdown_counter_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"countdown_counter_padding\";a:8:{s:5:\"label\";s:29:\"Countdown Counter Box Padding\";s:11:\"description\";s:39:\"Set the padding for the counter boxes. \";s:2:\"id\";s:25:\"countdown_counter_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:5:\"0.6em\";s:5:\"right\";s:5:\"1.1em\";s:6:\"bottom\";s:5:\"0.6em\";s:4:\"left\";s:5:\"1.1em\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:31:\"--countdown_counter_padding-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:33:\"--countdown_counter_padding-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:34:\"--countdown_counter_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:32:\"--countdown_counter_padding-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}}}s:29:\"countdown_counter_border_size\";a:8:{s:5:\"label\";s:29:\"Countdown Counter Border Size\";s:11:\"description\";s:46:\"Controls the border size of the counter boxes.\";s:2:\"id\";s:29:\"countdown_counter_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:31:\"--countdown_counter_border_size\";}}}s:30:\"countdown_counter_border_color\";a:8:{s:5:\"label\";s:30:\"Countdown Counter Border Color\";s:11:\"description\";s:47:\"Controls the border color of the counter boxes.\";s:2:\"id\";s:30:\"countdown_counter_border_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--countdown_counter_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"countdown_counter_border_radius\";a:8:{s:5:\"label\";s:31:\"Countdown Counter Border Radius\";s:11:\"description\";s:48:\"Controls the border radius of the counter boxes.\";s:2:\"id\";s:31:\"countdown_counter_border_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:33:\"--countdown_counter_border_radius\";}}}s:27:\"countdown_counter_font_size\";a:7:{s:5:\"label\";s:27:\"Countdown Counter Font Size\";s:11:\"description\";s:47:\"Controls the font size for the countdown timer.\";s:2:\"id\";s:27:\"countdown_counter_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:29:\"--countdown_counter_font_size\";}}}s:28:\"countdown_counter_text_color\";a:7:{s:5:\"label\";s:28:\"Countdown Counter Text Color\";s:11:\"description\";s:48:\"Controls the color for the countdown timer text.\";s:2:\"id\";s:28:\"countdown_counter_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--countdown_counter_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"countdown_label_font_size\";a:7:{s:5:\"label\";s:33:\"Countdown Counter Label Font Size\";s:11:\"description\";s:47:\"Controls the font size for the countdown label.\";s:2:\"id\";s:25:\"countdown_label_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:27:\"--countdown_label_font_size\";}}}s:21:\"countdown_label_color\";a:7:{s:5:\"label\";s:34:\"Countdown Counter Label Text Color\";s:11:\"description\";s:50:\"Controls the color for the countdown timer labels.\";s:2:\"id\";s:21:\"countdown_label_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--countdown_label_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"countdown_heading_font_size\";a:7:{s:5:\"label\";s:27:\"Countdown Heading Font Size\";s:11:\"description\";s:49:\"Controls the font size for the countdown heading.\";s:2:\"id\";s:27:\"countdown_heading_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:29:\"--countdown_heading_font_size\";}}}s:28:\"countdown_heading_text_color\";a:7:{s:5:\"label\";s:28:\"Countdown Heading Text Color\";s:11:\"description\";s:46:\"Controls the color for the countdown headings.\";s:2:\"id\";s:28:\"countdown_heading_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--countdown_heading_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"countdown_subheading_font_size\";a:7:{s:5:\"label\";s:30:\"Countdown Subheading Font Size\";s:11:\"description\";s:52:\"Controls the font size for the countdown subheading.\";s:2:\"id\";s:30:\"countdown_subheading_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:32:\"--countdown_subheading_font_size\";}}}s:31:\"countdown_subheading_text_color\";a:7:{s:5:\"label\";s:31:\"Countdown Subheading Text Color\";s:11:\"description\";s:49:\"Controls the color for the countdown subheadings.\";s:2:\"id\";s:31:\"countdown_subheading_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--countdown_subheading_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"countdown_link_text_color\";a:7:{s:5:\"label\";s:25:\"Countdown Link Text Color\";s:11:\"description\";s:47:\"Controls the color for the countdown link text.\";s:2:\"id\";s:25:\"countdown_link_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--countdown_link_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"countdown_link_target\";a:7:{s:5:\"label\";s:21:\"Countdown Link Target\";s:11:\"description\";s:32:\"Controls how the link will open.\";s:2:\"id\";s:21:\"countdown_link_target\";s:7:\"default\";s:5:\"_self\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:5:\"_self\";s:11:\"Same Window\";s:6:\"_blank\";s:10:\"New Window\";}}}}s:30:\"counters_box_shortcode_section\";a:6:{s:5:\"label\";s:13:\"Counter Boxes\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:30:\"counters_box_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-browser\";s:6:\"fields\";a:8:{s:17:\"counter_box_speed\";a:7:{s:5:\"label\";s:19:\"Counter Boxes Speed\";s:11:\"description\";s:70:\"Controls the speed of the counter boxes elements. ex: 1000 = 1 second.\";s:2:\"id\";s:17:\"counter_box_speed\";s:7:\"default\";s:4:\"1000\";s:4:\"type\";s:6:\"slider\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionCountersBox\";s:2:\"id\";s:17:\"counter_box_speed\";s:7:\"trigger\";a:1:{i:0;s:0:\"\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"500\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}}s:17:\"counter_box_color\";a:7:{s:5:\"label\";s:30:\"Counter Boxes Value Font Color\";s:11:\"description\";s:51:\"Controls the color of the counter values and icons.\";s:2:\"id\";s:17:\"counter_box_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--counter_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"counter_box_title_size\";a:8:{s:5:\"label\";s:29:\"Counter Boxes Value Font Size\";s:11:\"description\";s:39:\"Controls the size of the counter value.\";s:2:\"id\";s:22:\"counter_box_title_size\";s:7:\"default\";s:2:\"50\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--counter_box_title_size\";s:8:\"callback\";a:1:{i:0;s:6:\"number\";}}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}}s:21:\"counter_box_icon_size\";a:8:{s:5:\"label\";s:23:\"Counter Boxes Icon Size\";s:11:\"description\";s:30:\"Controls the size of the icon.\";s:2:\"id\";s:21:\"counter_box_icon_size\";s:7:\"default\";s:2:\"50\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--counter_box_icon_size\";s:8:\"callback\";a:1:{i:0;s:6:\"number\";}}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}}s:22:\"counter_box_body_color\";a:7:{s:5:\"label\";s:29:\"Counter Boxes Body Font Color\";s:11:\"description\";s:50:\"Controls the color of the counter boxes body text.\";s:2:\"id\";s:22:\"counter_box_body_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--counter_box_body_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"counter_box_body_size\";a:8:{s:5:\"label\";s:28:\"Counter Boxes Body Font Size\";s:11:\"description\";s:49:\"Controls the size of the counter boxes body text.\";s:2:\"id\";s:21:\"counter_box_body_size\";s:7:\"default\";s:2:\"14\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--counter_box_body_size\";s:8:\"callback\";a:1:{i:0;s:6:\"number\";}}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}}s:24:\"counter_box_border_color\";a:7:{s:5:\"label\";s:26:\"Counter Boxes Border Color\";s:11:\"description\";s:47:\"Controls the color of the counter boxes border.\";s:2:\"id\";s:24:\"counter_box_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--counter_box_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"counter_box_icon_top\";a:7:{s:5:\"label\";s:25:\"Counter Boxes Icon On Top\";s:11:\"description\";s:56:\"Turn on to display the icon on top of the counter value.\";s:2:\"id\";s:20:\"counter_box_icon_top\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:2:\"On\";s:2:\"no\";s:3:\"Off\";}}}}s:33:\"counters_circle_shortcode_section\";a:6:{s:5:\"label\";s:15:\"Counter Circles\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:33:\"counters_circle_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-clock\";s:6:\"fields\";a:2:{s:20:\"counter_filled_color\";a:6:{s:5:\"label\";s:28:\"Counter Circles Filled Color\";s:11:\"description\";s:40:\"Controls the color of the filled circle.\";s:2:\"id\";s:20:\"counter_filled_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"counter_unfilled_color\";a:6:{s:5:\"label\";s:30:\"Counter Circles Unfilled Color\";s:11:\"description\";s:42:\"Controls the color of the unfilled circle.\";s:2:\"id\";s:22:\"counter_unfilled_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:25:\"dropcap_shortcode_section\";a:6:{s:5:\"label\";s:7:\"Dropcap\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"dropcap_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-font\";s:6:\"fields\";a:2:{s:13:\"dropcap_color\";a:6:{s:5:\"label\";s:13:\"Dropcap Color\";s:11:\"description\";s:76:\"Controls the color of the dropcap text, or the dropcap box if a box is used.\";s:2:\"id\";s:13:\"dropcap_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:15:\"--dropcap_color\";s:7:\"element\";s:28:\".fusion-body .fusion-dropcap\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"dropcap_text_color\";a:6:{s:5:\"label\";s:18:\"Dropcap Text Color\";s:11:\"description\";s:58:\"Controls the color of the dropcap text when a box is used.\";s:2:\"id\";s:18:\"dropcap_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--dropcap_text_color\";s:7:\"element\";s:28:\".fusion-body .fusion-dropcap\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:21:\"faq_shortcode_section\";a:7:{s:5:\"label\";s:3:\"FAQ\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:21:\"faq_shortcode_section\";s:4:\"type\";s:11:\"sub-section\";s:4:\"icon\";s:24:\"fusiona-exclamation-sign\";s:8:\"help_url\";s:66:\"https://theme-fusion.com/documentation/avada/elements/faq-element/\";s:6:\"fields\";a:20:{s:18:\"faq_featured_image\";a:7:{s:5:\"label\";s:19:\"FAQ Featured Images\";s:11:\"description\";s:35:\"Turn on to display featured images.\";s:2:\"id\";s:18:\"faq_featured_image\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:11:\"option_name\";s:14:\"fusion_options\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"faq_filters\";a:8:{s:5:\"label\";s:11:\"FAQ Filters\";s:11:\"description\";s:42:\"Controls how the filters display for FAQs.\";s:2:\"id\";s:11:\"faq_filters\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:3:\"yes\";s:4:\"Show\";s:15:\"yes_without_all\";s:28:\"Show without &quot;All&quot;\";s:2:\"no\";s:4:\"Hide\";}s:11:\"option_name\";s:14:\"fusion_options\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"faq_accordion_type\";a:7:{s:5:\"label\";s:29:\"FAQs in Toggles or Accordions\";s:11:\"description\";s:102:\"Toggles allow several items to be open at a time. Accordions only allow one item to be open at a time.\";s:2:\"id\";s:18:\"faq_accordion_type\";s:7:\"default\";s:10:\"accordions\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"toggles\";s:7:\"Toggles\";s:10:\"accordions\";s:10:\"Accordions\";}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"faq_accordion_boxed_mode\";a:6:{s:5:\"label\";s:23:\"FAQ Items in Boxed Mode\";s:11:\"description\";s:103:\"Turn on to display items in boxed mode. FAQ Item divider line must be disabled for this option to work.\";s:2:\"id\";s:24:\"faq_accordion_boxed_mode\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:25:\"faq_accordion_border_size\";a:8:{s:5:\"label\";s:32:\"FAQ Item Boxed Mode Border Width\";s:11:\"description\";s:41:\"Controls the border size of the FAQ item.\";s:2:\"id\";s:25:\"faq_accordion_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:26:\"faq_accordian_border_color\";a:7:{s:5:\"label\";s:32:\"FAQ Item Boxed Mode Border Color\";s:11:\"description\";s:42:\"Controls the border color of the FAQ item.\";s:2:\"id\";s:26:\"faq_accordian_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:30:\"faq_accordian_background_color\";a:7:{s:5:\"label\";s:36:\"FAQ Item Boxed Mode Background Color\";s:11:\"description\";s:46:\"Controls the background color of the FAQ item.\";s:2:\"id\";s:30:\"faq_accordian_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:25:\"faq_accordian_hover_color\";a:7:{s:5:\"label\";s:42:\"FAQ Item Boxed Mode Background Hover Color\";s:11:\"description\";s:52:\"Controls the background hover color of the FAQ item.\";s:2:\"id\";s:25:\"faq_accordian_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:26:\"faq_accordion_divider_line\";a:7:{s:5:\"label\";s:21:\"FAQ Item Divider Line\";s:11:\"description\";s:52:\"Turn on to display a divider line between each item.\";s:2:\"id\";s:26:\"faq_accordion_divider_line\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:27:\"faq_accordion_divider_color\";a:6:{s:5:\"label\";s:27:\"FAQ Item Divider Line Color\";s:11:\"description\";s:44:\"Controls the color of FAQ item divider line.\";s:2:\"id\";s:27:\"faq_accordion_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--faq_accordion_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:33:\"faq_accordion_divider_hover_color\";a:6:{s:5:\"label\";s:33:\"FAQ Item Divider Line Hover Color\";s:11:\"description\";s:50:\"Controls the hover color of FAQ item divider line.\";s:2:\"id\";s:33:\"faq_accordion_divider_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--faq_accordion_divider_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"faq_accordion_title_typography\";a:8:{s:2:\"id\";s:30:\"faq_accordion_title_typography\";s:5:\"label\";s:25:\"FAQ Item Title Typography\";s:11:\"description\";s:47:\"Choose the typography for all FAQ items titles.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:44:\"--faq_accordion_title_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:30:\"faq_accordion_title_typography\";}}i:1;a:2:{s:4:\"name\";s:42:\"--faq_accordion_title_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:44:\"--faq_accordion_title_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:44:\"--faq_accordion_title_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:2:{s:4:\"name\";s:47:\"--faq_accordion_title_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:5;a:3:{s:4:\"name\";s:47:\"--faq_accordion_title_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:6;a:3:{s:4:\"name\";s:38:\"--faq_accordion_title_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:23:\"faq_accordion_icon_size\";a:7:{s:5:\"label\";s:18:\"FAQ Item Icon Size\";s:11:\"description\";s:25:\"Set the size of the icon.\";s:2:\"id\";s:23:\"faq_accordion_icon_size\";s:7:\"default\";s:2:\"16\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";}s:24:\"faq_accordian_icon_color\";a:7:{s:5:\"label\";s:19:\"FAQ Item Icon Color\";s:11:\"description\";s:38:\"Controls the color of icon in FAQ box.\";s:2:\"id\";s:24:\"faq_accordian_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--faq_accordian_icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"faq_accordion_icon_boxed\";a:6:{s:5:\"label\";s:24:\"FAQ Item Icon Boxed Mode\";s:11:\"description\";s:38:\"Turn on to display icon in boxed mode.\";s:2:\"id\";s:24:\"faq_accordion_icon_boxed\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:28:\"faq_accordian_inactive_color\";a:8:{s:5:\"label\";s:32:\"FAQ Item Icon Inactive Box Color\";s:11:\"description\";s:43:\"Controls the color of the inactive FAQ box.\";s:2:\"id\";s:28:\"faq_accordian_inactive_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--faq_accordian_inactive_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"faq_accordion_content_typography\";a:8:{s:2:\"id\";s:32:\"faq_accordion_content_typography\";s:5:\"label\";s:27:\"FAQ Item Content Typography\";s:11:\"description\";s:48:\"Choose the typography for all FAQ items content.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:46:\"--faq_accordion_content_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:32:\"faq_accordion_content_typography\";}}i:1;a:2:{s:4:\"name\";s:44:\"--faq_accordion_content_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:46:\"--faq_accordion_content_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:46:\"--faq_accordion_content_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:2:{s:4:\"name\";s:49:\"--faq_accordion_content_typography-text-transform\";s:6:\"choice\";s:14:\"text-transform\";}i:5;a:3:{s:4:\"name\";s:49:\"--faq_accordion_content_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:6;a:3:{s:4:\"name\";s:40:\"--faq_accordion_content_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:24:\"faq_accordion_icon_align\";a:7:{s:5:\"label\";s:23:\"FAQ Item Icon Alignment\";s:11:\"description\";s:35:\"Controls the alignment of the icon.\";s:2:\"id\";s:24:\"faq_accordion_icon_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";}}s:26:\"faq_accordian_active_color\";a:6:{s:5:\"label\";s:39:\"FAQ Item Icon Toggle Hover Accent Color\";s:11:\"description\";s:58:\"Controls the accent color on hover for icon box and title.\";s:2:\"id\";s:26:\"faq_accordian_active_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:33:\"faq_accordian_active_accent_color\";a:5:{s:5:\"label\";s:40:\"FAQ Item Icon Toggle Active Accent Color\";s:11:\"description\";s:59:\"Controls the accent color on active for icon box and title.\";s:2:\"id\";s:33:\"faq_accordian_active_accent_color\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:11:\"color-alpha\";}}}s:28:\"flip_boxes_shortcode_section\";a:6:{s:5:\"label\";s:10:\"Flip Boxes\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"flip_boxes_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-loop-alt2\";s:6:\"fields\";a:13:{s:22:\"flip_boxes_flip_effect\";a:7:{s:5:\"label\";s:11:\"Flip Effect\";s:11:\"description\";s:34:\"Set the flip effect for the boxes.\";s:2:\"id\";s:22:\"flip_boxes_flip_effect\";s:7:\"default\";s:7:\"classic\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"classic\";s:7:\"Classic\";s:2:\"3d\";s:2:\"3d\";}}s:25:\"flip_boxes_flip_direction\";a:7:{s:5:\"label\";s:14:\"Flip Direction\";s:11:\"description\";s:49:\"Set the direction in which the boxes should flip.\";s:2:\"id\";s:25:\"flip_boxes_flip_direction\";s:7:\"default\";s:5:\"right\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"left\";s:9:\"Flip Left\";s:5:\"right\";s:10:\"Flip Right\";s:2:\"up\";s:7:\"Flip Up\";s:4:\"down\";s:9:\"Flip Down\";}}s:24:\"flip_boxes_flip_duration\";a:8:{s:5:\"label\";s:13:\"Flip Duration\";s:11:\"description\";s:38:\"Set the speed at which the boxes flip.\";s:2:\"id\";s:24:\"flip_boxes_flip_duration\";s:7:\"default\";s:3:\"0.8\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"2\";s:4:\"step\";s:3:\"0.1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--flip_boxes_flip_duration\";s:13:\"value_pattern\";s:2:\"$s\";}}}s:24:\"flip_boxes_equal_heights\";a:7:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:50:\"Set to yes to display flip boxes to equal heights.\";s:2:\"id\";s:24:\"flip_boxes_equal_heights\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:19:\"flip_boxes_front_bg\";a:7:{s:5:\"label\";s:35:\"Flip Box Background Color Frontside\";s:11:\"description\";s:47:\"Controls the color of the frontside background.\";s:2:\"id\";s:19:\"flip_boxes_front_bg\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--flip_boxes_front_bg\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"flip_boxes_front_heading\";a:7:{s:5:\"label\";s:32:\"Flip Box Heading Color Frontside\";s:11:\"description\";s:44:\"Controls the color of the frontside heading.\";s:2:\"id\";s:24:\"flip_boxes_front_heading\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--flip_boxes_front_heading\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"flip_boxes_front_text\";a:7:{s:5:\"label\";s:29:\"Flip Box Text Color Frontside\";s:11:\"description\";s:41:\"Controls the color of the frontside text.\";s:2:\"id\";s:21:\"flip_boxes_front_text\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--flip_boxes_front_text\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"flip_boxes_back_bg\";a:7:{s:5:\"label\";s:34:\"Flip Box Background Color Backside\";s:11:\"description\";s:46:\"Controls the color of the backside background.\";s:2:\"id\";s:18:\"flip_boxes_back_bg\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--flip_boxes_back_bg\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"flip_boxes_back_heading\";a:7:{s:5:\"label\";s:31:\"Flip Box Heading Color Backside\";s:11:\"description\";s:43:\"Controls the color of the backside heading.\";s:2:\"id\";s:23:\"flip_boxes_back_heading\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--flip_boxes_back_heading\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"flip_boxes_back_text\";a:7:{s:5:\"label\";s:28:\"Flip Box Text Color Backside\";s:11:\"description\";s:40:\"Controls the color of the backside text.\";s:2:\"id\";s:20:\"flip_boxes_back_text\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--flip_boxes_back_text\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"flip_boxes_border_size\";a:8:{s:5:\"label\";s:20:\"Flip Box Border Size\";s:11:\"description\";s:52:\"Controls the border size of the flip box background.\";s:2:\"id\";s:22:\"flip_boxes_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--flip_boxes_border_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"flip_boxes_border_color\";a:7:{s:5:\"label\";s:21:\"Flip Box Border Color\";s:11:\"description\";s:49:\"Controls the border color of flip box background.\";s:2:\"id\";s:23:\"flip_boxes_border_color\";s:7:\"default\";s:13:\"rgba(0,0,0,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--flip_boxes_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"flip_boxes_border_radius\";a:8:{s:5:\"label\";s:22:\"Flip Box Border Radius\";s:11:\"description\";s:54:\"Controls the border radius of the flip box background.\";s:2:\"id\";s:24:\"flip_boxes_border_radius\";s:7:\"default\";s:3:\"6px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--flip_boxes_border_radius\";}}}}}s:25:\"gallery_shortcode_section\";a:5:{s:5:\"label\";s:7:\"Gallery\";s:2:\"id\";s:25:\"gallery_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-dashboard\";s:6:\"fields\";a:12:{s:13:\"gallery_limit\";a:7:{s:5:\"label\";s:15:\"Number Of Items\";s:11:\"description\";s:133:\"Choose the number of items you want to display. Set to -1 to display all. Set to 0 to use number of items from Settings &gt; Reading.\";s:2:\"id\";s:13:\"gallery_limit\";s:7:\"default\";s:2:\"-1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"-1\";s:3:\"max\";s:2:\"25\";s:4:\"step\";s:1:\"1\";}}s:23:\"gallery_pagination_type\";a:8:{s:5:\"label\";s:15:\"Pagination Type\";s:11:\"description\";s:27:\"Choose the pagination type.\";s:2:\"id\";s:23:\"gallery_pagination_type\";s:7:\"default\";s:6:\"button\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:2:{s:6:\"button\";s:16:\"Load More Button\";s:8:\"infinite\";s:18:\"Infinite Scrolling\";}}s:29:\"gallery_load_more_button_text\";a:7:{s:5:\"label\";s:21:\"Load More Button Text\";s:11:\"description\";s:36:\"Insert custom load more button text.\";s:2:\"id\";s:29:\"gallery_load_more_button_text\";s:7:\"default\";s:9:\"Load More\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:20:\"gallery_picture_size\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:12:\"Picture Size\";s:11:\"description\";s:92:\"Fixed = width and height will be fixed<br/>Auto = width and height will adjust to the image.\";s:2:\"id\";s:20:\"gallery_picture_size\";s:7:\"choices\";a:2:{s:5:\"fixed\";s:5:\"Fixed\";s:4:\"auto\";s:4:\"Auto\";}s:7:\"default\";s:4:\"auto\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"gallery_layout\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:14:\"Gallery Layout\";s:11:\"description\";s:31:\"Select the gallery layout type.\";s:2:\"id\";s:14:\"gallery_layout\";s:7:\"choices\";a:2:{s:4:\"grid\";s:4:\"Grid\";s:7:\"masonry\";s:7:\"Masonry\";}s:7:\"default\";s:4:\"grid\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"gallery_columns\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:106:\"Set the number of columns per row. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:15:\"gallery_columns\";s:7:\"default\";s:1:\"3\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}}s:22:\"gallery_column_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:47:\"Controls the column spacing for gallery images.\";s:2:\"id\";s:22:\"gallery_column_spacing\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}}s:18:\"gallery_hover_type\";a:7:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:10:\"Hover Type\";s:11:\"description\";s:29:\"Select the hover effect type.\";s:2:\"id\";s:18:\"gallery_hover_type\";s:7:\"choices\";a:5:{s:0:\"\";s:7:\"Default\";s:4:\"none\";s:4:\"None\";s:6:\"zoomin\";s:7:\"Zoom In\";s:7:\"zoomout\";s:8:\"Zoom Out\";s:6:\"liftup\";s:7:\"Lift Up\";}s:7:\"default\";s:4:\"none\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"gallery_lightbox_content\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:16:\"Lightbox Content\";s:2:\"id\";s:24:\"gallery_lightbox_content\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:6:\"titles\";s:6:\"Titles\";s:8:\"captions\";s:8:\"Captions\";s:17:\"title_and_caption\";s:21:\"Titles &amp; Captions\";}s:11:\"description\";s:59:\"Choose if titles and captions will display in the lightbox.\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"gallery_border_size\";a:7:{s:5:\"label\";s:25:\"Gallery Image Border Size\";s:11:\"description\";s:38:\"Controls the border size of the image.\";s:2:\"id\";s:19:\"gallery_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:20:\"gallery_border_color\";a:6:{s:5:\"label\";s:26:\"Gallery Image Border Color\";s:11:\"description\";s:39:\"Controls the border color of the image.\";s:2:\"id\";s:20:\"gallery_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"gallery_border_radius\";a:7:{s:5:\"label\";s:27:\"Gallery Image Border Radius\";s:11:\"description\";s:49:\"Controls the border radius of the gallery images.\";s:2:\"id\";s:21:\"gallery_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:28:\"google_map_shortcode_section\";a:6:{s:5:\"label\";s:10:\"Google Map\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"google_map_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:11:\"fusiona-map\";s:6:\"fields\";a:1:{s:19:\"google_map_api_type\";a:7:{s:5:\"label\";s:15:\"Google API Type\";s:11:\"description\";s:417:\"Select the Google API type that should be used to load your map. The JavaScript API allows for more options and custom styling, but could be charged for by Google depending on the amount of map loads. The embed and the static API can be used for free regardless of map loads. For more information please see the <a href=\"https://cloud.google.com/maps-platform/user-guide/\" target=\"_blank\">Google Maps Users Guide</a>.\";s:2:\"id\";s:19:\"google_map_api_type\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:2:\"js\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:2:\"js\";s:6:\"JS API\";s:5:\"embed\";s:9:\"Embed API\";s:6:\"static\";s:10:\"Static API\";}}}}s:22:\"icon_shortcode_section\";a:6:{s:5:\"label\";s:4:\"Icon\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"icon_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-flag\";s:6:\"fields\";a:11:{s:9:\"icon_size\";a:7:{s:5:\"label\";s:14:\"Icon Font Size\";s:11:\"description\";s:30:\"Controls the size of the icon.\";s:2:\"id\";s:9:\"icon_size\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"250\";s:4:\"step\";s:1:\"1\";}}s:10:\"icon_color\";a:7:{s:5:\"label\";s:10:\"Icon Color\";s:11:\"description\";s:31:\"Controls the color of the icon.\";s:2:\"id\";s:10:\"icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:12:\"--icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"icon_color_hover\";a:7:{s:5:\"label\";s:16:\"Icon Hover Color\";s:11:\"description\";s:40:\"Controls the color of the icon on hover.\";s:2:\"id\";s:16:\"icon_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--icon_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:11:\"icon_circle\";a:7:{s:5:\"label\";s:15:\"Icon Background\";s:11:\"description\";s:48:\"Turn on to display a background behind the icon.\";s:2:\"id\";s:11:\"icon_circle\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:17:\"icon_circle_color\";a:7:{s:5:\"label\";s:21:\"Icon Background Color\";s:11:\"description\";s:37:\"Controls the color of the background.\";s:2:\"id\";s:17:\"icon_circle_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--icon_circle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"icon_circle_color_hover\";a:7:{s:5:\"label\";s:27:\"Icon Hover Background Color\";s:11:\"description\";s:46:\"Controls the color of the background on hover.\";s:2:\"id\";s:23:\"icon_circle_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--icon_circle_color_hover\";}}}s:16:\"icon_border_size\";a:8:{s:5:\"label\";s:16:\"Icon Border Size\";s:11:\"description\";s:48:\"Controls the border size of the icon background.\";s:2:\"id\";s:16:\"icon_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--icon_border_size\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:17:\"icon_border_color\";a:7:{s:5:\"label\";s:28:\"Icon Background Border Color\";s:11:\"description\";s:44:\"Controls the border color of the background.\";s:2:\"id\";s:17:\"icon_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--icon_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"icon_border_color_hover\";a:7:{s:5:\"label\";s:34:\"Icon Hover Background Border Color\";s:11:\"description\";s:53:\"Controls the border color of the background on hover.\";s:2:\"id\";s:23:\"icon_border_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--icon_border_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"icon_border_radius\";a:8:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:22:\"Set the border radius.\";s:2:\"id\";s:18:\"icon_border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"50%\";s:9:\"top_right\";s:3:\"50%\";s:12:\"bottom_right\";s:3:\"50%\";s:11:\"bottom_left\";s:3:\"50%\";}s:4:\"type\";s:13:\"border_radius\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:23:\"--icon_border_top_l_rad\";s:6:\"choice\";s:8:\"top_left\";}i:1;a:2:{s:4:\"name\";s:23:\"--icon_border_top_r_rad\";s:6:\"choice\";s:9:\"top_right\";}i:2;a:2:{s:4:\"name\";s:23:\"--icon_border_bot_r_rad\";s:6:\"choice\";s:12:\"bottom_right\";}i:3;a:2:{s:4:\"name\";s:23:\"--icon_border_bot_l_rad\";s:6:\"choice\";s:11:\"bottom_left\";}}}s:15:\"icon_hover_type\";a:7:{s:5:\"label\";s:25:\"Icon Hover Animation Type\";s:11:\"description\";s:38:\"Controls the hover effect of the icon.\";s:2:\"id\";s:15:\"icon_hover_type\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:5:\"Slide\";s:7:\"pulsate\";s:7:\"Pulsate\";}}}}s:36:\"image_before_after_shortcode_section\";a:6:{s:5:\"label\";s:21:\" Image Before & After\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:36:\"image_before_after_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:22:\"fusiona-object-ungroup\";s:6:\"fields\";a:14:{s:17:\"before_after_type\";a:7:{s:5:\"label\";s:11:\"Effect Type\";s:11:\"description\";s:177:\"Select which type of effect your before and after image uses. &quot;Slide&quot; provides a handle to move back and forth while &quot;Fade&quot; changes the image on mouse hover.\";s:2:\"id\";s:17:\"before_after_type\";s:7:\"default\";s:12:\"before_after\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:12:\"before_after\";s:5:\"Slide\";s:6:\"switch\";s:4:\"Fade\";}}s:22:\"before_after_font_size\";a:9:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:15:\"Label Font Size\";s:11:\"description\";s:105:\"Controls the font size of the label text. Note: font family is controlled by body font in Global Options.\";s:2:\"id\";s:22:\"before_after_font_size\";s:7:\"default\";s:2:\"14\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--before_after_font_size\";}}s:15:\"soft_dependency\";b:1;}s:25:\"before_after_accent_color\";a:8:{s:5:\"label\";s:18:\"Label Accent Color\";s:11:\"description\";s:111:\"Controls the color of the label background and text. Text takes 100% of this color, background takes a % of it.\";s:2:\"id\";s:25:\"before_after_accent_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:27:\"--before_after_accent_color\";}}s:15:\"soft_dependency\";b:1;}s:28:\"before_after_label_placement\";a:8:{s:5:\"label\";s:15:\"Label Placement\";s:11:\"description\";s:127:\"Choose if labels are on top of the image and centered, on top of the image up &amp; down or outside of the image up &amp; down.\";s:2:\"id\";s:28:\"before_after_label_placement\";s:7:\"default\";s:14:\"image-centered\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:14:\"image-centered\";s:14:\"Image Centered\";s:13:\"image-up-down\";s:19:\"Image Up &amp; Down\";s:17:\"out-image-up-down\";s:27:\"Outside Image Up &amp; Down\";}s:15:\"soft_dependency\";b:1;}s:24:\"before_after_handle_type\";a:8:{s:5:\"label\";s:19:\"Handle Design Style\";s:11:\"description\";s:76:\"Controls the design of the handle used to change the before and after image.\";s:2:\"id\";s:24:\"before_after_handle_type\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:6:{s:7:\"default\";s:18:\"Circle With Arrows\";s:6:\"square\";s:18:\"Square With Arrows\";s:9:\"rectangle\";s:21:\"Rectangle With Arrows\";s:6:\"arrows\";s:6:\"Arrows\";s:7:\"diamond\";s:7:\"Diamond\";s:6:\"circle\";s:13:\"Single Circle\";}s:15:\"soft_dependency\";b:1;}s:25:\"before_after_handle_color\";a:8:{s:5:\"label\";s:12:\"Handle Color\";s:11:\"description\";s:85:\"Controls the color of the before and after image handle line and arrows. ex: #ffffff.\";s:2:\"id\";s:25:\"before_after_handle_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:27:\"--before_after_handle_color\";}}s:15:\"soft_dependency\";b:1;}s:22:\"before_after_handle_bg\";a:8:{s:5:\"label\";s:23:\"Handle Background Color\";s:11:\"description\";s:87:\"Controls the background color of the before and after image handle switch. ex: #000000.\";s:2:\"id\";s:22:\"before_after_handle_bg\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--before_after_handle_bg\";}}s:15:\"soft_dependency\";b:1;}s:19:\"before_after_offset\";a:8:{s:5:\"label\";s:13:\"Handle Offset\";s:11:\"description\";s:140:\"Controls where the handle will be positioned on page load allowing you to control how much of each image displays by default. In percentage.\";s:2:\"id\";s:19:\"before_after_offset\";s:7:\"default\";s:2:\"50\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:24:\"before_after_orientation\";a:8:{s:5:\"label\";s:18:\"Handle Orientation\";s:11:\"description\";s:59:\"Controls the position of the before and after image handle.\";s:2:\"id\";s:24:\"before_after_orientation\";s:7:\"default\";s:10:\"horizontal\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:10:\"horizontal\";s:10:\"Horizontal\";s:8:\"vertical\";s:8:\"Vertical\";}s:15:\"soft_dependency\";b:1;}s:28:\"before_after_handle_movement\";a:8:{s:5:\"label\";s:23:\"Handle Movement Control\";s:11:\"description\";s:121:\"Controls how the viewer interacts with the image handler. The image handle can use Drag &amp; Click, Drag Only, or Hover.\";s:2:\"id\";s:28:\"before_after_handle_movement\";s:7:\"default\";s:10:\"drag_click\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:10:\"drag_click\";s:16:\"Drag &amp; Click\";s:4:\"drag\";s:9:\"Drag Only\";s:5:\"hover\";s:5:\"Hover\";}s:15:\"soft_dependency\";b:1;}s:28:\"before_after_transition_time\";a:9:{s:5:\"label\";s:27:\"Image Fade Transition Speed\";s:11:\"description\";s:69:\"Controls the speed of the fade transition on mouse hover. In seconds.\";s:2:\"id\";s:28:\"before_after_transition_time\";s:7:\"default\";s:3:\"0.5\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\"0.1\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:30:\"--before_after_transition_time\";}}s:15:\"soft_dependency\";b:1;}s:24:\"before_after_border_size\";a:8:{s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:65:\"Controls the border size of the image before &amp; after element.\";s:2:\"id\";s:24:\"before_after_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--before_after_border_size\";}}}s:25:\"before_after_border_color\";a:8:{s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:66:\"Controls the border color of the image before &amp; after element.\";s:2:\"id\";s:25:\"before_after_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:27:\"--before_after_border_color\";}}s:15:\"soft_dependency\";b:1;}s:26:\"before_after_border_radius\";a:9:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:67:\"Controls the border radius of the image before &amp; after element.\";s:2:\"id\";s:26:\"before_after_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:28:\"--before_after_border_radius\";}}s:15:\"soft_dependency\";b:1;}}}s:28:\"imageframe_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"imageframe_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-image\";s:6:\"fields\";a:6:{s:21:\"imageframe_style_type\";a:7:{s:5:\"label\";s:16:\"Image Style Type\";s:11:\"description\";s:22:\"Select the style type.\";s:2:\"id\";s:21:\"imageframe_style_type\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:4:\"glow\";s:4:\"Glow\";s:10:\"dropshadow\";s:11:\"Drop Shadow\";s:12:\"bottomshadow\";s:13:\"Bottom Shadow\";}}s:15:\"imageframe_blur\";a:8:{s:5:\"label\";s:29:\"Image Glow / Drop Shadow Blur\";s:11:\"description\";s:62:\"Choose the amount of blur added to glow or drop shadow effect.\";s:2:\"id\";s:15:\"imageframe_blur\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:20:\"imgframe_style_color\";a:7:{s:5:\"label\";s:17:\"Image Style Color\";s:11:\"description\";s:137:\"Controls the style color for all style types except border. Hex colors will use a subtle auto added alpha level to produce a nice effect.\";s:2:\"id\";s:20:\"imgframe_style_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:22:\"imageframe_border_size\";a:7:{s:5:\"label\";s:17:\"Image Border Size\";s:11:\"description\";s:38:\"Controls the border size of the image.\";s:2:\"id\";s:22:\"imageframe_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:21:\"imgframe_border_color\";a:7:{s:5:\"label\";s:18:\"Image Border Color\";s:11:\"description\";s:39:\"Controls the border color of the image.\";s:2:\"id\";s:21:\"imgframe_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:24:\"imageframe_border_radius\";a:7:{s:5:\"label\";s:19:\"Image Border Radius\";s:11:\"description\";s:40:\"Controls the border radius of the image.\";s:2:\"id\";s:24:\"imageframe_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:27:\"instagram_shortcode_section\";a:5:{s:5:\"label\";s:9:\"Instagram\";s:2:\"id\";s:27:\"instagram_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-instagram\";s:6:\"fields\";a:3:{s:15:\"instagram_oauth\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1332:\"<div id=\"fusion-instagram-content\" class=\"fusion-redux-important-notice\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"#\">Instagram element documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://api.instagram.com/oauth/authorize?response_type=code&client_id=678411916571642&redirect_uri=https://updates.theme-fusion.com/instagram-api&scope=user_profile,user_media&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"#\">Instagram element documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://api.instagram.com/oauth/authorize?response_type=code&client_id=678411916571642&redirect_uri=https://updates.theme-fusion.com/instagram-api&scope=user_profile,user_media&state=https%3A%2F%2Ftest-site.wlvrotary.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with Instagram</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with Instagram</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=avada&#038;revoke_instagram=1\">Revoke Access</a></div>\";s:2:\"id\";s:15:\"instagram_oauth\";s:4:\"type\";s:6:\"custom\";}s:23:\"instagram_cache_timeout\";a:6:{s:5:\"label\";s:19:\"Check For New Posts\";s:11:\"description\";s:42:\"Select when check instagram for new posts.\";s:2:\"id\";s:23:\"instagram_cache_timeout\";s:4:\"type\";s:6:\"select\";s:7:\"default\";s:4:\"hour\";s:7:\"choices\";a:5:{s:9:\"half_hour\";s:16:\"Every 30 Minutes\";s:4:\"hour\";s:10:\"Every Hour\";s:9:\"six_hours\";s:13:\"Every 6 Hours\";s:8:\"half_day\";s:14:\"Every 12 Hours\";s:3:\"day\";s:5:\"Daily\";}}s:22:\"reset_instagram_caches\";a:9:{s:5:\"label\";s:22:\"Reset Instagram Caches\";s:11:\"description\";s:25:\"Reset all Instagram data.\";s:2:\"id\";s:22:\"reset_instagram_caches\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:3:\"raw\";s:7:\"content\";s:174:\"<a class=\"button button-secondary\" href=\"#\" onclick=\"fusionResetInstagramCache(event);\" target=\"_self\" >Reset Instagram Caches</a><span class=\"spinner fusion-spinner\"></span>\";s:10:\"full_width\";b:0;s:9:\"transport\";s:11:\"postMessage\";s:13:\"hide_on_front\";b:1;}}}s:23:\"modal_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Modal\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"modal_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:21:\"fusiona-external-link\";s:6:\"fields\";a:2:{s:14:\"modal_bg_color\";a:6:{s:5:\"label\";s:22:\"Modal Background Color\";s:11:\"description\";s:53:\"Controls the background color of the modal popup box.\";s:2:\"id\";s:14:\"modal_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"modal_border_color\";a:6:{s:5:\"label\";s:18:\"Modal Border Color\";s:11:\"description\";s:49:\"Controls the border color of the modal popup box.\";s:2:\"id\";s:18:\"modal_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:24:\"person_shortcode_section\";a:6:{s:5:\"label\";s:6:\"Person\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:24:\"person_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-user\";s:6:\"fields\";a:11:{s:36:\"person_shortcode_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:238:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The styling options for the social icons used in the person element are controlled through the options under the \"Social Icon Elements\" section on this tab.</div>\";s:2:\"id\";s:36:\"person_shortcode_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"person_margin\";a:7:{s:5:\"label\";s:7:\"Margins\";s:11:\"description\";s:42:\"Controls the margin around person element.\";s:2:\"id\";s:13:\"person_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}s:23:\"person_background_color\";a:6:{s:5:\"label\";s:23:\"Person Background Color\";s:11:\"description\";s:49:\"Controls the background color of the person area.\";s:2:\"id\";s:23:\"person_background_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"person_pic_style\";a:7:{s:5:\"label\";s:25:\"Person Picture Style Type\";s:11:\"description\";s:22:\"Select the style type.\";s:2:\"id\";s:16:\"person_pic_style\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:4:\"glow\";s:4:\"Glow\";s:10:\"dropshadow\";s:11:\"Drop Shadow\";s:12:\"bottomshadow\";s:13:\"Bottom Shadow\";}}s:21:\"person_pic_style_blur\";a:8:{s:5:\"label\";s:38:\"Person Picture Glow / Drop Shadow Blur\";s:11:\"description\";s:62:\"Choose the amount of blur added to glow or drop shadow effect.\";s:2:\"id\";s:21:\"person_pic_style_blur\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"person_pic_style\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:16:\"person_pic_style\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:12:\"bottomshadow\";}}}s:18:\"person_style_color\";a:6:{s:5:\"label\";s:18:\"Person Style Color\";s:11:\"description\";s:59:\"Controls the style color for all style types except border.\";s:2:\"id\";s:18:\"person_style_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"person_border_color\";a:6:{s:5:\"label\";s:19:\"Person Border Color\";s:11:\"description\";s:46:\"Controls the border color of the person image.\";s:2:\"id\";s:19:\"person_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"person_border_size\";a:7:{s:5:\"label\";s:18:\"Person Border Size\";s:11:\"description\";s:45:\"Controls the border size of the person image.\";s:2:\"id\";s:18:\"person_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:20:\"person_border_radius\";a:7:{s:5:\"label\";s:20:\"Person Border Radius\";s:11:\"description\";s:47:\"Controls the border radius of the person image.\";s:2:\"id\";s:20:\"person_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"person_alignment\";a:7:{s:5:\"label\";s:24:\"Person Content Alignment\";s:11:\"description\";s:45:\"Controls the alignment of the person content.\";s:2:\"id\";s:16:\"person_alignment\";s:7:\"default\";s:4:\"Left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"Left\";s:4:\"Left\";s:6:\"Center\";s:6:\"Center\";s:5:\"Right\";s:5:\"Right\";}}s:20:\"person_icon_position\";a:7:{s:5:\"label\";s:27:\"Person Social Icon Position\";s:11:\"description\";s:42:\"Controls the position of the social icons.\";s:2:\"id\";s:20:\"person_icon_position\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"Top\";s:3:\"Top\";s:6:\"Bottom\";s:6:\"Bottom\";}}}}s:25:\"popover_shortcode_section\";a:6:{s:5:\"label\";s:7:\"Popover\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"popover_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-uniF61C\";s:6:\"fields\";a:5:{s:24:\"popover_heading_bg_color\";a:6:{s:5:\"label\";s:32:\"Popover Heading Background Color\";s:11:\"description\";s:53:\"Controls the color of the popover heading background.\";s:2:\"id\";s:24:\"popover_heading_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--popover_heading_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"popover_content_bg_color\";a:6:{s:5:\"label\";s:32:\"Popover Content Background Color\";s:11:\"description\";s:49:\"Controls the color of popover content background.\";s:2:\"id\";s:24:\"popover_content_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--popover_content_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"popover_border_color\";a:6:{s:5:\"label\";s:20:\"Popover Border Color\";s:11:\"description\";s:41:\"Controls the border color of popover box.\";s:2:\"id\";s:20:\"popover_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--popover_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"popover_text_color\";a:6:{s:5:\"label\";s:18:\"Popover Text Color\";s:11:\"description\";s:39:\"Controls the color of the popover text.\";s:2:\"id\";s:18:\"popover_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--popover_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"popover_placement\";a:6:{s:5:\"label\";s:16:\"Popover Position\";s:11:\"description\";s:76:\"Controls the position of the popover in reference to the triggering element.\";s:2:\"id\";s:17:\"popover_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:4:{s:3:\"Top\";s:3:\"Top\";s:5:\"Right\";s:5:\"Right\";s:6:\"Bottom\";s:6:\"Bottom\";s:4:\"Left\";s:4:\"Left\";}}}}s:27:\"portfolio_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Portfolio\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"portfolio_shortcode_section\";s:4:\"icon\";s:21:\"fusiona-insertpicture\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:16:{s:29:\"portfolio_featured_image_size\";a:7:{s:5:\"label\";s:29:\"Portfolio Featured Image Size\";s:11:\"description\";s:225:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for portfolio elements. <strong>IMPORTANT:</strong> Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:29:\"portfolio_featured_image_size\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:5:\"Fixed\";s:4:\"full\";s:4:\"Auto\";}}s:17:\"portfolio_columns\";a:7:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:173:\"Set the number of columns per row. With Carousel layout this specifies the maximum amount of columns. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:17:\"portfolio_columns\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}}s:24:\"portfolio_column_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:48:\"Controls the column spacing for portfolio items.\";s:2:\"id\";s:24:\"portfolio_column_spacing\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}}s:15:\"portfolio_items\";a:7:{s:5:\"label\";s:34:\"Number of Portfolio Items Per Page\";s:11:\"description\";s:164:\"Controls the number of posts that display per page for portfolio elements. Set to -1 to display all. Set to 0 to use the number of posts from Settings &gt; Reading.\";s:2:\"id\";s:15:\"portfolio_items\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"-1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:21:\"portfolio_text_layout\";a:7:{s:5:\"label\";s:21:\"Portfolio Text Layout\";s:11:\"description\";s:118:\"Controls if the portfolio text content is displayed boxed or unboxed or is completely disabled for portfolio elements.\";s:2:\"id\";s:21:\"portfolio_text_layout\";s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:5:\"boxed\";s:5:\"Boxed\";s:7:\"unboxed\";s:7:\"Unboxed\";}}s:24:\"portfolio_content_length\";a:7:{s:5:\"label\";s:22:\"Portfolio Text Display\";s:11:\"description\";s:97:\"Choose how to display the post excerpt for portfolio elements. Does not apply to image rollovers.\";s:2:\"id\";s:24:\"portfolio_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:12:\"full_content\";s:12:\"Full Content\";s:7:\"excerpt\";s:7:\"Excerpt\";s:7:\"no_text\";s:7:\"No Text\";}}s:24:\"portfolio_excerpt_length\";a:8:{s:5:\"label\";s:14:\"Excerpt Length\";s:11:\"description\";s:68:\"Controls the number of words in the excerpts for portfolio elements.\";s:2:\"id\";s:24:\"portfolio_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:28:\"portfolio_strip_html_excerpt\";a:6:{s:5:\"label\";s:23:\"Strip HTML from Excerpt\";s:11:\"description\";s:70:\"Turn on to strip HTML content from the excerpt for portfolio elements.\";s:2:\"id\";s:28:\"portfolio_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"portfolio_title_display\";a:7:{s:5:\"label\";s:23:\"Portfolio Title Display\";s:11:\"description\";s:76:\"Controls what displays with the portfolio post title for portfolio elements.\";s:2:\"id\";s:23:\"portfolio_title_display\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"all\";s:20:\"Title and Categories\";s:5:\"title\";s:10:\"Only Title\";s:4:\"cats\";s:15:\"Only Categories\";s:4:\"none\";s:4:\"None\";}}s:24:\"portfolio_text_alignment\";a:7:{s:5:\"label\";s:24:\"Portfolio Text Alignment\";s:11:\"description\";s:135:\"Controls the alignment of the portfolio title, categories and excerpt text when using the Portfolio Text layouts in portfolio elements.\";s:2:\"id\";s:24:\"portfolio_text_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}}s:24:\"portfolio_layout_padding\";a:8:{s:5:\"label\";s:29:\"Portfolio Text Layout Padding\";s:11:\"description\";s:95:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio elements.\";s:2:\"id\";s:24:\"portfolio_layout_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:74:\".fusion-portfolio-boxed.fusion-portfolio-element .fusion-portfolio-content\";s:8:\"property\";s:7:\"padding\";}}}s:25:\"portfolio_pagination_type\";a:7:{s:5:\"label\";s:15:\"Pagination Type\";s:11:\"description\";s:52:\"Controls the pagination type for portfolio elements.\";s:2:\"id\";s:25:\"portfolio_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}}s:49:\"portfolio_element_load_more_posts_button_bg_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:99:\"Controls the background color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:49:\"portfolio_element_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:51:\"--portfolio_element_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:51:\"portfolio_element_load_more_posts_button_text_color\";a:6:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:93:\"Controls the text color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:51:\"portfolio_element_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:53:\"--portfolio_element_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";a:6:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:105:\"Controls the hover background color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:57:\"--portfolio_element_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:99:\"Controls the hover text color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:59:\"--portfolio_element_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:31:\"pricing_table_shortcode_section\";a:6:{s:5:\"label\";s:13:\"Pricing Table\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:31:\"pricing_table_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-dollar\";s:6:\"fields\";a:7:{s:36:\"full_boxed_pricing_box_heading_color\";a:6:{s:5:\"label\";s:33:\"Pricing Box Style 1 Heading Color\";s:11:\"description\";s:53:\"Controls the color of style 1 pricing table headings.\";s:2:\"id\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"sep_pricing_box_heading_color\";a:6:{s:5:\"label\";s:33:\"Pricing Box Style 2 Heading Color\";s:11:\"description\";s:53:\"Controls the color of style 2 pricing table headings.\";s:2:\"id\";s:29:\"sep_pricing_box_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"pricing_box_color\";a:6:{s:5:\"label\";s:17:\"Pricing Box Color\";s:11:\"description\";s:45:\"Controls the color portions of pricing boxes.\";s:2:\"id\";s:17:\"pricing_box_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--pricing_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"pricing_bg_color\";a:6:{s:5:\"label\";s:28:\"Pricing Box Background Color\";s:11:\"description\";s:63:\"Controls the color of the main background and title background.\";s:2:\"id\";s:16:\"pricing_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:30:\"pricing_background_color_hover\";a:6:{s:5:\"label\";s:34:\"Pricing Box Background Hover Color\";s:11:\"description\";s:69:\"Controls the hover color of the main background and title background.\";s:2:\"id\";s:30:\"pricing_background_color_hover\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"pricing_border_color\";a:6:{s:5:\"label\";s:24:\"Pricing Box Border Color\";s:11:\"description\";s:79:\"Controls the color of the outer border, pricing row and footer row backgrounds.\";s:2:\"id\";s:20:\"pricing_border_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"pricing_divider_color\";a:6:{s:5:\"label\";s:25:\"Pricing Box Divider Color\";s:11:\"description\";s:59:\"Controls the color of the dividers in-between pricing rows.\";s:2:\"id\";s:21:\"pricing_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:26:\"progress_shortcode_section\";a:6:{s:5:\"label\";s:12:\"Progress Bar\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"progress_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-tasks\";s:6:\"fields\";a:7:{s:25:\"progressbar_text_position\";a:7:{s:5:\"label\";s:26:\"Progress Bar Text Position\";s:11:\"description\";s:102:\"Select the position of the progress bar text. Choose &quot;Default&quot; for Global Options selection.\";s:2:\"id\";s:25:\"progressbar_text_position\";s:7:\"default\";s:6:\"on_bar\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:6:\"on_bar\";s:6:\"On Bar\";s:9:\"above_bar\";s:9:\"Above Bar\";s:9:\"below_bar\";s:9:\"Below Bar\";}}s:22:\"progressbar_text_color\";a:7:{s:5:\"label\";s:23:\"Progress Bar Text Color\";s:11:\"description\";s:44:\"Controls the color of the progress bar text.\";s:2:\"id\";s:22:\"progressbar_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--progressbar_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"progressbar_height\";a:7:{s:5:\"label\";s:19:\"Progress Bar Height\";s:11:\"description\";s:37:\"Insert a height for the progress bar.\";s:2:\"id\";s:18:\"progressbar_height\";s:7:\"default\";s:4:\"48px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:20:\"--progressbar_height\";}}}s:24:\"progressbar_filled_color\";a:7:{s:5:\"label\";s:25:\"Progress Bar Filled Color\";s:11:\"description\";s:51:\"Controls the color of the progress bar filled area.\";s:2:\"id\";s:24:\"progressbar_filled_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--progressbar_filled_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"progressbar_unfilled_color\";a:7:{s:5:\"label\";s:27:\"Progress Bar Unfilled Color\";s:11:\"description\";s:53:\"Controls the color of the progress bar unfilled area.\";s:2:\"id\";s:26:\"progressbar_unfilled_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--progressbar_unfilled_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"progressbar_filled_border_size\";a:8:{s:5:\"label\";s:31:\"Progress Bar Filled Border Size\";s:11:\"description\";s:57:\"Controls the border size of the progress bar filled area.\";s:2:\"id\";s:30:\"progressbar_filled_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--progressbar_filled_border_size\";s:8:\"callback\";a:1:{i:0;s:15:\"maybe_append_px\";}}}}s:31:\"progressbar_filled_border_color\";a:7:{s:5:\"label\";s:32:\"Progress Bar Filled Border Color\";s:11:\"description\";s:58:\"Controls the border color of the progress bar filled area.\";s:2:\"id\";s:31:\"progressbar_filled_border_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--progressbar_filled_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:33:\"scroll_progress_shortcode_section\";a:7:{s:5:\"label\";s:15:\"Scroll Progress\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:33:\"scroll_progress_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:23:\"fusiona-scroll-progress\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:7:{s:24:\"scroll_progress_position\";a:7:{s:5:\"label\";s:21:\"Progress Bar Position\";s:11:\"description\";s:41:\"Select the position of the progress bar..\";s:2:\"id\";s:24:\"scroll_progress_position\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"flow\";s:7:\"choices\";a:3:{s:4:\"flow\";s:12:\"Content Flow\";s:3:\"top\";s:12:\"Fixed to Top\";s:6:\"bottom\";s:15:\"Fixed to Bottom\";}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"scroll_progress_height\";a:6:{s:5:\"label\";s:19:\"Progress Bar Height\";s:11:\"description\";s:37:\"Insert a height for the progress bar.\";s:2:\"id\";s:22:\"scroll_progress_height\";s:7:\"default\";s:4:\"10px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:32:\"scroll_progress_background_color\";a:6:{s:5:\"label\";s:16:\"Background Color\";s:11:\"description\";s:50:\"Controls the background color of the progress bar.\";s:2:\"id\";s:32:\"scroll_progress_background_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:30:\"scroll_progress_progress_color\";a:6:{s:5:\"label\";s:14:\"Progress Color\";s:11:\"description\";s:39:\"Controls the color of the progress bar.\";s:2:\"id\";s:30:\"scroll_progress_progress_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"scroll_progress_border_size\";a:7:{s:5:\"label\";s:24:\"Progress Bar Border Size\";s:11:\"description\";s:45:\"Controls the border size of the progress bar.\";s:2:\"id\";s:27:\"scroll_progress_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:28:\"scroll_progress_border_color\";a:6:{s:5:\"label\";s:25:\"Progress Bar Border Color\";s:11:\"description\";s:46:\"Controls the border color of the progress bar.\";s:2:\"id\";s:28:\"scroll_progress_border_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"scroll_progress_border_radius\";a:7:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:42:\"Set the border radius of the progress bar.\";s:2:\"id\";s:29:\"scroll_progress_border_radius\";s:4:\"type\";s:13:\"border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:35:\"section_separator_shortcode_section\";a:6:{s:5:\"label\";s:17:\"Section Separator\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:35:\"section_separator_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:16:\"fusiona-ellipsis\";s:6:\"fields\";a:3:{s:23:\"section_sep_border_size\";a:7:{s:5:\"label\";s:29:\"Section Separator Border Size\";s:11:\"description\";s:50:\"Controls the border size of the section separator.\";s:2:\"id\";s:23:\"section_sep_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:14:\"section_sep_bg\";a:6:{s:5:\"label\";s:34:\"Section Separator Background Color\";s:11:\"description\";s:61:\"Controls the background color of the section separator style.\";s:2:\"id\";s:14:\"section_sep_bg\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"section_sep_border_color\";a:6:{s:5:\"label\";s:30:\"Section Separator Border Color\";s:11:\"description\";s:43:\"Controls the border color of the separator.\";s:2:\"id\";s:24:\"section_sep_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:27:\"separator_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Separator\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"separator_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-minus\";s:6:\"fields\";a:7:{s:20:\"separator_style_type\";a:7:{s:5:\"label\";s:15:\"Separator Style\";s:11:\"description\";s:121:\"Controls the line style of all separators, divider lines on portfolio archives, blog archives, product archives and more.\";s:2:\"id\";s:20:\"separator_style_type\";s:7:\"default\";s:6:\"double\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:8:{s:4:\"none\";s:8:\"No Style\";s:6:\"single\";s:19:\"Single Border Solid\";s:6:\"double\";s:19:\"Double Border Solid\";s:13:\"single|dashed\";s:20:\"Single Border Dashed\";s:13:\"double|dashed\";s:20:\"Double Border Dashed\";s:13:\"single|dotted\";s:20:\"Single Border Dotted\";s:13:\"double|dotted\";s:20:\"Double Border Dotted\";s:6:\"shadow\";s:6:\"Shadow\";}}s:9:\"sep_color\";a:7:{s:5:\"label\";s:15:\"Separator Color\";s:11:\"description\";s:216:\"Controls the color of all separators, divider lines and borders for meta, previous &amp; next, filters, archive pages, boxes around number pagination, sidebar widgets, accordion divider lines, counter boxes and more.\";s:2:\"id\";s:9:\"sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:11:\"--sep_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"separator_border_size\";a:7:{s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:42:\"Controls the border size of the separator.\";s:2:\"id\";s:21:\"separator_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:19:\"separator_icon_size\";a:7:{s:5:\"label\";s:9:\"Icon Size\";s:11:\"description\";s:40:\"Controls the icon size of the separator.\";s:2:\"id\";s:19:\"separator_icon_size\";s:7:\"default\";s:2:\"16\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}}s:20:\"separator_icon_color\";a:6:{s:5:\"label\";s:10:\"Icon Color\";s:11:\"description\";s:30:\"Controls the color of the Icon\";s:2:\"id\";s:20:\"separator_icon_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"separator_circle\";a:6:{s:5:\"label\";s:16:\"Separator Circle\";s:11:\"description\";s:66:\"Turn on if you want to display a circle around the separator icon.\";s:2:\"id\";s:16:\"separator_circle\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:25:\"separator_circle_bg_color\";a:7:{s:5:\"label\";s:12:\"Circle Color\";s:11:\"description\";s:60:\"Controls the background color of the circle around the icon.\";s:2:\"id\";s:25:\"separator_circle_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"separator_circle\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}}}s:30:\"social_links_shortcode_section\";a:6:{s:5:\"label\";s:20:\"Social Links Element\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:30:\"social_links_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-link\";s:6:\"fields\";a:15:{s:17:\"social_links_info\";a:3:{s:2:\"id\";s:17:\"social_links_info\";s:4:\"type\";s:6:\"custom\";s:11:\"description\";s:171:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These social icon global options control both the social link element and person element.</div>\";}s:19:\"social_links_margin\";a:7:{s:5:\"label\";s:7:\"Margins\";s:11:\"description\";s:48:\"Controls the margin around social links element.\";s:2:\"id\";s:19:\"social_links_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}s:30:\"social_links_tooltip_placement\";a:7:{s:5:\"label\";s:35:\"Social Links Icons Tooltip Position\";s:11:\"description\";s:56:\"Controls the tooltip position of the social links icons.\";s:2:\"id\";s:30:\"social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:3:\"Top\";s:3:\"Top\";s:5:\"Right\";s:5:\"Right\";s:6:\"Bottom\";s:6:\"Bottom\";s:4:\"Left\";s:4:\"Left\";s:4:\"None\";s:4:\"None\";}}s:22:\"social_links_font_size\";a:6:{s:5:\"label\";s:15:\"Icons Font Size\";s:11:\"description\";s:49:\"Controls the font size for the social link icons.\";s:2:\"id\";s:22:\"social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--social_links_font_size\";s:7:\"element\";s:20:\".fusion-social-links\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}}}s:23:\"social_links_color_type\";a:7:{s:5:\"label\";s:15:\"Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:23:\"social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}}s:23:\"social_links_icon_color\";a:7:{s:5:\"label\";s:11:\"Icons Color\";s:11:\"description\";s:39:\"Controls the color of the custom icons.\";s:2:\"id\";s:23:\"social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:29:\"social_links_icon_color_hover\";a:7:{s:5:\"label\";s:17:\"Icons Hover Color\";s:11:\"description\";s:48:\"Controls the color of the custom icons on hover.\";s:2:\"id\";s:29:\"social_links_icon_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:18:\"social_links_boxed\";a:6:{s:5:\"label\";s:11:\"Boxed Style\";s:11:\"description\";s:99:\"Turn on to have the icon displayed in a small box. Turn off to have the icon displayed with no box.\";s:2:\"id\";s:18:\"social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:26:\"social_links_boxed_padding\";a:7:{s:5:\"label\";s:13:\"Boxed Padding\";s:2:\"id\";s:26:\"social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--social_links_boxed_padding\";s:7:\"element\";s:20:\".fusion-social-links\";}}}s:22:\"social_links_box_color\";a:7:{s:5:\"label\";s:14:\"Box Background\";s:11:\"description\";s:49:\"Select a custom social icon box background color.\";s:2:\"id\";s:22:\"social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:28:\"social_links_box_color_hover\";a:7:{s:5:\"label\";s:20:\"Box Hover Background\";s:11:\"description\";s:58:\"Select a custom social icon box background color on hover.\";s:2:\"id\";s:28:\"social_links_box_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:19:\"social_links_border\";a:7:{s:5:\"label\";s:15:\"Box Border Size\";s:11:\"description\";s:45:\"Controls the borders size of social icon box.\";s:2:\"id\";s:19:\"social_links_border\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}s:25:\"social_links_boxed_radius\";a:8:{s:5:\"label\";s:10:\"Box Radius\";s:11:\"description\";s:32:\"Box radius for the social icons.\";s:2:\"id\";s:25:\"social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:25:\"social_links_border_color\";a:7:{s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:46:\"Controls the borders color of social icon box.\";s:2:\"id\";s:25:\"social_links_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:31:\"social_links_border_color_hover\";a:7:{s:5:\"label\";s:18:\"Border Hover Color\";s:11:\"description\";s:55:\"Controls the borders color of social icon box on hover.\";s:2:\"id\";s:31:\"social_links_border_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}}}s:31:\"stripe_button_shortcode_section\";a:5:{s:5:\"label\";s:13:\"Stripe Button\";s:2:\"id\";s:31:\"stripe_button_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:19:\"fusiona-check-empty\";s:6:\"fields\";a:6:{s:43:\"stripe_button_shortcode_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:245:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Insert API keys to authenticate requests with Stripe. You can find the keys in <a href=\"https://stripe.com/docs/keys\" target=\"_blank\">Stripe Account Dashboard</a>.</div>\";s:2:\"id\";s:43:\"stripe_button_shortcode_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:22:\"stripe_button_api_mode\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:8:\"API Mode\";s:11:\"description\";s:80:\"Build your integration in Test mode, and switch to Live mode when you are ready.\";s:2:\"id\";s:22:\"stripe_button_api_mode\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:4:\"live\";s:4:\"Live\";s:4:\"test\";s:4:\"Test\";}s:7:\"default\";s:4:\"test\";}s:29:\"stripe_button_test_secret_key\";a:5:{s:5:\"label\";s:22:\"Stripe Test Secret Key\";s:11:\"description\";s:159:\"Enter your Stripe Test Secret Key. For more information please see <a href=\"https://stripe.com/docs/keys#obtain-api-keys\" target=\"_blank\">Stripe API Guide</a>.\";s:2:\"id\";s:29:\"stripe_button_test_secret_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";}s:30:\"stripe_button_validate_test_sk\";a:8:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:23:\"Test Secret Key Status.\";s:2:\"id\";s:30:\"stripe_button_validate_test_sk\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:3:\"raw\";s:7:\"content\";s:182:\"<a class=\"button button-secondary\" href=\"#\" onclick=\"awbValidateStripeApiKey(event);\" data-mode=\"test\" target=\"_self\" >Test Connection</a><span class=\"spinner fusion-spinner\"></span>\";s:10:\"full_width\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:29:\"stripe_button_live_secret_key\";a:5:{s:5:\"label\";s:22:\"Stripe Live Secret Key\";s:11:\"description\";s:152:\"Enter your Live Secret Key. For more information please see <a href=\"https://stripe.com/docs/keys#obtain-api-keys\" target=\"_blank\">Stripe API Guide</a>.\";s:2:\"id\";s:29:\"stripe_button_live_secret_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";}s:30:\"stripe_button_validate_live_sk\";a:8:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:23:\"Live Secret Key Status.\";s:2:\"id\";s:30:\"stripe_button_validate_live_sk\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:3:\"raw\";s:7:\"content\";s:182:\"<a class=\"button button-secondary\" href=\"#\" onclick=\"awbValidateStripeApiKey(event);\" data-mode=\"live\" target=\"_self\" >Test Connection</a><span class=\"spinner fusion-spinner\"></span>\";s:10:\"full_width\";b:0;s:9:\"transport\";s:11:\"postMessage\";}}}s:36:\"syntax_highlighter_shortcode_section\";a:7:{s:5:\"label\";s:18:\"Syntax Highlighter\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:36:\"syntax_highlighter_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-code\";s:6:\"fields\";a:13:{s:24:\"syntax_highlighter_theme\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:17:\"Highlighter Theme\";s:11:\"description\";s:57:\"Select which theme you want to use for code highlighting.\";s:2:\"id\";s:24:\"syntax_highlighter_theme\";s:7:\"choices\";a:4:{s:7:\"default\";s:7:\"Light 1\";s:7:\"elegant\";s:7:\"Light 2\";s:9:\"hopscotch\";s:6:\"Dark 1\";s:12:\"oceanic-next\";s:6:\"Dark 2\";}s:7:\"default\";s:7:\"default\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"syntax_highlighter_line_numbers\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:12:\"Line Numbers\";s:11:\"description\";s:51:\"Choose if you want to display or hide line numbers.\";s:2:\"id\";s:31:\"syntax_highlighter_line_numbers\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"default\";s:3:\"yes\";}s:47:\"syntax_highlighter_line_number_background_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:29:\"Line Numbers Background Color\";s:11:\"description\";s:106:\"Controls the background color for the line numbers. If left empty, color from selected theme will be used.\";s:2:\"id\";s:47:\"syntax_highlighter_line_number_background_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"syntax_highlighter_line_numbers\";s:5:\"value\";s:3:\"yes\";s:8:\"operator\";s:2:\"==\";}}}s:41:\"syntax_highlighter_line_number_text_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:23:\"Line Numbers Text Color\";s:11:\"description\";s:95:\"Controls the color for line number text. If left empty, color from selected theme will be used.\";s:2:\"id\";s:41:\"syntax_highlighter_line_number_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"syntax_highlighter_line_numbers\";s:5:\"value\";s:3:\"yes\";s:8:\"operator\";s:2:\"==\";}}}s:32:\"syntax_highlighter_line_wrapping\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:13:\"Line Wrapping\";s:11:\"description\";s:69:\"Controls whether the long line should break or add horizontal scroll.\";s:2:\"id\";s:32:\"syntax_highlighter_line_wrapping\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:6:\"scroll\";s:6:\"Scroll\";s:5:\"break\";s:5:\"Break\";}s:7:\"default\";s:6:\"scroll\";}s:36:\"syntax_highlighter_copy_to_clipboard\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:17:\"Copy to Clipboard\";s:11:\"description\";s:94:\"Choose if you want to allow your visitors to easily copy your code with a click of the button.\";s:2:\"id\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"default\";s:3:\"yes\";}s:41:\"syntax_highlighter_copy_to_clipboard_text\";a:7:{s:4:\"type\";s:4:\"text\";s:5:\"label\";s:22:\"Copy to Clipboard Text\";s:11:\"description\";s:53:\"Enter text to be displayed for user to click to copy.\";s:2:\"id\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:7:\"default\";s:17:\"Copy to Clipboard\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:5:\"value\";s:3:\"yes\";s:8:\"operator\";s:2:\"==\";}}}s:28:\"syntax_highlighter_font_size\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:9:\"Font Size\";s:11:\"description\";s:52:\"Controls the font size of the syntax highlight code.\";s:2:\"id\";s:28:\"syntax_highlighter_font_size\";s:7:\"default\";s:2:\"14\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}}s:35:\"syntax_highlighter_background_color\";a:6:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:16:\"Background Color\";s:11:\"description\";s:54:\"Controls the background color for code highlight area.\";s:2:\"id\";s:35:\"syntax_highlighter_background_color\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";s:17:\"var(--awb-color1)\";}s:30:\"syntax_highlighter_border_size\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:62:\"Controls the border size of the syntax highlighter. In pixels.\";s:2:\"id\";s:30:\"syntax_highlighter_border_size\";s:7:\"default\";s:1:\"1\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:31:\"syntax_highlighter_border_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:26:\"Controls the border color.\";s:2:\"id\";s:31:\"syntax_highlighter_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"syntax_highlighter_border_size\";s:5:\"value\";s:1:\"0\";s:8:\"operator\";s:2:\"!=\";}}}s:31:\"syntax_highlighter_border_style\";a:8:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:12:\"Border Style\";s:11:\"description\";s:26:\"Controls the border style.\";s:2:\"id\";s:31:\"syntax_highlighter_border_style\";s:7:\"default\";s:5:\"solid\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"syntax_highlighter_border_size\";s:5:\"value\";s:1:\"0\";s:8:\"operator\";s:2:\"!=\";}}s:7:\"choices\";a:3:{s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";}}s:25:\"syntax_highlighter_margin\";a:7:{s:5:\"label\";s:7:\"Margins\";s:11:\"description\";s:54:\"Controls the margin around syntax highlighter element.\";s:2:\"id\";s:25:\"syntax_highlighter_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}}}s:22:\"tabs_shortcode_section\";a:6:{s:5:\"label\";s:4:\"Tabs\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"tabs_shortcode_section\";s:4:\"icon\";s:14:\"fusiona-folder\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:16:{s:9:\"tabs_info\";a:3:{s:2:\"id\";s:17:\"social_links_info\";s:4:\"type\";s:6:\"custom\";s:11:\"description\";s:200:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These tab global options control both the tab element and Avada tab widget, however the widget does not utilize icons.</div>\";}s:13:\"tabs_bg_color\";a:7:{s:5:\"label\";s:35:\"Tabs Background Color + Hover Color\";s:11:\"description\";s:71:\"Controls the color of the active tab, tab hover and content background.\";s:2:\"id\";s:13:\"tabs_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"--tabs_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"tabs_inactive_color\";a:7:{s:5:\"label\";s:19:\"Tabs Inactive Color\";s:11:\"description\";s:101:\"Controls the color of the inactive tabs as well as the post date box layout for the Avada Tab Widget.\";s:2:\"id\";s:19:\"tabs_inactive_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--tabs_inactive_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"tabs_title_border_radius\";a:8:{s:5:\"label\";s:24:\"Tabs Title Border Radius\";s:11:\"description\";s:41:\"Controls the border radius of tabs title.\";s:2:\"id\";s:24:\"tabs_title_border_radius\";s:4:\"type\";s:13:\"border_radius\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:47:\"--awb-tabs-title-border-top-left-radius-default\";s:6:\"choice\";s:8:\"top_left\";s:7:\"element\";s:4:\"body\";}i:1;a:3:{s:4:\"name\";s:48:\"--awb-tabs-title-border-top-right-radius-default\";s:6:\"choice\";s:9:\"top_right\";s:7:\"element\";s:4:\"body\";}i:2;a:3:{s:4:\"name\";s:51:\"--awb-tabs-title-border-bottom-right-radius-default\";s:6:\"choice\";s:12:\"bottom_right\";s:7:\"element\";s:4:\"body\";}i:3;a:3:{s:4:\"name\";s:50:\"--awb-tabs-title-border-bottom-left-radius-default\";s:6:\"choice\";s:11:\"bottom_left\";s:7:\"element\";s:4:\"body\";}}}s:17:\"tabs_border_color\";a:7:{s:5:\"label\";s:17:\"Tabs Border Color\";s:11:\"description\";s:37:\"Controls the color of the tab border.\";s:2:\"id\";s:17:\"tabs_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--tabs_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"tabs_title_padding\";a:7:{s:5:\"label\";s:18:\"Tabs Title Padding\";s:11:\"description\";s:35:\"Controls the padding of tabs title.\";s:2:\"id\";s:18:\"tabs_title_padding\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:4:\"left\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:5:\"right\";s:0:\"\";}}s:20:\"tabs_content_padding\";a:7:{s:5:\"label\";s:20:\"Tabs Content Padding\";s:11:\"description\";s:37:\"Controls the padding of tabs content.\";s:2:\"id\";s:20:\"tabs_content_padding\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:4:\"left\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:5:\"right\";s:0:\"\";}}s:18:\"tabs_icon_position\";a:7:{s:5:\"label\";s:13:\"Icon Position\";s:11:\"description\";s:43:\"Choose the position of the icon on the tab.\";s:2:\"id\";s:18:\"tabs_icon_position\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";s:3:\"top\";s:3:\"Top\";}}s:14:\"tabs_icon_size\";a:7:{s:5:\"label\";s:14:\"Tabs Icon Size\";s:11:\"description\";s:25:\"Set the size of the icon.\";s:2:\"id\";s:14:\"tabs_icon_size\";s:7:\"default\";s:2:\"16\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"150\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";}s:15:\"tabs_icon_color\";a:5:{s:5:\"label\";s:15:\"Tabs Icon Color\";s:11:\"description\";s:26:\"Set the color of the icon.\";s:2:\"id\";s:15:\"tabs_icon_color\";s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:11:\"color-alpha\";}s:22:\"tabs_icon_active_color\";a:5:{s:5:\"label\";s:21:\"Active Tab Icon Color\";s:11:\"description\";s:37:\"Set the color of the active tab icon.\";s:2:\"id\";s:22:\"tabs_icon_active_color\";s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:11:\"color-alpha\";}s:16:\"tabs_title_color\";a:5:{s:5:\"label\";s:16:\"Tabs Title Color\";s:11:\"description\";s:32:\"Set the color of the tabs title.\";s:2:\"id\";s:16:\"tabs_title_color\";s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:11:\"color-alpha\";}s:23:\"tabs_active_title_color\";a:5:{s:5:\"label\";s:23:\"Tabs Active Title Color\";s:11:\"description\";s:39:\"Set the color of the tabs active title.\";s:2:\"id\";s:23:\"tabs_active_title_color\";s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:11:\"color-alpha\";}s:22:\"tabs_mobile_breakpoint\";a:7:{s:5:\"label\";s:22:\"Tabs Mobile Breakpoint\";s:11:\"description\";s:48:\"Choose when the tabs will switch to mobile mode.\";s:2:\"id\";s:22:\"tabs_mobile_breakpoint\";s:7:\"default\";s:6:\"medium\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:6:\"medium\";s:6:\"Medium\";s:5:\"small\";s:5:\"Small\";}}s:16:\"tabs_mobile_mode\";a:7:{s:5:\"label\";s:16:\"Tabs Mobile Mode\";s:11:\"description\";s:123:\"Choose the tabs mode for mobile devices. Carousel will be come active only, if tabs don&#039;t fit the device screen width.\";s:2:\"id\";s:16:\"tabs_mobile_mode\";s:7:\"default\";s:9:\"accordion\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:9:\"accordion\";s:9:\"Accordion\";s:6:\"toggle\";s:6:\"Toggle\";s:8:\"carousel\";s:8:\"Carousel\";}}s:23:\"tabs_mobile_sticky_tabs\";a:7:{s:5:\"label\";s:18:\"Mobile Sticky Tabs\";s:11:\"description\";s:72:\"Set tabs to sticky for carousel mode on mobile, useful for long content.\";s:2:\"id\";s:23:\"tabs_mobile_sticky_tabs\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}}}s:26:\"tagcloud_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Tag Cloud\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"tagcloud_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:16:\"fusiona-list-alt\";s:6:\"fields\";a:6:{s:11:\"tagcloud_bg\";a:7:{s:5:\"label\";s:21:\"Tags Background Color\";s:11:\"description\";s:40:\"Choose the background color of the tags.\";s:2:\"id\";s:11:\"tagcloud_bg\";s:7:\"default\";s:22:\"rgba(255, 255, 255, 0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:11:\"--tag-color\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"tagcloud_bg_hover\";a:7:{s:5:\"label\";s:27:\"Tags Background Hover Color\";s:11:\"description\";s:46:\"Choose the background hover color of the tags.\";s:2:\"id\";s:17:\"tagcloud_bg_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--tag-color-hover\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:14:\"tagcloud_color\";a:7:{s:5:\"label\";s:15:\"Tags Text Color\";s:11:\"description\";s:34:\"Choose the text color of the tags.\";s:2:\"id\";s:14:\"tagcloud_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--tag-text-color\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"tagcloud_color_hover\";a:7:{s:5:\"label\";s:21:\"Tags Text Hover Color\";s:11:\"description\";s:40:\"Choose the text hover color of the tags.\";s:2:\"id\";s:20:\"tagcloud_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--tag-text-color-hover\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"tagcloud_border_color\";a:7:{s:5:\"label\";s:17:\"Tags Border Color\";s:11:\"description\";s:35:\"Choose the boder color of the tags.\";s:2:\"id\";s:21:\"tagcloud_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--tag-border-color\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"tagcloud_border_color_hover\";a:7:{s:5:\"label\";s:23:\"Tags Border Hover Color\";s:11:\"description\";s:41:\"Choose the boder hover color of the tags.\";s:2:\"id\";s:27:\"tagcloud_border_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--tag-border-color-hover\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:29:\"tagline_box_shortcode_section\";a:6:{s:5:\"label\";s:11:\"Tagline Box\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"tagline_box_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:16:\"fusiona-list-alt\";s:6:\"fields\";a:3:{s:10:\"tagline_bg\";a:6:{s:5:\"label\";s:28:\"Tagline Box Background Color\";s:11:\"description\";s:49:\"Controls the color of the tagline box background.\";s:2:\"id\";s:10:\"tagline_bg\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"tagline_border_color\";a:6:{s:5:\"label\";s:24:\"Tagline Box Border Color\";s:11:\"description\";s:45:\"Controls the border color of the tagline box.\";s:2:\"id\";s:20:\"tagline_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"tagline_margin\";a:7:{s:5:\"label\";s:30:\"Tagline Box Top/Bottom Margins\";s:11:\"description\";s:50:\"Controls the top/bottom margin of the tagline box.\";s:2:\"id\";s:14:\"tagline_margin\";s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}}}}s:30:\"testimonials_shortcode_section\";a:6:{s:5:\"label\";s:12:\"Testimonials\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:30:\"testimonials_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-bubbles\";s:6:\"fields\";a:4:{s:20:\"testimonial_bg_color\";a:6:{s:5:\"label\";s:28:\"Testimonial Background Color\";s:11:\"description\";s:49:\"Controls the color of the testimonial background.\";s:2:\"id\";s:20:\"testimonial_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--testimonial_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"testimonial_text_color\";a:6:{s:5:\"label\";s:22:\"Testimonial Text Color\";s:11:\"description\";s:43:\"Controls the color of the testimonial text.\";s:2:\"id\";s:22:\"testimonial_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--testimonial_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"testimonials_speed\";a:6:{s:5:\"label\";s:18:\"Testimonials Speed\";s:11:\"description\";s:160:\"Controls the speed of the testimonial slider. ex: 1000 = 1 second. <strong>IMPORTANT:</strong> Setting speed to 0 will disable autoplay for testimonials slider.\";s:2:\"id\";s:18:\"testimonials_speed\";s:7:\"default\";s:4:\"4000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}}s:19:\"testimonials_random\";a:5:{s:5:\"label\";s:12:\"Random Order\";s:11:\"description\";s:50:\"Turn on to display testimonials in a random order.\";s:2:\"id\";s:19:\"testimonials_random\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}}}s:22:\"text_shortcode_section\";a:6:{s:5:\"label\";s:10:\"Text Block\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"text_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-font\";s:6:\"fields\";a:6:{s:12:\"text_columns\";a:8:{s:5:\"label\";s:24:\"Number Of Inline Columns\";s:11:\"description\";s:278:\"Set the number of columns the text should be broken into.<br />IMPORTANT: This feature is designed to be used for running text, images, dropcaps and other inline content. While some block elements will work, their usage is not recommended and others can easily break the layout.\";s:2:\"id\";s:12:\"text_columns\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:14:\"--text_columns\";}}}s:21:\"text_column_min_width\";a:8:{s:5:\"label\";s:16:\"Column Min Width\";s:11:\"description\";s:230:\"Set the minimum width for each column, this allows your columns to gracefully break into the selected size as the screen width narrows. Leave this option empty if you wish to keep the same amount of columns from desktop to mobile.\";s:2:\"id\";s:21:\"text_column_min_width\";s:7:\"default\";s:5:\"100px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--text_column_min_width\";}}}s:19:\"text_column_spacing\";a:8:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:59:\"Controls the column spacing between one column to the next.\";s:2:\"id\";s:19:\"text_column_spacing\";s:7:\"default\";s:3:\"2em\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--text_column_spacing\";}}}s:15:\"text_rule_style\";a:9:{s:5:\"label\";s:10:\"Rule Style\";s:11:\"description\";s:108:\"Select the style of the vertical line between columns. Some of the styles depend on the rule size and color.\";s:2:\"id\";s:15:\"text_rule_style\";s:7:\"default\";s:4:\"none\";s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:4:\"none\";s:4:\"None\";s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"double\";s:6:\"Double\";s:6:\"groove\";s:6:\"Groove\";s:5:\"ridge\";s:5:\"Ridge\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:17:\"--text_rule_style\";}}}s:14:\"text_rule_size\";a:8:{s:5:\"label\";s:9:\"Rule Size\";s:11:\"description\";s:206:\"Sets the size of the vertical line between columns. The rule is rendered as &quot;below&quot; spacing and columns, so it can span over the gap between columns if it is larger than the column spacing amount.\";s:2:\"id\";s:14:\"text_rule_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:15:\"text_rule_color\";a:7:{s:5:\"label\";s:10:\"Rule Color\";s:11:\"description\";s:56:\"Controls the color of the vertical line between columns.\";s:2:\"id\";s:15:\"text_rule_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}}}s:23:\"title_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"title_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:9:\"fusiona-H\";s:6:\"fields\";a:5:{s:20:\"title_text_transform\";a:7:{s:5:\"label\";s:14:\"Text Transform\";s:11:\"description\";s:33:\"Choose how the text is displayed.\";s:2:\"id\";s:20:\"title_text_transform\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:0:\"\";s:7:\"Default\";s:4:\"none\";s:4:\"None\";s:9:\"uppercase\";s:9:\"Uppercase\";s:9:\"lowercase\";s:9:\"Lowercase\";s:10:\"capitalize\";s:10:\"Capitalize\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--title_text_transform\";}}}s:16:\"title_style_type\";a:7:{s:5:\"label\";s:15:\"Title Separator\";s:11:\"description\";s:55:\"Controls the type of title separator that will display.\";s:2:\"id\";s:16:\"title_style_type\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:10:{s:12:\"single solid\";s:12:\"Single Solid\";s:13:\"single dashed\";s:13:\"Single Dashed\";s:13:\"single dotted\";s:13:\"Single Dotted\";s:12:\"double solid\";s:12:\"Double Solid\";s:13:\"double dashed\";s:13:\"Double Dashed\";s:13:\"double dotted\";s:13:\"Double Dotted\";s:15:\"underline solid\";s:15:\"Underline Solid\";s:16:\"underline dashed\";s:16:\"Underline Dashed\";s:16:\"underline dotted\";s:16:\"Underline Dotted\";s:4:\"none\";s:4:\"None\";}}s:18:\"title_border_color\";a:7:{s:5:\"label\";s:21:\"Title Separator Color\";s:11:\"description\";s:43:\"Controls the color of the title separators.\";s:2:\"id\";s:18:\"title_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--title_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:12:\"title_margin\";a:8:{s:5:\"label\";s:13:\"Title Margins\";s:11:\"description\";s:84:\"Controls the margin of the titles. Leave empty to use corresponding heading margins.\";s:2:\"id\";s:12:\"title_margin\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:3:\"0px\";}s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:18:\"--title_margin-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:20:\"--title_margin-right\";s:6:\"choice\";s:5:\"right\";}i:2;a:2:{s:4:\"name\";s:21:\"--title_margin-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:3;a:2:{s:4:\"name\";s:19:\"--title_margin-left\";s:6:\"choice\";s:4:\"left\";}}}s:19:\"title_margin_mobile\";a:8:{s:5:\"label\";s:20:\"Title Mobile Margins\";s:11:\"description\";s:125:\"Controls the margin of the titles on mobiles. Leave empty together with desktop margins to use corresponding heading margins.\";s:2:\"id\";s:19:\"title_margin_mobile\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"10px\";s:4:\"left\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:25:\"--title_margin_mobile-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:27:\"--title_margin_mobile-right\";s:6:\"choice\";s:5:\"right\";}i:2;a:2:{s:4:\"name\";s:28:\"--title_margin_mobile-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:3;a:2:{s:4:\"name\";s:26:\"--title_margin_mobile-left\";s:6:\"choice\";s:4:\"left\";}}}}}s:25:\"toggles_shortcode_section\";a:5:{s:5:\"label\";s:7:\"Toggles\";s:2:\"id\";s:25:\"toggles_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:18:\"fusiona-expand-alt\";s:6:\"fields\";a:18:{s:14:\"accordion_type\";a:6:{s:5:\"label\";s:21:\"Toggles or Accordions\";s:11:\"description\";s:102:\"Toggles allow several items to be open at a time. Accordions only allow one item to be open at a time.\";s:2:\"id\";s:14:\"accordion_type\";s:7:\"default\";s:10:\"accordions\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"toggles\";s:7:\"Toggles\";s:10:\"accordions\";s:10:\"Accordions\";}}s:20:\"accordion_boxed_mode\";a:5:{s:5:\"label\";s:17:\"Toggle Boxed Mode\";s:11:\"description\";s:101:\"Turn on to display items in boxed mode. Toggle divider line must be disabled for this option to work.\";s:2:\"id\";s:20:\"accordion_boxed_mode\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"accordion_border_size\";a:7:{s:5:\"label\";s:30:\"Toggle Boxed Mode Border Width\";s:11:\"description\";s:44:\"Controls the border size of the toggle item.\";s:2:\"id\";s:21:\"accordion_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:22:\"accordian_border_color\";a:6:{s:5:\"label\";s:30:\"Toggle Boxed Mode Border Color\";s:11:\"description\";s:45:\"Controls the border color of the toggle item.\";s:2:\"id\";s:22:\"accordian_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:26:\"accordian_background_color\";a:6:{s:5:\"label\";s:34:\"Toggle Boxed Mode Background Color\";s:11:\"description\";s:49:\"Controls the background color of the toggle item.\";s:2:\"id\";s:26:\"accordian_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:21:\"accordian_hover_color\";a:6:{s:5:\"label\";s:40:\"Toggle Boxed Mode Background Hover Color\";s:11:\"description\";s:55:\"Controls the background hover color of the toggle item.\";s:2:\"id\";s:21:\"accordian_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:22:\"accordion_divider_line\";a:6:{s:5:\"label\";s:19:\"Toggle Divider Line\";s:11:\"description\";s:52:\"Turn on to display a divider line between each item.\";s:2:\"id\";s:22:\"accordion_divider_line\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;}s:23:\"accordion_divider_color\";a:6:{s:5:\"label\";s:18:\"Divider Line Color\";s:11:\"description\";s:42:\"Controls the color of toggle divider line.\";s:2:\"id\";s:23:\"accordion_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--accordion_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"accordion_divider_hover_color\";a:6:{s:5:\"label\";s:24:\"Divider Line Hover Color\";s:11:\"description\";s:48:\"Controls the hover color of toggle divider line.\";s:2:\"id\";s:29:\"accordion_divider_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--accordion_divider_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"accordion_title_typography\";a:7:{s:2:\"id\";s:26:\"accordion_title_typography\";s:5:\"label\";s:23:\"Toggle Title Typography\";s:11:\"description\";s:44:\"Choose the typography for all toggle titles.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"text-transform\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"16px\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}}s:19:\"accordion_icon_size\";a:6:{s:5:\"label\";s:16:\"Toggle Icon Size\";s:11:\"description\";s:25:\"Set the size of the icon.\";s:2:\"id\";s:19:\"accordion_icon_size\";s:7:\"default\";s:2:\"16\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}}s:20:\"accordian_icon_color\";a:5:{s:5:\"label\";s:17:\"Toggle Icon Color\";s:11:\"description\";s:41:\"Controls the color of icon in toggle box.\";s:2:\"id\";s:20:\"accordian_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";}s:20:\"accordion_icon_boxed\";a:5:{s:5:\"label\";s:22:\"Toggle Icon Boxed Mode\";s:11:\"description\";s:45:\"Turn on to display toggle icon in boxed mode.\";s:2:\"id\";s:20:\"accordion_icon_boxed\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:24:\"accordian_inactive_color\";a:7:{s:5:\"label\";s:30:\"Toggle Icon Inactive Box Color\";s:11:\"description\";s:46:\"Controls the color of the inactive toggle box.\";s:2:\"id\";s:24:\"accordian_inactive_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--accordian_inactive_color\";}}}s:28:\"accordion_content_typography\";a:7:{s:2:\"id\";s:28:\"accordion_content_typography\";s:5:\"label\";s:25:\"Toggle Content Typography\";s:11:\"description\";s:45:\"Choose the typography for all toggle content.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"text-transform\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}}s:22:\"accordian_active_color\";a:6:{s:5:\"label\";s:25:\"Toggle Hover Accent Color\";s:11:\"description\";s:58:\"Controls the accent color on hover for icon box and title.\";s:2:\"id\";s:22:\"accordian_active_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--accordian_active_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"accordian_active_accent_color\";a:5:{s:5:\"label\";s:26:\"Toggle Active Accent Color\";s:11:\"description\";s:59:\"Controls the accent color on active for icon box and title.\";s:2:\"id\";s:29:\"accordian_active_accent_color\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:11:\"color-alpha\";}s:20:\"accordion_icon_align\";a:6:{s:5:\"label\";s:21:\"Toggle Icon Alignment\";s:11:\"description\";s:38:\"Controls the alignment of toggle icon.\";s:2:\"id\";s:20:\"accordion_icon_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";}}}}s:28:\"user_login_shortcode_section\";a:6:{s:5:\"label\";s:10:\"User Login\";s:2:\"id\";s:28:\"user_login_shortcode_section\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:24:\"fusiona-calendar-check-o\";s:6:\"fields\";a:6:{s:21:\"user_login_text_align\";a:7:{s:5:\"label\";s:21:\"User Login Text Align\";s:11:\"description\";s:160:\"Controls the alignment of all user login content. &quot;Text Flow&quot; follows the default text align of the site. &quot;Center&quot; will center all elements.\";s:2:\"id\";s:21:\"user_login_text_align\";s:7:\"default\";s:6:\"center\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:8:\"textflow\";s:9:\"Text Flow\";s:6:\"center\";s:6:\"Center\";}}s:28:\"user_login_form_field_layout\";a:7:{s:5:\"label\";s:28:\"User Login Form Field Layout\";s:11:\"description\";s:173:\"Choose if form fields should be stacked and full width, or if they should be floated. <strong>IMPORTANT:</strong> This option only works for the login and the register form.\";s:2:\"id\";s:28:\"user_login_form_field_layout\";s:7:\"default\";s:7:\"stacked\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"stacked\";s:7:\"Stacked\";s:7:\"floated\";s:7:\"Floated\";}}s:27:\"user_login_form_show_labels\";a:7:{s:5:\"label\";s:22:\"User Login Show Labels\";s:11:\"description\";s:50:\"Controls if the form field labels should be shown.\";s:2:\"id\";s:27:\"user_login_form_show_labels\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:33:\"user_login_form_show_placeholders\";a:7:{s:5:\"label\";s:28:\"User Login Show Placeholders\";s:11:\"description\";s:56:\"Controls if the form field placeholders should be shown.\";s:2:\"id\";s:33:\"user_login_form_show_placeholders\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:32:\"user_login_form_show_remember_me\";a:7:{s:5:\"label\";s:36:\"User Login Show Remember Me Checkbox\";s:11:\"description\";s:75:\"Controls if the remenber me checkbox should be displayed in the login form.\";s:2:\"id\";s:32:\"user_login_form_show_remember_me\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:32:\"user_login_form_background_color\";a:6:{s:5:\"label\";s:32:\"User Login Form Background Color\";s:11:\"description\";s:42:\"Controls the color of the form background.\";s:2:\"id\";s:32:\"user_login_form_background_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:23:\"video_shortcode_section\";a:7:{s:5:\"label\";s:5:\"Video\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"video_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-video\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:3:{s:15:\"video_max_width\";a:6:{s:5:\"label\";s:13:\"Maximum Width\";s:11:\"description\";s:46:\"Set the maximum width using a valid CSS value.\";s:2:\"id\";s:15:\"video_max_width\";s:7:\"default\";s:4:\"100%\";s:4:\"type\";s:4:\"text\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--fusion-video-max-width-default\";s:7:\"element\";s:4:\"body\";}}}s:14:\"video_controls\";a:6:{s:5:\"label\";s:14:\"Video Controls\";s:11:\"description\";s:55:\"Controls whether the video controls should show or not.\";s:2:\"id\";s:14:\"video_controls\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:3:\"yes\";s:7:\"choices\";a:2:{s:3:\"yes\";s:4:\"Show\";s:2:\"no\";s:4:\"Hide\";}}s:13:\"video_preload\";a:6:{s:5:\"label\";s:16:\"Video Preloading\";s:11:\"description\";s:203:\"Controls how / if the browser should preload the video. Choose &quot;Metadata&quot; if only the video metadata should be preloaded on page load or &quot;Auto&quot; to preload the full video on page load.\";s:2:\"id\";s:13:\"video_preload\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"auto\";s:7:\"choices\";a:3:{s:4:\"auto\";s:4:\"Auto\";s:8:\"metadata\";s:8:\"Metadata\";s:4:\"none\";s:4:\"None\";}}}}s:28:\"visibility_shortcode_section\";a:6:{s:5:\"label\";s:23:\"Visibility Size Options\";s:2:\"id\";s:28:\"visibility_shortcode_section\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-mobile\";s:6:\"fields\";a:1:{s:16:\"visibility_moved\";a:4:{s:2:\"id\";s:16:\"visibility_moved\";s:5:\"label\";s:0:\"\";s:4:\"type\";s:6:\"custom\";s:11:\"description\";s:235:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> You can now find the visibility breakpoints on the main <a href=\"#\" class=\"fusion-quick-option\" data-fusion-option=\"visibility_small\">responsive tab</a>.</div>\";}}}s:29:\"widget_area_shortcode_section\";a:6:{s:5:\"label\";s:11:\"Widget Area\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"widget_area_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-sidebar\";s:6:\"fields\";a:2:{s:22:\"widget_area_title_size\";a:6:{s:5:\"label\";s:17:\"Widget Title Size\";s:11:\"description\";s:46:\"Controls the size of widget titles. In pixels.\";s:2:\"id\";s:22:\"widget_area_title_size\";s:7:\"default\";s:4:\"24px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"widget_area_title_color\";a:6:{s:5:\"label\";s:18:\"Widget Title Color\";s:11:\"description\";s:36:\"Controls the color of widget titles.\";s:2:\"id\";s:23:\"widget_area_title_color\";s:7:\"default\";s:25:\"var(--awb-custom_color_2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}}','no'),(1181,'fs_api_cache','a:0:{}','no'),(9441,'wd_bwg_version','1.8.9','no'),(9442,'wd_bwg_initial_version','1.8.9','no'),(9447,'bwg_admin_notice','a:1:{s:15:\"two_week_review\";a:2:{s:5:\"start\";s:9:\"1/22/2023\";s:3:\"int\";i:14;}}','yes'),(11527,'_transient_timeout_feed_2a09f5c5cc681cffa13dc8f7a0998b4c','1673366251','no'),(11528,'_transient_feed_2a09f5c5cc681cffa13dc8f7a0998b4c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:34:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Avada ThemeFusion | Avada Website Builder – Avada Website Builder For WordPress &amp; WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://theme-fusion.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"For WordPress & WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2023 10:42:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=6.1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:5:{i:0;a:6:{s:4:\"data\";s:71:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Avada Corporation: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://theme-fusion.com/avada-corporation-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://theme-fusion.com/avada-corporation-deconstructing-a-prebuilt-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Jan 2023 17:13:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=887620\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:629:\"<p>Say hello to Avada Corporation. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Corporation can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-corporation-deconstructing-a-prebuilt-website/\">Avada Corporation: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://theme-fusion.com/avada-corporation-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"21 Avada Studio Content Blocks For Web Design [Collection 11]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://theme-fusion.com/21-avada-studio-content-blocks-for-web-design-collection-11/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://theme-fusion.com/21-avada-studio-content-blocks-for-web-design-collection-11/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Dec 2022 15:24:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=887429\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<p>Avada Studio is an expansive library of multi-use content blocks professionally designed to speed up your web design workflow. In addition, Avada\'s intuitive interface makes it easy for you to live preview any content before importing directly into your content with a click. The Avada Studio is, by design, a creative resource for anyone [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/21-avada-studio-content-blocks-for-web-design-collection-11/\">21 Avada Studio Content Blocks For Web Design [Collection 11]</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Michael\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://theme-fusion.com/21-avada-studio-content-blocks-for-web-design-collection-11/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:49:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n		\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Version 7.9.1 Security Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://theme-fusion.com/version-7-9-1-security-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 15:23:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:19:\"Website Maintenance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=887527\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:610:\"<p>We have released Avada 7.9.1, fixes a security issue, regarding a potential remote code execution in class-fusion-dynamic-data-callbacks.php. The vulnerability can only be exploited through a user that is authenticated and if someone has access to the back-end, to get nonce values. While this is not a very likely scenario, the new update makes sure, this [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/version-7-9-1-security-update/\">Version 7.9.1 Security Update</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Michael\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:46:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n		\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"The 2022 Avada Black Friday Sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://theme-fusion.com/the-2022-avada-black-friday-sale/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Nov 2022 12:28:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"Sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=886603\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:554:\"<p>The Sale Has Ended! SALE, SALE SALE! It is that time of the year again. Thanksgiving and the holidays are upon us, and now the annual Black Friday sale is here. Everyone loves a discount, especially when it makes a difference to your bottom line. For this year\'s 2022 Black Friday sale, you can [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/the-2022-avada-black-friday-sale/\">The 2022 Avada Black Friday Sale</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Michael\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:71:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Avada Cafe: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://theme-fusion.com/avada-cafe-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://theme-fusion.com/avada-cafe-deconstructing-a-prebuilt-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Nov 2022 14:41:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=876328\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:603:\"<p>Say hello to Avada Café. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Café can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-cafe-deconstructing-a-prebuilt-website/\">Avada Cafe: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://theme-fusion.com/avada-cafe-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:30:\"https://theme-fusion.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:17:{s:4:\"date\";s:29:\"Tue, 10 Jan 2023 03:57:31 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:66:\"Accept-Encoding, Accept-Encoding, Accept-Encoding, Accept-Encoding\";s:13:\"cf-edge-cache\";s:24:\"cache,platform=wordpress\";s:13:\"last-modified\";s:29:\"Mon, 09 Jan 2023 21:38:52 GMT\";s:4:\"link\";s:107:\"<https://theme-fusion.com/wp-json/>; rel=\"https://api.w.org/\", <https://theme-fusion.com/>; rel=\"canonical\"\";s:12:\"x-powered-by\";s:9:\"WP Engine\";s:11:\"x-cacheable\";s:17:\"CacheAlways: feed\";s:13:\"cache-control\";s:28:\"max-age=600, must-revalidate\";s:4:\"etag\";s:41:\"W/\"7851e1ee5cc4e59a24415d29aeabd060-gzip\"\";s:7:\"x-cache\";s:8:\"HIT: 133\";s:13:\"x-cache-group\";s:3:\"bot\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"78727d2eaf177b61-LAX\";}}s:5:\"build\";s:14:\"20211221080300\";}','no'),(11535,'_site_transient_community-events-dee53a8d60c6ebd601969aa73f3e0dc6','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"75.83.80.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"OC WordPress Meetup\";s:3:\"url\";s:58:\"https://www.meetup.com/oc-wordpress-group/events/290183401\";s:6:\"meetup\";s:18:\"OC WordPress Group\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/OC-Wordpress-Group/\";s:4:\"date\";s:19:\"2023-01-09 19:00:00\";s:8:\"end_date\";s:19:\"2023-01-09 21:00:00\";s:20:\"start_unix_timestamp\";i:1673319600;s:18:\"end_unix_timestamp\";i:1673326800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.67999999999999971578290569595992565155029296875;s:9:\"longitude\";d:-118.0100000000000051159076974727213382720947265625;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:58:\"WordPress Lab: Take Your WordPress Site to the Next Level!\";s:3:\"url\";s:66:\"https://www.meetup.com/southcentralcoastwordpress/events/290588581\";s:6:\"meetup\";s:45:\"South Central Coast WordPress Adventure Group\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/southcentralcoastwordpress/\";s:4:\"date\";s:19:\"2023-01-11 19:00:00\";s:8:\"end_date\";s:19:\"2023-01-11 21:00:00\";s:20:\"start_unix_timestamp\";i:1673492400;s:18:\"end_unix_timestamp\";i:1673499600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:34.4200000000000017053025658242404460906982421875;s:9:\"longitude\";d:-119.7099999999999937472239253111183643341064453125;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:27:\"Let\'s talk about WordPress!\";s:3:\"url\";s:72:\"https://www.meetup.com/antelope-valley-wordpress-meetup/events/290607990\";s:6:\"meetup\";s:32:\"Antelope Valley WordPress Meetup\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/Antelope-Valley-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-01-18 19:00:00\";s:8:\"end_date\";s:19:\"2023-01-18 21:00:00\";s:20:\"start_unix_timestamp\";i:1674097200;s:18:\"end_unix_timestamp\";i:1674104400;s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Palmdale, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.59872399999999714736986788921058177947998046875;s:9:\"longitude\";d:-118.148055999999996856786310672760009765625;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:42:\"[Online] Project Reviews & Open Discussion\";s:3:\"url\";s:52:\"https://www.meetup.com/wplosangeles/events/267299187\";s:6:\"meetup\";s:21:\"WordPress Los Angeles\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/wplosangeles/\";s:4:\"date\";s:19:\"2023-01-19 16:00:00\";s:8:\"end_date\";s:19:\"2023-01-19 17:30:00\";s:20:\"start_unix_timestamp\";i:1674172800;s:18:\"end_unix_timestamp\";i:1674178200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.96000000000000085265128291212022304534912109375;s:9:\"longitude\";d:-118.400000000000005684341886080801486968994140625;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:58:\"WordPress Lab: Take Your WordPress Site to the Next Level!\";s:3:\"url\";s:66:\"https://www.meetup.com/southcentralcoastwordpress/events/290588586\";s:6:\"meetup\";s:45:\"South Central Coast WordPress Adventure Group\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/southcentralcoastwordpress/\";s:4:\"date\";s:19:\"2023-01-25 19:00:00\";s:8:\"end_date\";s:19:\"2023-01-25 21:00:00\";s:20:\"start_unix_timestamp\";i:1674702000;s:18:\"end_unix_timestamp\";i:1674709200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:34.4200000000000017053025658242404460906982421875;s:9:\"longitude\";d:-119.7099999999999937472239253111183643341064453125;}}}}','no'),(328,'fusion_import_data','a:17:{s:4:\"post\";a:1:{i:0;s:8:\"handyman\";}s:4:\"page\";a:1:{i:0;s:8:\"handyman\";}s:15:\"avada_portfolio\";a:1:{i:0;s:8:\"handyman\";}s:9:\"avada_faq\";a:0:{}s:12:\"avada_layout\";a:1:{i:0;s:8:\"handyman\";}s:12:\"fusion_icons\";a:1:{i:0;s:8:\"handyman\";}s:10:\"attachment\";a:1:{i:0;s:8:\"handyman\";}s:7:\"product\";a:0:{}s:5:\"event\";a:0:{}s:5:\"forum\";a:0:{}s:7:\"sliders\";a:1:{i:0;s:8:\"handyman\";}s:7:\"widgets\";a:1:{i:0;s:8:\"handyman\";}s:13:\"theme_options\";a:1:{i:0;s:8:\"handyman\";}s:11:\"convertplug\";a:0:{}s:12:\"general_data\";a:1:{i:0;s:8:\"handyman\";}s:3:\"all\";a:1:{i:0;s:8:\"handyman\";}s:11:\"fusion_form\";a:1:{i:0;s:8:\"handyman\";}}','no'),(327,'fusion_demo_history','a:1:{s:8:\"handyman\";a:11:{s:24:\"fusion_tb_layout_default\";s:165:\"{\\\"conditions\\\":[],\\\"template_terms\\\":{\\\"header\\\":49,\\\"footer\\\":51},\\\"id\\\":\\\"global\\\",\\\"title\\\":\\\"Global Layout\\\",\\\"data\\\":{\\\"conditions\\\":[],\\\"template_terms\\\":[]}}\";s:5:\"terms\";a:13:{i:0;a:2:{s:7:\"term_id\";i:17;s:8:\"taxonomy\";s:8:\"category\";}i:1;a:2:{s:7:\"term_id\";i:18;s:8:\"taxonomy\";s:8:\"category\";}i:2;a:2:{s:7:\"term_id\";i:19;s:8:\"taxonomy\";s:8:\"category\";}i:3;a:2:{s:7:\"term_id\";i:20;s:8:\"taxonomy\";s:8:\"category\";}i:4;a:2:{s:7:\"term_id\";i:21;s:8:\"taxonomy\";s:8:\"category\";}i:5;a:2:{s:7:\"term_id\";i:22;s:8:\"taxonomy\";s:8:\"category\";}i:6;a:2:{s:7:\"term_id\";i:23;s:8:\"taxonomy\";s:16:\"element_category\";}i:7;a:2:{s:7:\"term_id\";i:24;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:8;a:2:{s:7:\"term_id\";i:25;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:9;a:2:{s:7:\"term_id\";i:26;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:10;a:2:{s:7:\"term_id\";i:27;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:11;a:2:{s:7:\"term_id\";i:28;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:12;a:2:{s:7:\"term_id\";i:29;s:8:\"taxonomy\";s:8:\"nav_menu\";}}s:13:\"theme_options\";a:996:{s:16:\"animation_offset\";s:13:\"top-into-view\";s:21:\"status_css_animations\";s:7:\"desktop\";s:18:\"carousel_nav_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\";s:20:\"carousel_hover_color\";s:97:\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\";s:14:\"carousel_speed\";s:4:\"2500\";s:13:\"info_bg_color\";s:17:\"var(--awb-color1)\";s:17:\"info_accent_color\";s:17:\"var(--awb-color8)\";s:15:\"danger_bg_color\";s:20:\"rgba(219,75,104,0.1)\";s:19:\"danger_accent_color\";s:7:\"#db4b68\";s:16:\"success_bg_color\";s:20:\"rgba(18,184,120,0.1)\";s:20:\"success_accent_color\";s:7:\"#12b878\";s:16:\"warning_bg_color\";s:20:\"rgba(241,174,42,0.1)\";s:20:\"warning_accent_color\";s:7:\"#f1ae2a\";s:20:\"alert_box_text_align\";s:6:\"center\";s:24:\"alert_box_text_transform\";s:6:\"normal\";s:21:\"alert_box_dismissable\";s:3:\"yes\";s:16:\"alert_box_shadow\";s:2:\"no\";s:17:\"alert_border_size\";s:1:\"1\";s:15:\"audio_max_width\";s:4:\"100%\";s:22:\"audio_background_color\";s:17:\"var(--awb-color8)\";s:23:\"audio_progressbar_color\";s:17:\"var(--awb-color1)\";s:27:\"audio_controls_color_scheme\";s:5:\"light\";s:17:\"audio_border_size\";i:0;s:18:\"audio_border_color\";s:17:\"var(--awb-color1)\";s:19:\"audio_border_radius\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:17:\"blog_grid_columns\";i:3;s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:17:\"blog_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:12:\"blog_excerpt\";s:3:\"yes\";s:19:\"blog_excerpt_length\";s:2:\"10\";s:44:\"blog_element_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:46:\"blog_element_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:50:\"blog_element_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:52:\"blog_element_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:14:\"button_padding\";a:4:{s:3:\"top\";s:4:\"13px\";s:5:\"right\";s:4:\"29px\";s:6:\"bottom\";s:4:\"13px\";s:4:\"left\";s:4:\"29px\";}s:11:\"button_span\";s:2:\"no\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:14:\"text-transform\";s:37:\"var(--awb-typography3-text-transform)\";}s:25:\"button_gradient_top_color\";s:17:\"var(--awb-color5)\";s:28:\"button_gradient_bottom_color\";s:17:\"var(--awb-color5)\";s:31:\"button_gradient_top_color_hover\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:34:\"button_gradient_bottom_color_hover\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:21:\"button_gradient_start\";s:1:\"0\";s:19:\"button_gradient_end\";s:3:\"100\";s:20:\"button_gradient_type\";s:6:\"linear\";s:21:\"button_gradient_angle\";s:3:\"180\";s:23:\"button_radial_direction\";s:13:\"center center\";s:19:\"button_accent_color\";s:17:\"var(--awb-color1)\";s:25:\"button_accent_hover_color\";s:17:\"var(--awb-color1)\";s:18:\"button_bevel_color\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:24:\"button_bevel_color_hover\";s:108:\"hsla(var(--awb-color5-h),calc(var(--awb-color5-s) - 5%),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:19:\"button_border_width\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:20:\"button_border_radius\";a:4:{s:8:\"top_left\";s:3:\"4px\";s:9:\"top_right\";s:3:\"4px\";s:12:\"bottom_right\";s:3:\"4px\";s:11:\"bottom_left\";s:3:\"4px\";}s:19:\"button_border_color\";s:17:\"var(--awb-color1)\";s:25:\"button_border_hover_color\";s:17:\"var(--awb-color1)\";s:14:\"button_presets\";s:1:\"0\";s:21:\"chart_legend_position\";s:3:\"top\";s:19:\"chart_show_tooltips\";s:3:\"yes\";s:14:\"chart_bg_color\";s:19:\"rgba(255,255,255,0)\";s:21:\"chart_axis_text_color\";s:17:\"var(--awb-color8)\";s:20:\"chart_gridline_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:21:\"checklist_icons_color\";s:17:\"var(--awb-color1)\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:17:\"var(--awb-color4)\";s:20:\"checklist_text_color\";s:17:\"var(--awb-color8)\";s:19:\"checklist_item_size\";s:4:\"16px\";s:22:\"checklist_item_padding\";a:4:{s:3:\"top\";s:6:\"0.35em\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:6:\"0.35em\";s:4:\"left\";s:1:\"0\";}s:17:\"checklist_divider\";s:2:\"no\";s:23:\"checklist_divider_color\";s:17:\"var(--awb-color3)\";s:25:\"checklist_odd_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:26:\"checklist_even_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:11:\"col_spacing\";s:2:\"4%\";s:16:\"col_width_medium\";s:18:\"inherit_from_large\";s:15:\"col_width_small\";s:3:\"1_1\";s:25:\"container_padding_default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:21:\"container_padding_100\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:31:\"full_width_gradient_start_color\";s:19:\"rgba(255,255,255,0)\";s:29:\"full_width_gradient_end_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"full_width_border_sizes\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:23:\"full_width_border_color\";s:17:\"var(--awb-color3)\";s:29:\"container_scroll_nav_bg_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 80%))\";s:33:\"container_scroll_nav_bullet_color\";s:17:\"var(--awb-color3)\";s:44:\"container_hundred_percent_scroll_sensitivity\";s:3:\"450\";s:39:\"container_hundred_percent_height_mobile\";s:1:\"0\";s:24:\"container_legacy_support\";s:1:\"0\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:2:\"24\";s:23:\"content_box_title_color\";s:17:\"var(--awb-color8)\";s:22:\"content_box_body_color\";s:17:\"var(--awb-color8)\";s:21:\"content_box_icon_size\";s:2:\"20\";s:22:\"content_box_icon_color\";s:17:\"var(--awb-color1)\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:17:\"var(--awb-color7)\";s:38:\"content_box_icon_bg_inner_border_color\";s:17:\"var(--awb-color8)\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"1\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:17:\"var(--awb-color4)\";s:21:\"content_box_link_type\";s:4:\"text\";s:23:\"content_box_button_span\";s:2:\"no\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:18:\"countdown_timezone\";s:9:\"site_time\";s:16:\"countdown_layout\";s:7:\"floated\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:24:\"countdown_label_position\";s:9:\"text_flow\";s:26:\"countdown_background_color\";s:17:\"var(--awb-color5)\";s:26:\"countdown_background_image\";s:0:\"\";s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:29:\"countdown_counter_box_spacing\";s:4:\"10px\";s:27:\"countdown_counter_box_color\";s:17:\"var(--awb-color7)\";s:25:\"countdown_counter_padding\";a:4:{s:3:\"top\";s:5:\"0.6em\";s:5:\"right\";s:5:\"1.1em\";s:6:\"bottom\";s:5:\"0.6em\";s:4:\"left\";s:5:\"1.1em\";}s:29:\"countdown_counter_border_size\";s:1:\"0\";s:30:\"countdown_counter_border_color\";s:17:\"var(--awb-color7)\";s:31:\"countdown_counter_border_radius\";s:3:\"4px\";s:27:\"countdown_counter_font_size\";s:4:\"18px\";s:28:\"countdown_counter_text_color\";s:17:\"var(--awb-color1)\";s:25:\"countdown_label_font_size\";s:4:\"18px\";s:21:\"countdown_label_color\";s:17:\"var(--awb-color1)\";s:27:\"countdown_heading_font_size\";s:4:\"18px\";s:28:\"countdown_heading_text_color\";s:17:\"var(--awb-color1)\";s:30:\"countdown_subheading_font_size\";s:4:\"14px\";s:31:\"countdown_subheading_text_color\";s:17:\"var(--awb-color1)\";s:25:\"countdown_link_text_color\";s:17:\"var(--awb-color1)\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_speed\";s:4:\"1000\";s:17:\"counter_box_color\";s:17:\"var(--awb-color5)\";s:22:\"counter_box_title_size\";s:2:\"50\";s:21:\"counter_box_icon_size\";s:2:\"50\";s:22:\"counter_box_body_color\";s:17:\"var(--awb-color8)\";s:21:\"counter_box_body_size\";s:2:\"14\";s:24:\"counter_box_border_color\";s:17:\"var(--awb-color3)\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:17:\"var(--awb-color5)\";s:22:\"counter_unfilled_color\";s:17:\"var(--awb-color2)\";s:13:\"dropcap_color\";s:17:\"var(--awb-color5)\";s:18:\"dropcap_text_color\";s:17:\"var(--awb-color1)\";s:22:\"flip_boxes_flip_effect\";s:7:\"classic\";s:25:\"flip_boxes_flip_direction\";s:5:\"right\";s:24:\"flip_boxes_flip_duration\";s:3:\"0.8\";s:24:\"flip_boxes_equal_heights\";s:2:\"no\";s:19:\"flip_boxes_front_bg\";s:17:\"var(--awb-color7)\";s:24:\"flip_boxes_front_heading\";s:17:\"var(--awb-color2)\";s:21:\"flip_boxes_front_text\";s:17:\"var(--awb-color3)\";s:18:\"flip_boxes_back_bg\";s:17:\"var(--awb-color5)\";s:23:\"flip_boxes_back_heading\";s:17:\"var(--awb-color1)\";s:20:\"flip_boxes_back_text\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:22:\"flip_boxes_border_size\";s:1:\"1\";s:23:\"flip_boxes_border_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"6px\";s:9:\"icon_size\";s:2:\"32\";s:10:\"icon_color\";s:17:\"var(--awb-color1)\";s:16:\"icon_color_hover\";s:17:\"var(--awb-color1)\";s:11:\"icon_circle\";s:3:\"yes\";s:17:\"icon_circle_color\";s:17:\"var(--awb-color5)\";s:23:\"icon_circle_color_hover\";s:17:\"var(--awb-color4)\";s:16:\"icon_border_size\";s:1:\"1\";s:17:\"icon_border_color\";s:17:\"var(--awb-color8)\";s:23:\"icon_border_color_hover\";s:17:\"var(--awb-color4)\";s:18:\"icon_border_radius\";a:4:{s:8:\"top_left\";s:3:\"50%\";s:9:\"top_right\";s:3:\"50%\";s:12:\"bottom_right\";s:3:\"50%\";s:11:\"bottom_left\";s:3:\"50%\";}s:15:\"icon_hover_type\";s:4:\"fade\";s:13:\"gallery_limit\";s:2:\"-1\";s:23:\"gallery_pagination_type\";s:6:\"button\";s:29:\"gallery_load_more_button_text\";s:9:\"Load More\";s:20:\"gallery_picture_size\";s:4:\"auto\";s:14:\"gallery_layout\";s:4:\"grid\";s:15:\"gallery_columns\";s:1:\"3\";s:22:\"gallery_column_spacing\";s:2:\"10\";s:18:\"gallery_hover_type\";s:4:\"none\";s:24:\"gallery_lightbox_content\";s:4:\"none\";s:19:\"gallery_border_size\";s:1:\"0\";s:20:\"gallery_border_color\";s:17:\"var(--awb-color3)\";s:21:\"gallery_border_radius\";s:3:\"0px\";s:19:\"google_map_api_type\";s:2:\"js\";s:17:\"before_after_type\";s:12:\"before_after\";s:22:\"before_after_font_size\";s:2:\"14\";s:25:\"before_after_accent_color\";s:17:\"var(--awb-color1)\";s:28:\"before_after_label_placement\";s:14:\"image-centered\";s:24:\"before_after_handle_type\";s:7:\"default\";s:25:\"before_after_handle_color\";s:17:\"var(--awb-color1)\";s:22:\"before_after_handle_bg\";s:19:\"rgba(255,255,255,0)\";s:19:\"before_after_offset\";s:2:\"50\";s:24:\"before_after_orientation\";s:10:\"horizontal\";s:28:\"before_after_handle_movement\";s:10:\"drag_click\";s:28:\"before_after_transition_time\";s:3:\"0.5\";s:24:\"before_after_border_size\";s:1:\"0\";s:25:\"before_after_border_color\";s:17:\"var(--awb-color3)\";s:26:\"before_after_border_radius\";s:3:\"0px\";s:21:\"imageframe_style_type\";s:4:\"none\";s:15:\"imageframe_blur\";s:1:\"3\";s:20:\"imgframe_style_color\";s:17:\"var(--awb-color7)\";s:22:\"imageframe_border_size\";s:1:\"0\";s:21:\"imgframe_border_color\";s:17:\"var(--awb-color3)\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:14:\"modal_bg_color\";s:17:\"var(--awb-color1)\";s:18:\"modal_border_color\";s:17:\"var(--awb-color3)\";s:13:\"person_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:23:\"person_background_color\";s:17:\"var(--awb-color8)\";s:16:\"person_pic_style\";s:4:\"none\";s:21:\"person_pic_style_blur\";s:1:\"3\";s:18:\"person_style_color\";s:17:\"var(--awb-color8)\";s:19:\"person_border_color\";s:17:\"var(--awb-color3)\";s:18:\"person_border_size\";s:1:\"0\";s:20:\"person_border_radius\";s:3:\"0px\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:17:\"var(--awb-color2)\";s:24:\"popover_content_bg_color\";s:17:\"var(--awb-color1)\";s:20:\"popover_border_color\";s:17:\"var(--awb-color3)\";s:18:\"popover_text_color\";s:17:\"var(--awb-color8)\";s:17:\"popover_placement\";s:3:\"Top\";s:36:\"full_boxed_pricing_box_heading_color\";s:17:\"var(--awb-color8)\";s:29:\"sep_pricing_box_heading_color\";s:17:\"var(--awb-color8)\";s:17:\"pricing_box_color\";s:17:\"var(--awb-color4)\";s:16:\"pricing_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"pricing_background_color_hover\";s:17:\"var(--awb-color2)\";s:20:\"pricing_border_color\";s:17:\"var(--awb-color2)\";s:21:\"pricing_divider_color\";s:17:\"var(--awb-color3)\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:22:\"progressbar_text_color\";s:17:\"var(--awb-color1)\";s:18:\"progressbar_height\";s:4:\"48px\";s:24:\"progressbar_filled_color\";s:17:\"var(--awb-color5)\";s:26:\"progressbar_unfilled_color\";s:17:\"var(--awb-color2)\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:31:\"progressbar_filled_border_color\";s:17:\"var(--awb-color1)\";s:24:\"scroll_progress_position\";s:4:\"flow\";s:22:\"scroll_progress_height\";s:4:\"10px\";s:32:\"scroll_progress_background_color\";s:17:\"var(--awb-color2)\";s:30:\"scroll_progress_progress_color\";s:17:\"var(--awb-color4)\";s:27:\"scroll_progress_border_size\";s:1:\"0\";s:28:\"scroll_progress_border_color\";s:17:\"var(--awb-color1)\";s:29:\"scroll_progress_border_radius\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:23:\"section_sep_border_size\";s:1:\"1\";s:14:\"section_sep_bg\";s:17:\"var(--awb-color2)\";s:24:\"section_sep_border_color\";s:17:\"var(--awb-color3)\";s:20:\"separator_style_type\";s:6:\"double\";s:9:\"sep_color\";s:17:\"var(--awb-color3)\";s:21:\"separator_border_size\";s:1:\"1\";s:19:\"separator_icon_size\";s:2:\"16\";s:20:\"separator_icon_color\";s:17:\"var(--awb-color3)\";s:16:\"separator_circle\";s:1:\"1\";s:25:\"separator_circle_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"social_sharing\";a:11:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:8:\"telegram\";i:6;s:6:\"tumblr\";i:7;s:9:\"pinterest\";i:8;s:2:\"vk\";i:9;s:4:\"xing\";i:10;s:5:\"email\";}s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:30:\"sharing_box_tagline_text_color\";s:17:\"var(--awb-color8)\";s:15:\"social_bg_color\";s:17:\"var(--awb-color2)\";s:30:\"sharing_social_links_font_size\";s:4:\"16px\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:31:\"sharing_social_links_icon_color\";s:17:\"var(--awb-color8)\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:17:\"var(--awb-color3)\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:19:\"social_links_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_color_type\";s:6:\"custom\";s:23:\"social_links_icon_color\";s:17:\"var(--awb-color6)\";s:29:\"social_links_icon_color_hover\";s:17:\"var(--awb-color4)\";s:18:\"social_links_boxed\";s:1:\"0\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:22:\"social_links_box_color\";s:17:\"var(--awb-color2)\";s:28:\"social_links_box_color_hover\";s:17:\"var(--awb-color1)\";s:19:\"social_links_border\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:25:\"social_links_border_color\";s:17:\"var(--awb-color3)\";s:31:\"social_links_border_color_hover\";s:17:\"var(--awb-color4)\";s:24:\"syntax_highlighter_theme\";s:7:\"default\";s:31:\"syntax_highlighter_line_numbers\";s:3:\"yes\";s:47:\"syntax_highlighter_line_number_background_color\";s:17:\"var(--awb-color2)\";s:41:\"syntax_highlighter_line_number_text_color\";s:17:\"var(--awb-color8)\";s:32:\"syntax_highlighter_line_wrapping\";s:6:\"scroll\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:3:\"yes\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:17:\"Copy to Clipboard\";s:28:\"syntax_highlighter_font_size\";s:2:\"14\";s:35:\"syntax_highlighter_background_color\";s:17:\"var(--awb-color1)\";s:30:\"syntax_highlighter_border_size\";s:1:\"1\";s:31:\"syntax_highlighter_border_color\";s:17:\"var(--awb-color3)\";s:31:\"syntax_highlighter_border_style\";s:5:\"solid\";s:25:\"syntax_highlighter_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:13:\"tabs_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"tabs_inactive_color\";s:17:\"var(--awb-color2)\";s:17:\"tabs_border_color\";s:17:\"var(--awb-color3)\";s:18:\"tabs_title_padding\";a:4:{s:3:\"top\";s:0:\"\";s:4:\"left\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:5:\"right\";s:0:\"\";}s:20:\"tabs_content_padding\";a:4:{s:3:\"top\";s:0:\"\";s:4:\"left\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:5:\"right\";s:0:\"\";}s:18:\"tabs_icon_position\";s:4:\"left\";s:14:\"tabs_icon_size\";s:2:\"16\";s:16:\"tabs_mobile_mode\";s:9:\"accordion\";s:23:\"tabs_mobile_sticky_tabs\";s:2:\"no\";s:10:\"tagline_bg\";s:17:\"var(--awb-color2)\";s:20:\"tagline_border_color\";s:19:\"rgba(226,226,226,0)\";s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:20:\"testimonial_bg_color\";s:17:\"var(--awb-color2)\";s:22:\"testimonial_text_color\";s:17:\"var(--awb-color8)\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:12:\"text_columns\";s:1:\"1\";s:21:\"text_column_min_width\";s:5:\"100px\";s:19:\"text_column_spacing\";s:3:\"2em\";s:15:\"text_rule_style\";s:4:\"none\";s:14:\"text_rule_size\";s:1:\"1\";s:15:\"text_rule_color\";s:17:\"var(--awb-color3)\";s:20:\"title_text_transform\";s:0:\"\";s:16:\"title_style_type\";s:4:\"none\";s:18:\"title_border_color\";s:17:\"var(--awb-color3)\";s:12:\"title_margin\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:3:\"0px\";}s:19:\"title_margin_mobile\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"10px\";s:4:\"left\";s:3:\"0px\";}s:14:\"accordion_type\";s:10:\"accordions\";s:20:\"accordion_boxed_mode\";s:1:\"0\";s:21:\"accordion_border_size\";s:1:\"1\";s:22:\"accordian_border_color\";s:17:\"var(--awb-color3)\";s:26:\"accordian_background_color\";s:17:\"var(--awb-color1)\";s:21:\"accordian_hover_color\";s:17:\"var(--awb-color2)\";s:22:\"accordion_divider_line\";s:1:\"1\";s:23:\"accordion_divider_color\";s:17:\"var(--awb-color3)\";s:29:\"accordion_divider_hover_color\";s:17:\"var(--awb-color3)\";s:26:\"accordion_title_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-weight\";s:0:\"\";s:9:\"font-size\";s:4:\"24px\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:19:\"accordion_icon_size\";s:2:\"16\";s:20:\"accordian_icon_color\";s:17:\"var(--awb-color1)\";s:20:\"accordion_icon_boxed\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:17:\"var(--awb-color8)\";s:28:\"accordion_content_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-weight\";s:0:\"\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:22:\"accordian_active_color\";s:17:\"var(--awb-color5)\";s:29:\"accordian_active_accent_color\";s:0:\"\";s:20:\"accordion_icon_align\";s:4:\"left\";s:21:\"user_login_text_align\";s:6:\"center\";s:28:\"user_login_form_field_layout\";s:7:\"stacked\";s:27:\"user_login_form_show_labels\";s:2:\"no\";s:33:\"user_login_form_show_placeholders\";s:3:\"yes\";s:32:\"user_login_form_show_remember_me\";s:2:\"no\";s:32:\"user_login_form_background_color\";s:17:\"var(--awb-color2)\";s:15:\"video_max_width\";s:4:\"100%\";s:14:\"video_controls\";s:3:\"yes\";s:13:\"video_preload\";s:4:\"auto\";s:22:\"widget_area_title_size\";s:0:\"\";s:23:\"widget_area_title_color\";s:17:\"var(--awb-color8)\";s:11:\"tagcloud_bg\";s:22:\"rgba(255, 255, 255, 0)\";s:17:\"tagcloud_bg_hover\";s:17:\"var(--awb-color4)\";s:14:\"tagcloud_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:20:\"tagcloud_color_hover\";s:17:\"var(--awb-color1)\";s:21:\"tagcloud_border_color\";s:17:\"var(--awb-color8)\";s:27:\"tagcloud_border_color_hover\";s:17:\"var(--awb-color4)\";s:23:\"instagram_cache_timeout\";s:4:\"hour\";s:22:\"reset_instagram_caches\";s:0:\"\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:18:\"faq_accordion_type\";s:10:\"accordions\";s:24:\"faq_accordion_boxed_mode\";s:1:\"0\";s:25:\"faq_accordion_border_size\";s:1:\"1\";s:26:\"faq_accordian_border_color\";s:17:\"var(--awb-color3)\";s:30:\"faq_accordian_background_color\";s:17:\"var(--awb-color1)\";s:25:\"faq_accordian_hover_color\";s:17:\"var(--awb-color2)\";s:26:\"faq_accordion_divider_line\";s:1:\"1\";s:27:\"faq_accordion_divider_color\";s:17:\"var(--awb-color3)\";s:33:\"faq_accordion_divider_hover_color\";s:17:\"var(--awb-color3)\";s:30:\"faq_accordion_title_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-weight\";s:0:\"\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:23:\"faq_accordion_icon_size\";s:2:\"16\";s:24:\"faq_accordian_icon_color\";s:17:\"var(--awb-color1)\";s:24:\"faq_accordion_icon_boxed\";s:1:\"1\";s:28:\"faq_accordian_inactive_color\";s:17:\"var(--awb-color7)\";s:32:\"faq_accordion_content_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-weight\";s:0:\"\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:24:\"faq_accordion_icon_align\";s:4:\"left\";s:26:\"faq_accordian_active_color\";s:17:\"var(--awb-color4)\";s:33:\"faq_accordian_active_accent_color\";s:0:\"\";s:29:\"portfolio_featured_image_size\";s:4:\"full\";s:17:\"portfolio_columns\";i:3;s:24:\"portfolio_column_spacing\";s:2:\"30\";s:15:\"portfolio_items\";s:2:\"10\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:24:\"portfolio_content_length\";s:7:\"excerpt\";s:24:\"portfolio_excerpt_length\";s:2:\"10\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:23:\"portfolio_title_display\";s:3:\"all\";s:24:\"portfolio_text_alignment\";s:4:\"left\";s:24:\"portfolio_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:25:\"portfolio_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_element_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:51:\"portfolio_element_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:6:\"layout\";s:4:\"wide\";s:10:\"site_width\";s:6:\"1200px\";s:13:\"margin_offset\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:13:\"scroll_offset\";s:4:\"full\";s:18:\"boxed_modal_shadow\";s:4:\"None\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";}s:13:\"page_template\";s:9:\"100_width\";s:16:\"hundredp_padding\";s:4:\"30px\";s:13:\"sidebar_width\";s:3:\"24%\";s:14:\"sidebar_gutter\";s:2:\"6%\";s:17:\"sidebar_2_1_width\";s:3:\"20%\";s:17:\"sidebar_2_2_width\";s:3:\"20%\";s:19:\"dual_sidebar_gutter\";s:2:\"4%\";s:10:\"responsive\";s:1:\"1\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:23:\"side_header_break_point\";s:3:\"800\";s:19:\"content_break_point\";s:3:\"800\";s:19:\"sidebar_break_point\";s:3:\"800\";s:11:\"mobile_zoom\";s:1:\"1\";s:16:\"visibility_small\";s:3:\"640\";s:17:\"visibility_medium\";s:4:\"1024\";s:22:\"typography_sensitivity\";s:1:\"0\";s:17:\"typography_factor\";s:3:\"1.5\";s:13:\"color_palette\";a:8:{s:6:\"color1\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"label\";s:7:\"Color 1\";}s:6:\"color2\";a:2:{s:5:\"color\";s:7:\"#fcefbd\";s:5:\"label\";s:7:\"Color 2\";}s:6:\"color3\";a:2:{s:5:\"color\";s:7:\"#ffe54b\";s:5:\"label\";s:7:\"Color 3\";}s:6:\"color4\";a:2:{s:5:\"color\";s:7:\"#f0cc00\";s:5:\"label\";s:7:\"Color 4\";}s:6:\"color5\";a:2:{s:5:\"color\";s:7:\"#3269ff\";s:5:\"label\";s:7:\"Color 5\";}s:6:\"color6\";a:2:{s:5:\"color\";s:7:\"#6476d1\";s:5:\"label\";s:7:\"Color 6\";}s:6:\"color7\";a:2:{s:5:\"color\";s:7:\"#1c2f7c\";s:5:\"label\";s:7:\"Color 7\";}s:6:\"color8\";a:2:{s:5:\"color\";s:7:\"#10284a\";s:5:\"label\";s:7:\"Color 8\";}}s:13:\"primary_color\";s:17:\"var(--awb-color5)\";s:15:\"header_position\";s:3:\"top\";s:13:\"header_layout\";s:2:\"v3\";s:15:\"slider_position\";s:5:\"below\";s:19:\"header_left_content\";s:12:\"social_links\";s:20:\"header_right_content\";s:10:\"navigation\";s:17:\"header_v4_content\";s:18:\"tagline_and_search\";s:13:\"header_number\";s:28:\"Call Us Today! 1.555.555.555\";s:12:\"header_email\";s:19:\"info@yourdomain.com\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:18:\"header_banner_code\";s:0:\"\";s:15:\"header_bg_image\";s:0:\"\";s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:9:\"no-repeat\";s:17:\"side_header_width\";s:3:\"280\";s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"header_bg_color\";s:17:\"var(--awb-color1)\";s:23:\"archive_header_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"header_border_color\";s:19:\"rgba(226,226,226,0)\";s:19:\"header_top_bg_color\";s:17:\"var(--awb-color4)\";s:17:\"tagline_font_size\";s:4:\"16px\";s:18:\"tagline_font_color\";s:17:\"var(--awb-color8)\";s:13:\"header_sticky\";i:1;s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"0\";s:26:\"header_sticky_type2_layout\";s:9:\"menu_only\";s:20:\"header_sticky_shadow\";s:1:\"1\";s:22:\"header_sticky_bg_color\";s:17:\"var(--awb-color1)\";s:24:\"header_sticky_menu_color\";s:17:\"var(--awb-color8)\";s:25:\"header_sticky_nav_padding\";s:2:\"35\";s:27:\"header_sticky_nav_font_size\";s:4:\"14px\";s:10:\"nav_height\";s:2:\"94\";s:20:\"menu_highlight_style\";s:3:\"bar\";s:25:\"menu_highlight_background\";s:17:\"var(--awb-color4)\";s:15:\"menu_arrow_size\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:20:\"nav_highlight_border\";s:1:\"3\";s:11:\"nav_padding\";s:2:\"48\";s:18:\"mobile_nav_padding\";s:2:\"25\";s:15:\"megamenu_shadow\";s:1:\"1\";s:28:\"main_menu_sub_menu_animation\";s:4:\"fade\";s:29:\"dropdown_menu_top_border_size\";s:1:\"3\";s:19:\"dropdown_menu_width\";s:3:\"200\";s:34:\"mainmenu_dropdown_vertical_padding\";s:2:\"12\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"0\";s:31:\"menu_display_dropdown_indicator\";s:4:\"none\";s:20:\"main_nav_search_icon\";s:1:\"1\";s:22:\"main_nav_search_layout\";s:7:\"overlay\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:25:\"main_nav_highlight_radius\";s:3:\"2px\";s:17:\"menu_sub_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"menu_bg_hover_color\";s:17:\"var(--awb-color3)\";s:18:\"menu_sub_sep_color\";s:17:\"var(--awb-color3)\";s:17:\"menu_h45_bg_color\";s:17:\"var(--awb-color1)\";s:14:\"nav_typography\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:15:\"menu_text_align\";s:6:\"center\";s:22:\"menu_hover_first_color\";s:17:\"var(--awb-color4)\";s:14:\"menu_sub_color\";s:17:\"var(--awb-color8)\";s:22:\"nav_dropdown_font_size\";s:4:\"14px\";s:18:\"side_nav_font_size\";s:4:\"16px\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:24:\"flyout_nav_icons_padding\";s:2:\"32\";s:22:\"flyout_menu_icon_color\";s:17:\"var(--awb-color8)\";s:28:\"flyout_menu_icon_hover_color\";s:17:\"var(--awb-color4)\";s:28:\"flyout_menu_background_color\";s:96:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 6%))\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:24:\"flyout_menu_item_padding\";s:2:\"32\";s:23:\"topmenu_dropwdown_width\";s:3:\"200\";s:29:\"header_top_first_border_color\";s:17:\"var(--awb-color6)\";s:23:\"header_top_sub_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"header_top_menu_bg_hover_color\";s:17:\"var(--awb-color2)\";s:29:\"header_top_menu_sub_sep_color\";s:17:\"var(--awb-color3)\";s:14:\"snav_font_size\";s:4:\"12px\";s:11:\"sec_menu_lh\";s:4:\"48px\";s:10:\"snav_color\";s:17:\"var(--awb-color1)\";s:25:\"header_top_menu_sub_color\";s:17:\"var(--awb-color8)\";s:31:\"header_top_menu_sub_hover_color\";s:17:\"var(--awb-color4)\";s:18:\"mobile_menu_design\";s:7:\"classic\";s:28:\"mobile_menu_icons_top_margin\";s:1:\"2\";s:22:\"mobile_menu_nav_height\";s:2:\"42\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:18:\"mobile_menu_search\";s:1:\"1\";s:29:\"mobile_menu_submenu_indicator\";s:1:\"1\";s:22:\"mobile_header_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"mobile_archive_header_bg_color\";s:17:\"var(--awb-color1)\";s:28:\"mobile_menu_background_color\";s:17:\"var(--awb-color1)\";s:23:\"mobile_menu_hover_color\";s:17:\"var(--awb-color1)\";s:24:\"mobile_menu_border_color\";s:17:\"var(--awb-color3)\";s:24:\"mobile_menu_toggle_color\";s:17:\"var(--awb-color6)\";s:22:\"mobile_menu_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:28:\"mobile_menu_font_hover_color\";s:17:\"var(--awb-color8)\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:14:\"megamenu_width\";s:10:\"site_width\";s:18:\"megamenu_max_width\";s:4:\"1200\";s:31:\"megamenu_interior_content_width\";s:14:\"viewport_width\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:1:\"7\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:18:\"menu_icon_position\";s:4:\"left\";s:14:\"menu_icon_size\";s:2:\"14\";s:15:\"menu_icon_color\";s:17:\"var(--awb-color6)\";s:21:\"menu_icon_hover_color\";s:17:\"var(--awb-color4)\";s:19:\"menu_thumbnail_size\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:14:\"logo_alignment\";s:4:\"left\";s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"34px\";s:6:\"bottom\";s:4:\"34px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:15:\"logo_background\";s:1:\"0\";s:21:\"logo_background_color\";s:17:\"var(--awb-color4)\";s:16:\"logo_custom_link\";s:0:\"\";s:4:\"logo\";s:78:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/logo.png\";s:11:\"logo_retina\";s:81:\"https://test-site.wlvrotary.org/wp-content/themes/Avada/assets/images/logo@2x.png\";s:18:\"sticky_header_logo\";s:0:\"\";s:25:\"sticky_header_logo_retina\";s:0:\"\";s:11:\"mobile_logo\";s:0:\"\";s:18:\"mobile_logo_retina\";s:0:\"\";s:8:\"fav_icon\";s:0:\"\";s:20:\"fav_icon_apple_touch\";s:0:\"\";s:16:\"fav_icon_android\";s:0:\"\";s:13:\"fav_icon_edge\";s:0:\"\";s:14:\"page_title_bar\";s:4:\"hide\";s:17:\"page_title_bar_bs\";s:11:\"breadcrumbs\";s:19:\"page_title_bar_text\";s:1:\"1\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:5:\"300px\";s:24:\"page_title_mobile_height\";s:5:\"240px\";s:19:\"page_title_bg_color\";s:17:\"var(--awb-color2)\";s:23:\"page_title_border_color\";s:19:\"rgba(226,226,226,0)\";s:20:\"page_title_font_size\";s:4:\"54px\";s:22:\"page_title_line_height\";s:6:\"normal\";s:16:\"page_title_color\";s:17:\"var(--awb-color8)\";s:30:\"page_title_subheader_font_size\";s:4:\"18px\";s:26:\"page_title_subheader_color\";s:17:\"var(--awb-color8)\";s:20:\"page_title_alignment\";s:6:\"center\";s:13:\"page_title_bg\";s:0:\"\";s:20:\"page_title_bg_retina\";s:0:\"\";s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:21:\"breadcrumbs_font_size\";s:4:\"14px\";s:22:\"breadcrumbs_text_color\";s:17:\"var(--awb-color8)\";s:28:\"breadcrumbs_text_hover_color\";s:17:\"var(--awb-color4)\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:19:\"slidingbar_position\";s:3:\"top\";s:16:\"slidingbar_width\";s:5:\"300px\";s:17:\"slidingbar_sticky\";i:1;s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:27:\"slidingbar_column_alignment\";s:7:\"stacked\";s:26:\"slidingbar_content_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:24:\"slidingbar_content_align\";s:4:\"left\";s:23:\"slidingbar_toggle_style\";s:6:\"circle\";s:19:\"slidingbar_bg_color\";s:17:\"var(--awb-color7)\";s:24:\"slidingbar_divider_color\";s:17:\"var(--awb-color6)\";s:28:\"slidingbar_toggle_icon_color\";s:17:\"var(--awb-color1)\";s:20:\"slidingbar_font_size\";s:4:\"14px\";s:25:\"slidingbar_headings_color\";s:17:\"var(--awb-color1)\";s:21:\"slidingbar_text_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:21:\"slidingbar_link_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 14%))\";s:27:\"slidingbar_link_color_hover\";s:17:\"var(--awb-color1)\";s:17:\"slidingbar_border\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";s:1:\"4\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"0\";s:11:\"footer_text\";s:217:\"Copyright 2012 - 2022 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://theme-fusion.com\">ThemeFusion</a> | All Rights Reserved | Powered by <a href=\"https://wordpress.org\">WordPress</a>\";s:16:\"footerw_bg_image\";s:0:\"\";s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:9:\"no-repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:16:\"footer_100_width\";s:1:\"0\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"64px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:15:\"footer_bg_color\";s:17:\"var(--awb-color7)\";s:18:\"footer_border_size\";s:1:\"0\";s:19:\"footer_border_color\";s:17:\"var(--awb-color3)\";s:19:\"footer_divider_line\";s:1:\"0\";s:24:\"footer_divider_line_size\";s:1:\"1\";s:25:\"footer_divider_line_style\";s:5:\"solid\";s:20:\"footer_divider_color\";s:17:\"var(--awb-color6)\";s:22:\"footer_widgets_padding\";s:4:\"16px\";s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:18:\"copyright_bg_color\";s:17:\"var(--awb-color8)\";s:21:\"copyright_border_size\";s:1:\"0\";s:22:\"copyright_border_color\";s:17:\"var(--awb-color8)\";s:26:\"footer_headings_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography2-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography2-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography2-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography2-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color1)\";s:14:\"text-transform\";s:4:\"none\";}s:17:\"footer_text_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:17:\"footer_link_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:23:\"footer_link_color_hover\";s:17:\"var(--awb-color4)\";s:20:\"copyright_text_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 60%))\";s:20:\"copyright_link_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:26:\"copyright_link_color_hover\";s:17:\"var(--awb-color4)\";s:19:\"copyright_font_size\";s:4:\"13px\";s:24:\"responsive_sidebar_order\";s:25:\"content,sidebar,sidebar-2\";s:14:\"sidebar_sticky\";s:4:\"none\";s:15:\"sidebar_padding\";s:3:\"0px\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"18px\";s:21:\"sidebar_heading_color\";s:17:\"var(--awb-color8)\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";s:0:\"\";s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:8:\"bg_color\";s:17:\"var(--awb-color3)\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_color\";s:17:\"var(--awb-color1)\";s:16:\"content_bg_image\";s:0:\"\";s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:9:\"no-repeat\";s:15:\"typography_sets\";a:5:{s:11:\"typography1\";a:12:{s:5:\"label\";s:8:\"Headings\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:7:\"67.34px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;s:11:\"font-style \";s:0:\"\";}s:11:\"typography2\";a:12:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;s:11:\"font-style \";s:0:\"\";}s:11:\"typography3\";a:12:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:9:\"uppercase\";s:13:\"not_removable\";b:1;s:11:\"font-style \";s:0:\"\";}s:11:\"typography4\";a:12:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;s:11:\"font-style \";s:0:\"\";}s:11:\"typography5\";a:12:{s:5:\"label\";s:5:\"Small\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;s:11:\"font-style \";s:0:\"\";}}s:15:\"body_typography\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:10:\"link_color\";s:17:\"var(--awb-color8)\";s:13:\"h1_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:7:\"67.34px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:14:\"text-transform\";s:4:\"none\";}s:13:\"h2_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:7:\"50.52px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:14:\"text-transform\";s:4:\"none\";}s:13:\"h3_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:6:\"37.9px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:14:\"text-transform\";s:4:\"none\";}s:13:\"h4_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:7:\"28.43px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:14:\"text-transform\";s:4:\"none\";}s:13:\"h5_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:7:\"21.33px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:14:\"text-transform\";s:4:\"none\";}s:13:\"h6_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"16px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:14:\"text-transform\";s:4:\"none\";}s:21:\"post_title_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:29:\"post_titles_extras_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:14:\"text-transform\";s:4:\"none\";}s:12:\"custom_fonts\";a:0:{}s:14:\"adobe_fonts_id\";s:0:\"\";s:22:\"adobe_cache_fonts_info\";s:0:\"\";s:19:\"blog_page_title_bar\";s:4:\"hide\";s:24:\"blog_show_page_title_bar\";s:4:\"hide\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:11:\"blog_layout\";s:5:\"large\";s:19:\"blog_archive_layout\";s:5:\"large\";s:20:\"blog_pagination_type\";s:10:\"pagination\";s:36:\"blog_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:38:\"blog_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:25:\"blog_archive_grid_columns\";i:3;s:32:\"blog_archive_grid_column_spacing\";s:2:\"40\";s:18:\"blog_equal_heights\";i:0;s:25:\"blog_archive_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:21:\"blog_layout_alignment\";s:0:\"\";s:14:\"content_length\";s:7:\"excerpt\";s:19:\"excerpt_length_blog\";s:2:\"10\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:15:\"dates_box_color\";s:17:\"var(--awb-color2)\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";i:0;s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:5:\"below\";s:23:\"blog_post_meta_position\";s:13:\"below_article\";s:18:\"social_sharing_box\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:13:\"related_posts\";s:1:\"1\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:14:\"meta_font_size\";s:4:\"13px\";s:11:\"date_format\";s:0:\"\";s:24:\"portfolio_archive_layout\";s:4:\"grid\";s:37:\"portfolio_archive_featured_image_size\";s:4:\"full\";s:25:\"portfolio_archive_columns\";i:1;s:32:\"portfolio_archive_column_spacing\";s:2:\"20\";s:23:\"portfolio_equal_heights\";i:0;s:42:\"portfolio_archive_one_column_text_position\";s:5:\"below\";s:23:\"portfolio_archive_items\";s:2:\"10\";s:29:\"portfolio_archive_text_layout\";s:7:\"no_text\";s:32:\"portfolio_archive_content_length\";s:7:\"excerpt\";s:32:\"portfolio_archive_excerpt_length\";s:2:\"10\";s:36:\"portfolio_archive_strip_html_excerpt\";s:1:\"1\";s:31:\"portfolio_archive_title_display\";s:3:\"all\";s:32:\"portfolio_archive_text_alignment\";s:4:\"left\";s:32:\"portfolio_archive_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:33:\"portfolio_archive_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:24:\"portfolio_meta_font_size\";s:4:\"13px\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:19:\"portfolio_width_100\";s:1:\"0\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:25:\"show_first_featured_image\";s:1:\"1\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:18:\"portfolio_comments\";s:1:\"0\";s:18:\"social_media_icons\";a:6:{s:25:\"fusionredux_repeater_data\";a:4:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:9:\"pinterest\";}s:3:\"url\";a:4:{i:0;s:1:\"#\";i:1;s:1:\"#\";i:2;s:1:\"#\";i:3;s:1:\"#\";}s:12:\"custom_title\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:16:\"custom_icon_mark\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"custom_source\";a:4:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;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:\"\";}i:2;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:\"\";}i:3;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:29:\"header_social_links_font_size\";s:4:\"16px\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_icon_color\";s:17:\"var(--awb-color1)\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:17:\"var(--awb-color1)\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"16px\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"footer_social_links_icon_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:17:\"var(--awb-color8)\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:17:\"slider_arrow_size\";s:4:\"14px\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:17:\"var(--awb-color8)\";s:16:\"es_caption_color\";s:17:\"var(--awb-color8)\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:17:\"form_input_height\";s:4:\"50px\";s:14:\"form_text_size\";s:4:\"16px\";s:13:\"form_bg_color\";s:17:\"var(--awb-color1)\";s:15:\"form_text_color\";s:17:\"var(--awb-color8)\";s:17:\"form_border_width\";a:4:{s:3:\"top\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";}s:17:\"form_border_color\";s:17:\"var(--awb-color3)\";s:23:\"form_focus_border_color\";s:17:\"var(--awb-color4)\";s:18:\"form_border_radius\";s:1:\"6\";s:19:\"form_views_counting\";s:3:\"all\";s:17:\"recaptcha_version\";s:2:\"v3\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:15:\"recaptcha_score\";s:3:\"0.5\";s:24:\"recaptcha_badge_position\";s:6:\"inline\";s:20:\"recaptcha_login_form\";s:1:\"0\";s:11:\"hubspot_api\";s:3:\"off\";s:11:\"hubspot_key\";s:0:\"\";s:19:\"reset_hubspot_cache\";s:0:\"\";s:13:\"mailchimp_api\";s:3:\"off\";s:13:\"mailchimp_key\";s:0:\"\";s:21:\"reset_mailchimp_cache\";s:0:\"\";s:13:\"email_address\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";s:29:\"contact_form_privacy_checkbox\";s:1:\"0\";s:26:\"contact_form_privacy_label\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:8:\"gmap_api\";s:0:\"\";s:13:\"gmap_api_type\";s:2:\"js\";s:18:\"gmap_embed_address\";s:0:\"\";s:19:\"gmap_embed_map_type\";s:7:\"roadmap\";s:12:\"gmap_address\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:9:\"gmap_type\";s:7:\"roadmap\";s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:14:\"gmap_topmargin\";s:4:\"55px\";s:14:\"map_zoom_level\";i:8;s:7:\"map_pin\";s:1:\"1\";s:18:\"gmap_pin_animation\";s:1:\"1\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:17:\"var(--awb-color4)\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:17:\"var(--awb-color5)\";s:22:\"map_infobox_text_color\";s:17:\"var(--awb-color1)\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:21:\"search_filter_results\";s:1:\"0\";s:14:\"search_content\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";}s:27:\"search_limit_to_post_titles\";s:1:\"0\";s:18:\"search_form_design\";s:5:\"clean\";s:11:\"live_search\";s:1:\"0\";s:26:\"live_search_min_char_count\";s:1:\"4\";s:28:\"live_search_results_per_page\";s:3:\"100\";s:26:\"live_search_results_height\";s:3:\"250\";s:34:\"live_search_display_featured_image\";s:1:\"1\";s:29:\"live_search_display_post_type\";s:1:\"1\";s:13:\"search_layout\";s:4:\"grid\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_pagination_type\";s:10:\"pagination\";s:19:\"search_grid_columns\";i:3;s:26:\"search_grid_column_spacing\";s:2:\"40\";s:21:\"search_content_length\";s:7:\"excerpt\";s:21:\"search_excerpt_length\";s:2:\"10\";s:25:\"search_strip_html_excerpt\";s:1:\"1\";s:22:\"search_featured_images\";s:1:\"1\";s:11:\"search_meta\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:26:\"search_new_search_position\";s:3:\"top\";s:18:\"gfonts_load_method\";s:3:\"cdn\";s:14:\"privacy_embeds\";s:1:\"0\";s:14:\"privacy_expiry\";s:2:\"30\";s:19:\"privacy_embed_types\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:22:\"privacy_embed_defaults\";a:0:{}s:16:\"privacy_bg_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:13:\"privacy_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\";s:11:\"privacy_bar\";s:1:\"0\";s:19:\"privacy_bar_padding\";a:4:{s:3:\"top\";s:4:\"15px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:20:\"privacy_bar_bg_color\";s:17:\"var(--awb-color8)\";s:21:\"privacy_bar_font_size\";s:4:\"13px\";s:17:\"privacy_bar_color\";s:17:\"var(--awb-color6)\";s:22:\"privacy_bar_link_color\";s:17:\"var(--awb-color2)\";s:28:\"privacy_bar_link_hover_color\";s:17:\"var(--awb-color4)\";s:16:\"privacy_bar_text\";s:51:\"This website uses cookies and third party services.\";s:23:\"privacy_bar_button_text\";s:2:\"OK\";s:23:\"privacy_bar_button_save\";s:1:\"0\";s:16:\"privacy_bar_more\";s:1:\"0\";s:21:\"privacy_bar_more_text\";s:8:\"Settings\";s:23:\"privacy_bar_update_text\";s:15:\"Update Settings\";s:30:\"privacy_bar_headings_font_size\";s:4:\"13px\";s:26:\"privacy_bar_headings_color\";s:17:\"var(--awb-color1)\";s:19:\"privacy_bar_content\";a:0:{}s:18:\"privacy_bar_reject\";s:1:\"0\";s:23:\"privacy_bar_reject_text\";s:6:\"Reject\";s:16:\"sidenav_behavior\";s:5:\"hover\";s:10:\"post_views\";s:9:\"page_load\";s:19:\"post_views_counting\";s:3:\"all\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"words\";s:16:\"disable_excerpts\";s:1:\"1\";s:24:\"excerpt_read_more_symbol\";s:5:\"[...]\";s:14:\"link_read_more\";s:1:\"0\";s:12:\"avatar_shape\";s:6:\"circle\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:14:\"totop_position\";s:5:\"right\";s:19:\"totop_border_radius\";s:1:\"6\";s:22:\"totop_scroll_down_only\";s:1:\"1\";s:16:\"custom_scrollbar\";s:1:\"0\";s:20:\"scrollbar_background\";s:17:\"var(--awb-color2)\";s:16:\"scrollbar_handle\";s:17:\"var(--awb-color4)\";s:8:\"faq_slug\";s:9:\"faq-items\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:20:\"number_related_posts\";s:1:\"4\";s:21:\"related_posts_columns\";i:4;s:28:\"related_posts_column_spacing\";s:2:\"48\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:1:\"0\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:24:\"image_gradient_top_color\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 20%))\";s:27:\"image_gradient_bottom_color\";s:17:\"var(--awb-color4)\";s:25:\"image_rollover_text_color\";s:17:\"var(--awb-color8)\";s:25:\"image_rollover_icon_color\";s:17:\"var(--awb-color1)\";s:17:\"pagination_sizing\";s:12:\"width_height\";s:23:\"pagination_width_height\";s:2:\"30\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:23:\"pagination_border_width\";s:1:\"1\";s:24:\"pagination_border_radius\";s:1:\"0\";s:23:\"pagination_text_display\";s:1:\"1\";s:20:\"pagination_font_size\";s:4:\"13px\";s:16:\"pagination_range\";s:1:\"1\";s:26:\"pagination_start_end_range\";s:1:\"0\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:17:\"var(--awb-color2)\";s:25:\"grid_separator_style_type\";s:12:\"double|solid\";s:20:\"grid_separator_color\";s:17:\"var(--awb-color3)\";s:18:\"masonry_grid_ratio\";s:3:\"1.5\";s:20:\"masonry_width_double\";s:4:\"2000\";s:23:\"enable_language_updates\";s:1:\"1\";s:19:\"dependencies_status\";s:1:\"1\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:19:\"status_avada_studio\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"1\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:7:\"desktop\";s:18:\"status_fontawesome\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:28:\"fontawesome_v4_compatibility\";s:1:\"0\";s:22:\"status_fontawesome_pro\";s:1:\"0\";s:14:\"status_outline\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:26:\"disable_rich_snippet_title\";s:1:\"1\";s:27:\"disable_rich_snippet_author\";s:1:\"1\";s:25:\"disable_rich_snippet_date\";s:1:\"1\";s:24:\"disable_rich_snippet_faq\";s:1:\"1\";s:34:\"enable_block_editor_backend_styles\";s:1:\"1\";s:17:\"load_block_styles\";s:2:\"on\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"0\";s:19:\"status_fusion_forms\";s:1:\"1\";s:21:\"status_awb_Off_Canvas\";s:1:\"1\";s:23:\"status_fusion_portfolio\";s:1:\"1\";s:18:\"status_fusion_faqs\";s:1:\"1\";s:10:\"svg_upload\";s:8:\"disabled\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:27:\"wp_big_image_size_threshold\";s:4:\"2560\";s:9:\"lazy_load\";s:4:\"none\";s:17:\"lazy_load_iframes\";s:4:\"none\";s:17:\"font_face_display\";s:5:\"block\";s:13:\"preload_fonts\";s:10:\"icon_fonts\";s:22:\"preload_fonts_variants\";s:3:\"400\";s:21:\"preload_fonts_subsets\";s:5:\"latin\";s:15:\"emojis_disabled\";s:7:\"enabled\";s:23:\"jquery_migrate_disabled\";s:7:\"enabled\";s:12:\"defer_jquery\";s:1:\"0\";s:12:\"defer_styles\";s:1:\"0\";s:11:\"gzip_status\";s:1:\"0\";s:12:\"video_facade\";s:3:\"off\";s:18:\"clear_object_cache\";s:1:\"0\";s:16:\"css_cache_method\";s:4:\"file\";s:30:\"css_combine_third_party_assets\";s:1:\"0\";s:19:\"media_queries_async\";s:1:\"0\";s:12:\"critical_css\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:11:\"js_compiler\";s:1:\"1\";s:19:\"reset_caches_button\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";}s:7:\"widgets\";a:28:{i:0;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"200\";s:11:\"option_name\";s:24:\"widget_ad_125_125-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:1;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"108\";s:11:\"option_name\";s:15:\"widget_archives\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:2;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"210\";s:11:\"option_name\";s:33:\"widget_avada-vertical-menu-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:3;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"103\";s:11:\"option_name\";s:12:\"widget_block\";s:12:\"option_value\";s:890:\"a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:4;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"107\";s:11:\"option_name\";s:15:\"widget_calendar\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:5;O:8:\"stdClass\":4:{s:9:\"option_id\";s:2:\"76\";s:11:\"option_name\";s:17:\"widget_categories\";s:12:\"option_value\";s:6:\"a:0:{}\";s:8:\"autoload\";s:3:\"yes\";}i:6;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"202\";s:11:\"option_name\";s:26:\"widget_contact_info-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:7;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"117\";s:11:\"option_name\";s:18:\"widget_custom_html\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:8;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"208\";s:11:\"option_name\";s:27:\"widget_facebook-like-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:9;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"206\";s:11:\"option_name\";s:20:\"widget_flickr-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:10;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"211\";s:11:\"option_name\";s:18:\"widget_form-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:11;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"201\";s:11:\"option_name\";s:27:\"widget_fusion_author-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:12;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"109\";s:11:\"option_name\";s:18:\"widget_media_audio\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:13;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"111\";s:11:\"option_name\";s:20:\"widget_media_gallery\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:14;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"110\";s:11:\"option_name\";s:18:\"widget_media_image\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:15;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"112\";s:11:\"option_name\";s:18:\"widget_media_video\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:16;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"209\";s:11:\"option_name\";s:18:\"widget_menu-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:17;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"113\";s:11:\"option_name\";s:11:\"widget_meta\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:18;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"116\";s:11:\"option_name\";s:15:\"widget_nav_menu\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:19;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"106\";s:11:\"option_name\";s:12:\"widget_pages\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:20;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"203\";s:11:\"option_name\";s:23:\"widget_pyre_tabs-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:21;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"204\";s:11:\"option_name\";s:26:\"widget_recent_works-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:22;O:8:\"stdClass\":4:{s:9:\"option_id\";s:2:\"78\";s:11:\"option_name\";s:10:\"widget_rss\";s:12:\"option_value\";s:6:\"a:0:{}\";s:8:\"autoload\";s:3:\"yes\";}i:23;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"114\";s:11:\"option_name\";s:13:\"widget_search\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:24;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"207\";s:11:\"option_name\";s:26:\"widget_social_links-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:25;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"115\";s:11:\"option_name\";s:16:\"widget_tag_cloud\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:26;O:8:\"stdClass\":4:{s:9:\"option_id\";s:2:\"77\";s:11:\"option_name\";s:11:\"widget_text\";s:12:\"option_value\";s:6:\"a:0:{}\";s:8:\"autoload\";s:3:\"yes\";}i:27;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"205\";s:11:\"option_name\";s:20:\"widget_tweets-widget\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}}s:16:\"sidebars_widgets\";a:11:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:21:\"avada-footer-widget-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:21:\"avada-footer-widget-2\";a:0:{}s:21:\"avada-footer-widget-3\";a:0:{}s:21:\"avada-footer-widget-4\";a:0:{}s:25:\"avada-slidingbar-widget-1\";a:0:{}s:25:\"avada-slidingbar-widget-2\";a:0:{}s:25:\"avada-slidingbar-widget-3\";a:0:{}s:25:\"avada-slidingbar-widget-4\";a:0:{}s:13:\"array_version\";i:3;}s:12:\"sbg_sidebars\";b:0;s:8:\"blogname\";s:117:\"Rotary Club of Westlake Village Sunrisehttps://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-setup#setup_type\";s:13:\"page_on_front\";s:2:\"22\";s:13:\"show_on_front\";s:4:\"page\";s:18:\"nav_menu_locations\";a:0:{}s:12:\"general_data\";s:8:\"imported\";}}','no'),(331,'portfolio_category_children','a:0:{}','yes'),(332,'portfolio_skills_children','a:0:{}','yes'),(333,'faq_category_children','a:0:{}','yes'),(8703,'slide-page_children','a:0:{}','yes'),(336,'template_category_children','a:0:{}','yes'),(338,'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'),(339,'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'),(9458,'tenweb_requests_block','a:2:{s:13:\"user_products\";i:0;s:11:\"send_states\";i:0;}','no'),(11555,'widget_paypal_donations','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(11934,'_transient_timeout_wpseo_total_unindexed_posts_limited','1673328843','no'),(11935,'_transient_wpseo_total_unindexed_posts_limited','2','no'),(9464,'tenweb_addons_state_hash','d751713988987e9331980363e24189ce','yes'),(9465,'tenweb_site_state_hash','d2f15a8900e456d53967da9483582c7d','yes'),(9466,'_site_transient_timeout_tenweb_auth_error_logs','1675883122','no'),(9467,'_site_transient_tenweb_auth_error_logs','a:1:{s:25:\"send_site_state_api_error\";a:2:{s:3:\"msg\";s:11901:\"[{\"message\":\"404 Not Found\",\"status_code\":404},\"https:\\/\\/manager.10web.io\\/api\\/site-state\\/\",{\"method\":\"POST\",\"body\":{\"data\":{\"blog_id\":null,\"plugins_info\":{\"is_network\":0,\"products\":[{\"product_id\":101,\"slug\":\"photo-gallery\",\"title\":\"Photo Gallery\",\"description\":\"This plugin is a fully responsive gallery plugin with advanced functionality.  It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.\",\"version\":\"1.8.9\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":1,\"author\":\"Photo Gallery Team\",\"repo_version\":\"1.8.9\"},{\"product_id\":177,\"slug\":\"tenweb-speed-optimizer\",\"title\":\"10Web Booster\",\"description\":\"Optimize your website speed and performance with 10Web Booster by compressing CSS and JavaScript.\",\"version\":\"2.11.43\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":1,\"screenshot\":\"\",\"tenweb_product\":1,\"author\":\"10Web - Website speed optimization team\",\"repo_version\":\"2.11.43\"},{\"product_id\":51,\"slug\":\"10web-manager\",\"title\":\"10WEB Manager\",\"description\":\"\",\"version\":\"0.0.0\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":1,\"author\":\"\",\"repo_version\":null},{\"product_id\":0,\"slug\":\"akismet\",\"title\":\"Akismet Anti-Spam\",\"description\":\"Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam<\\/strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.\",\"version\":\"5.0.2\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"Automattic\",\"repo_version\":\"5.0.2\"},{\"product_id\":0,\"slug\":\"fusion-builder\",\"title\":\"Avada Builder\",\"description\":\"The advanced, premium drag & drop Avada Website Builder. Streamline your work and save time for the more important things.\",\"version\":\"3.9.1\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"ThemeFusion\",\"repo_version\":\"3.9.1\"},{\"product_id\":0,\"slug\":\"fusion-core\",\"title\":\"Avada Core\",\"description\":\"Avada Core Plugin for the advanced, premium drag & drop Avada Website Builder. Streamline your work and save time for the more important things.\",\"version\":\"5.9.1\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"ThemeFusion\",\"repo_version\":\"5.9.1\"},{\"product_id\":0,\"slug\":\"eventON\",\"title\":\"EventON\",\"description\":\"A beautifully crafted minimal calendar experience\",\"version\":\"4.2.2\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"AshanJay\",\"repo_version\":\"4.2.2\"},{\"product_id\":0,\"slug\":\"eventon-ics-importer\",\"title\":\"EventON - ICS importer\",\"description\":\"Import events from a .ICS file into eventON system\",\"version\":\"1.1.4\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"Ashan Jay\",\"repo_version\":\"1.1.4\"},{\"product_id\":0,\"slug\":\"hello.php\",\"title\":\"Hello Dolly\",\"description\":\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly<\\/cite> in the upper right of your admin screen on every page.\",\"version\":\"1.7.2\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"Matt Mullenweg\",\"repo_version\":\"1.7.2\"},{\"product_id\":0,\"slug\":\"photonic\",\"title\":\"Photonic Gallery & Lightbox for Flickr, SmugMug, Google Photos & Others\",\"description\":\"Extends the native gallery to support Flickr, SmugMug, Google Photos, Zenfolio and Instagram. JS libraries like BaguetteBox, BigPicture, Gie Lightbox, LightGallery, PhotoSwipe, Spotlight, Swipebox, Fancybox, Magnific, Colorbox, PrettyPhoto, Image Lightbox, Featherlight and Lightcase are supported. Photos are displayed in vanilla grids of thumbnails, or more fancy slideshows, or justified or masonry or random mosaic layouts. The plugin also extends all layout options to a regular WP gallery.\",\"version\":\"2.83\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"Sayontan Sinha\",\"repo_version\":\"2.83\"},{\"product_id\":0,\"slug\":\"custom-facebook-feed\",\"title\":\"Smash Balloon Custom Facebook Feed\",\"description\":\"Add completely customizable Facebook feeds to your WordPress site\",\"version\":\"4.1.6\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"Smash Balloon\",\"repo_version\":\"4.1.6\"},{\"product_id\":0,\"slug\":\"wp-smushit\",\"title\":\"Smush\",\"description\":\"Reduce image file sizes, improve performance and boost your SEO using the free <a href=\\\"https:\\/\\/wpmudev.com\\/\\\">WPMU DEV<\\/a> WordPress Smush API.\",\"version\":\"3.12.4\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"WPMU DEV\",\"repo_version\":\"3.12.4\"},{\"product_id\":0,\"slug\":\"the-events-calendar\",\"title\":\"The Events Calendar\",\"description\":\"The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.\",\"version\":\"6.0.6.2\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"The Events Calendar\",\"repo_version\":\"6.0.6.2\"},{\"product_id\":0,\"slug\":\"duplicate-post\",\"title\":\"Yoast Duplicate Post\",\"description\":\"The go-to tool for cloning posts and pages, including the powerful Rewrite & Republish feature.\",\"version\":\"4.5\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"Enrico Battocchi & Team Yoast\",\"repo_version\":\"4.5\"},{\"product_id\":0,\"slug\":\"wordpress-seo\",\"title\":\"Yoast SEO\",\"description\":\"The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.\",\"version\":\"19.13\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"\",\"tenweb_product\":0,\"author\":\"Team Yoast\",\"repo_version\":\"19.13\"}]},\"themes_info\":{\"is_network\":0,\"products\":[{\"product_id\":0,\"slug\":\"Avada-Child-Theme\",\"title\":\"Avada Child\",\"description\":\"Child theme for Avada theme\",\"version\":\"1.0.0\",\"installed\":1,\"active\":1,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"https:\\/\\/test-site.wlvrotary.org\\/wp-content\\/themes\\/Avada-Child-Theme\\/screenshot.jpg\",\"tenweb_product\":0,\"author\":\"ThemeFusion\",\"repo_version\":\"1.0.0\",\"parent_theme_name\":\"Avada\",\"theme_errors\":[]},{\"product_id\":0,\"slug\":\"Avada\",\"title\":\"Avada\",\"description\":\"The Avada Website Builder is the ultimate design and creation suite. Design Anything, Build Everything, Fast. The #1 selling product of all time on ThemeForest.\",\"version\":\"7.9.1\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"https:\\/\\/test-site.wlvrotary.org\\/wp-content\\/themes\\/Avada\\/screenshot.jpg\",\"tenweb_product\":0,\"author\":\"ThemeFusion\",\"repo_version\":\"7.9.1\",\"parent_theme_name\":\"\",\"theme_errors\":[]},{\"product_id\":0,\"slug\":\"twentytwenty\",\"title\":\"Twenty Twenty\",\"description\":\"Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.\",\"version\":\"2.1\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"https:\\/\\/test-site.wlvrotary.org\\/wp-content\\/themes\\/twentytwenty\\/screenshot.png\",\"tenweb_product\":0,\"author\":\"the WordPress team\",\"repo_version\":\"2.1\",\"parent_theme_name\":\"\",\"theme_errors\":[]},{\"product_id\":0,\"slug\":\"twentytwentyone\",\"title\":\"Twenty Twenty-One\",\"description\":\"Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme\\u2019s soft colors and eye-catching \\u2014 yet timeless \\u2014 design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.\",\"version\":\"1.7\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"https:\\/\\/test-site.wlvrotary.org\\/wp-content\\/themes\\/twentytwentyone\\/screenshot.png\",\"tenweb_product\":0,\"author\":\"the WordPress team\",\"repo_version\":\"1.7\",\"parent_theme_name\":\"\",\"theme_errors\":[]},{\"product_id\":0,\"slug\":\"twentytwentythree\",\"title\":\"Twenty Twenty-Three\",\"description\":\"Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.\",\"version\":\"1.0\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"https:\\/\\/test-site.wlvrotary.org\\/wp-content\\/themes\\/twentytwentythree\\/screenshot.png\",\"tenweb_product\":0,\"author\":\"the WordPress team\",\"repo_version\":\"1.0\",\"parent_theme_name\":\"\",\"theme_errors\":[]},{\"product_id\":0,\"slug\":\"twentytwentytwo\",\"title\":\"Twenty Twenty-Two\",\"description\":\"Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme\\u2019s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Full Site Editing features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you\\u2019re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours.\",\"version\":\"1.3\",\"installed\":1,\"active\":0,\"network_active\":0,\"is_paid\":0,\"screenshot\":\"https:\\/\\/test-site.wlvrotary.org\\/wp-content\\/themes\\/twentytwentytwo\\/screenshot.png\",\"tenweb_product\":0,\"author\":\"the WordPress team\",\"repo_version\":\"1.3\",\"parent_theme_name\":\"\",\"theme_errors\":[]}]},\"addons_info\":{\"is_network\":0,\"products\":[]},\"site_info\":{\"platform\":\"wordpress\",\"site_url\":\"https:\\/\\/test-site.wlvrotary.org\",\"admin_url\":\"https:\\/\\/test-site.wlvrotary.org\\/wp-admin\\/\",\"name\":\"https:\\/\\/test-site.wlvrotary.org\",\"site_title\":\"Rotary Club of Westlake Village Sunrise\",\"site_screenshot_url\":\"https:\\/\\/test-site.wlvrotary.org\",\"platform_version\":\"6.1.1\",\"php_version\":\"8.0.26\",\"mysql_version\":\"10.3.37-MariaDB-log\",\"timezone\":\"UTC\",\"server_type\":\"Apache\",\"server_version\":\"Apache\",\"other_data\":\"{\\\"file_system\\\":{\\\"method\\\":\\\"direct\\\",\\\"config\\\":1},\\\"is_network\\\":0,\\\"blog_id\\\":null,\\\"manager_version\\\":\\\"two-2.11.43\\\"}\",\"is_network\":0,\"manager_version\":\"two-2.11.43\"}}},\"headers\":{\"Accept\":\"application\\/x.10webmanager.v1+json\"},\"timeout\":50000}]\";s:4:\"date\";s:19:\"2023-01-08 19:05:22\";}}','no'),(9497,'photonic_options','a:8:{s:16:\"google_client_id\";s:73:\"1019594447018-f9pv7jmt3edq3ihmg7047tpf4qgm3m4v.apps.googleusercontent.com\";s:20:\"google_client_secret\";s:73:\"1019594447018-f9pv7jmt3edq3ihmg7047tpf4qgm3m4v.apps.googleusercontent.com\";s:20:\"google_refresh_token\";s:0:\"\";s:12:\"google_media\";s:6:\"photos\";s:37:\"google_hide_album_photo_count_display\";s:2:\"on\";s:20:\"google_title_caption\";s:5:\"title\";s:20:\"google_layout_engine\";s:3:\"css\";s:16:\"last-set-section\";s:15:\"google-settings\";}','yes'),(9471,'tw_optimize_version','2.11.43','yes'),(9472,'two_delayed_js_execution_list_updated_fix_slashes','1','yes'),(11476,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1673392414','no'),(11477,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(11478,'_transient_timeout_wpseo_total_unindexed_general_items','1673392414','no'),(11479,'_transient_wpseo_total_unindexed_general_items','2','no'),(11480,'_transient_timeout_wpseo_unindexed_post_link_count','1673392414','no'),(11481,'_transient_wpseo_unindexed_post_link_count','29','no'),(9487,'bwg_magic_data','a:2:{s:10:\"magic_data\";s:248:\"eyJtYWdpY190b2tlbiI6ImQ2OWUxOTk1LWRhZDctNGI2MS04MDMxLTMxZGI2ZmY4Y2Y3M19LcXhLMndsZEF0aW1rNXFOdk9XRkFzdnBXdVV1eE92bEJNU1NEbEdYdTdxSGtrQW5FT1c4YUdxQVY0R0s2ZExKRUI0MjVSM1ZDTUpNYnNzOGc4OWNMOENha3FxbUNqbTkiLCJlbWFpbCI6Im1taWR1cmEucm90YXJ5QGdtYWlsLmNvbSJ9\";s:11:\"has_account\";i:1;}','yes'),(9500,'photonic_css','.photonic-panel { background:  rgb(17,17,17)  !important;\n\n	border-top: none;\n	border-right: none;\n	border-bottom: none;\n	border-left: none;\n }\n.photonic-flickr-stream .photonic-pad-photosets { margin: 10px; }\n.photonic-flickr-stream .photonic-pad-galleries { margin: 10px; }\n.photonic-flickr-stream .photonic-pad-photos { padding: 5px 10px; }\n.photonic-google-stream .photonic-pad-photos { padding: 5px 10px; }\n.photonic-zenfolio-stream .photonic-pad-photos { padding: 5px 10px; }\n.photonic-zenfolio-stream .photonic-pad-photosets { margin: 5px 10px; }\n.photonic-smug-stream .photonic-pad-albums { margin: 10px; }\n.photonic-smug-stream .photonic-pad-photos { padding: 5px 10px; }\n.photonic-random-layout .photonic-thumb { padding: 2px}\n.photonic-masonry-layout .photonic-thumb { padding: 2px}\n.photonic-mosaic-layout .photonic-thumb { padding: 2px}\n','yes'),(11968,'_transient_fusion_subsets_preload_tags','<link rel=\"preload\" href=\"//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2\" as=\"font\" type=\"font/woff2\" crossorigin><link rel=\"preload\" href=\"//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2\" as=\"font\" type=\"font/woff2\" crossorigin><link rel=\"preload\" href=\"//test-site.wlvrotary.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>','yes'),(11969,'_transient_fusion_custom_icons_preload_tags','<link rel=\"preload\" href=\"https://test-site.wlvrotary.org/wp-content/uploads/fusion-icons/avada-handyman-v1.0/fonts/avada-handyman.ttf?g21dbk\" as=\"font\" type=\"font/ttf\" crossorigin>','yes'),(11997,'_transient_timeout_fusion_dynamic_js_filenames','1673386774','no'),(11998,'_transient_fusion_dynamic_js_filenames','a:1:{s:36:\"1700aae2a36c873c72ca0b8d834898f7806e\";s:32:\"f0995a0adeeeee8f912da3b2d0ce07a1\";}','no'),(11972,'_transient_fusion_dynamic_js_readable','1','yes'),(11973,'_transient_avada_premium_plugins_info','a:14:{s:11:\"fusion-core\";a:18:{s:4:\"name\";s:11:\"Fusion Core\";s:11:\"plugin_name\";s:10:\"Avada Core\";s:4:\"slug\";s:11:\"fusion-core\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:23:\"http://theme-fusion.com\";s:5:\"image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-thumbnail.jpg\";s:9:\"image_url\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-thumbnail.jpg\";s:12:\"external_url\";s:30:\"https://avada.theme-fusion.com\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"5.9.1\";s:8:\"required\";b:1;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:11:\"tf_cs_image\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"5.9.1\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:23:\"http://theme-fusion.com\";}s:14:\"fusion-builder\";a:18:{s:4:\"name\";s:14:\"Fusion Builder\";s:11:\"plugin_name\";s:13:\"Avada Builder\";s:4:\"slug\";s:14:\"fusion-builder\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:24:\"https://theme-fusion.com\";s:5:\"image\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-thumbnail.jpg\";s:9:\"image_url\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-thumbnail.jpg\";s:12:\"external_url\";s:30:\"https://avada.theme-fusion.com\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"3.9.1\";s:8:\"required\";b:1;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:11:\"tf_cs_image\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"3.9.1\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:24:\"https://theme-fusion.com\";}s:27:\"fusion-white-label-branding\";a:18:{s:4:\"name\";s:27:\"Fusion White Label Branding\";s:11:\"plugin_name\";s:21:\"Avada Custom Branding\";s:4:\"slug\";s:27:\"fusion-white-label-branding\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:24:\"https://theme-fusion.com\";s:5:\"image\";s:95:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custom-branding-thumbnail.jpg\";s:9:\"image_url\";s:95:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custom-branding-thumbnail.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:3:\"1.2\";s:8:\"required\";b:0;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:96:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custombranding-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:3:\"1.2\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:24:\"https://theme-fusion.com\";}s:9:\"revslider\";a:18:{s:4:\"name\";s:17:\"Slider Revolution\";s:11:\"plugin_name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:13:\"plugin_author\";s:10:\"ThemePunch\";s:17:\"plugin_author_url\";s:22:\"http://themepunch.com/\";s:5:\"image\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution-1.png\";s:9:\"image_url\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution-1.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"6.6.8\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution_cs.png\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"6.6.8\";s:6:\"Author\";s:10:\"ThemePunch\";s:9:\"AuthorURI\";s:22:\"http://themepunch.com/\";}s:11:\"LayerSlider\";a:18:{s:4:\"name\";s:14:\"LayerSlider WP\";s:11:\"plugin_name\";s:14:\"LayerSlider WP\";s:4:\"slug\";s:11:\"LayerSlider\";s:13:\"plugin_author\";s:14:\"Kreatura Media\";s:17:\"plugin_author_url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:5:\"image\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:9:\"image_url\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"7.6.7\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/layerslider_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"7.6.7\";s:6:\"Author\";s:14:\"Kreatura Media\";s:9:\"AuthorURI\";s:38:\"https://layerslider.kreaturamedia.com/\";}s:26:\"advanced-custom-fields-pro\";a:18:{s:4:\"name\";s:26:\"Advanced Custom Fields PRO\";s:11:\"plugin_name\";s:26:\"Advanced Custom Fields PRO\";s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:13:\"plugin_author\";s:13:\"Elliot Condon\";s:17:\"plugin_author_url\";s:28:\"http://www.elliotcondon.com/\";s:5:\"image\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro.png\";s:9:\"image_url\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"6.0.6\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"6.0.6\";s:6:\"Author\";s:13:\"Elliot Condon\";s:9:\"AuthorURI\";s:28:\"http://www.elliotcondon.com/\";}s:11:\"convertplug\";a:18:{s:4:\"name\";s:12:\"Convert Plus\";s:11:\"plugin_name\";s:12:\"Convert Plus\";s:4:\"slug\";s:11:\"convertplug\";s:13:\"plugin_author\";s:16:\"Brainstorm Force\";s:17:\"plugin_author_url\";s:31:\"https://www.brainstormforce.com\";s:5:\"image\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail.jpg\";s:9:\"image_url\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"3.5.24\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:98:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"3.5.24\";s:6:\"Author\";s:16:\"Brainstorm Force\";s:9:\"AuthorURI\";s:31:\"https://www.brainstormforce.com\";}s:12:\"filebird-pro\";a:18:{s:4:\"name\";s:8:\"FileBird\";s:11:\"plugin_name\";s:8:\"FileBird\";s:4:\"slug\";s:12:\"filebird-pro\";s:13:\"plugin_author\";s:10:\"Ninja Team\";s:17:\"plugin_author_url\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";s:5:\"image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:9:\"image_url\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"5.1.4\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966169-d3ae8280-2d8d-11eb-895e-0191ae051d45.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"5.1.4\";s:6:\"Author\";s:10:\"Ninja Team\";s:9:\"AuthorURI\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";}s:6:\"leadin\";a:15:{s:4:\"name\";s:7:\"HubSpot\";s:11:\"plugin_name\";s:7:\"HubSpot\";s:4:\"slug\";s:6:\"leadin\";s:13:\"plugin_author\";s:7:\"HubSpot\";s:17:\"plugin_author_url\";s:23:\"https://www.hubspot.com\";s:5:\"image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:9:\"image_url\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:11:\"has_package\";b:0;}s:11:\"woocommerce\";a:15:{s:4:\"name\";s:11:\"WooCommerce\";s:11:\"plugin_name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:13:\"plugin_author\";s:10:\"Automattic\";s:17:\"plugin_author_url\";s:23:\"https://woocommerce.com\";s:5:\"image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:9:\"image_url\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:11:\"has_package\";b:0;}s:19:\"the-events-calendar\";a:15:{s:4:\"name\";s:19:\"The Events Calendar\";s:11:\"plugin_name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:13:\"plugin_author\";s:18:\"Modern Tribe, Inc.\";s:17:\"plugin_author_url\";s:18:\"http://m.tri.be/1x\";s:5:\"image\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:9:\"image_url\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:12:\"external_url\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:13:\"wordpress-seo\";a:15:{s:4:\"name\";s:9:\"Yoast SEO\";s:11:\"plugin_name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:13:\"plugin_author\";s:10:\"Team Yoast\";s:17:\"plugin_author_url\";s:18:\"https://yoast.com/\";s:5:\"image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:9:\"image_url\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:12:\"external_url\";s:56:\"https://downloads.wordpress.org/plugin/wordpress-seo.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:11:\"has_package\";b:0;}s:7:\"bbpress\";a:15:{s:4:\"name\";s:7:\"bbPress\";s:11:\"plugin_name\";s:7:\"bbPress\";s:4:\"slug\";s:7:\"bbpress\";s:13:\"plugin_author\";s:21:\"The bbPress Community\";s:17:\"plugin_author_url\";s:19:\"https://bbpress.org\";s:5:\"image\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:9:\"image_url\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:12:\"external_url\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:3:\"pwa\";a:15:{s:4:\"name\";s:3:\"PWA\";s:11:\"plugin_name\";s:3:\"PWA\";s:4:\"slug\";s:3:\"pwa\";s:13:\"plugin_author\";s:23:\"PWA Plugin Contributors\";s:17:\"plugin_author_url\";s:49:\"https://github.com/xwp/pwa-wp/graphs/contributors\";s:5:\"image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:9:\"image_url\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:12:\"external_url\";s:46:\"https://downloads.wordpress.org/plugin/pwa.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_256_256.jpg\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_1544_500.jpg\";s:11:\"tf_cs_image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_840_438.jpg\";s:11:\"has_package\";b:0;}}','no'),(10192,'_transient_timeout_select3-css_style_cdn_is_up','1673312578','no'),(10193,'_transient_select3-css_style_cdn_is_up','1','no'),(10194,'_transient_timeout_select3-js_script_cdn_is_up','1673312578','no'),(10195,'_transient_select3-js_script_cdn_is_up','1','no'),(9705,'two_clear_cache_logs','a:1:{i:0;a:8:{s:7:\"is_json\";b:0;s:27:\"excludeCriticalRegeneration\";b:1;s:27:\"delete_tenweb_manager_cache\";b:1;s:23:\"delete_cloudflare_cache\";b:1;s:26:\"critical_regeneration_mode\";s:10:\"front_page\";s:14:\"clear_critical\";b:0;s:11:\"stack_trace\";a:7:{i:0;s:125:\"#2 wp-content/plugins/tenweb-speed-optimizer/OptimizerAdmin.php(1052): TenWebOptimizer\\OptimizerLogger::add_clear_cache_log()\";i:1;s:116:\"#3 wp-content/plugins/tenweb-speed-optimizer/OptimizerAdmin.php(1253): TenWebOptimizer\\OptimizerAdmin::clear_cache()\";i:2;s:87:\"#4 wp-includes/class-wp-hook.php(308): TenWebOptimizer\\OptimizerAdmin::two_deactivate()\";i:3;s:63:\"#5 wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters()\";i:4;s:52:\"#6 wp-includes/plugin.php(517): WP_Hook->do_action()\";i:5;s:49:\"#7 wp-admin/includes/plugin.php(814): do_action()\";i:6;s:50:\"#8 wp-admin/plugins.php(209): deactivate_plugins()\";}s:4:\"date\";i:1673215647;}}','no');
/*!40000 ALTER TABLE `wpwlvrot_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_postmeta`
--

DROP TABLE IF EXISTS `wpwlvrot_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM AUTO_INCREMENT=3013 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_postmeta`
--

LOCK TABLES `wpwlvrot_postmeta` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_postmeta` DISABLE KEYS */;
INSERT INTO `wpwlvrot_postmeta` VALUES (2,3,'_wp_page_template','default'),(8,7,'_wp_attached_file','2022/08/avada-placeholder.svg'),(7,1,'_fusion','a:0:{}'),(11,8,'_fusion_setup_wizard_import','1'),(12,8,'_thumbnail_id','7'),(15,9,'_fusion_setup_wizard_import','1'),(16,9,'_thumbnail_id','7'),(139,50,'_wp_attached_file','2022/08/logo-studio-default-3.png'),(19,10,'_fusion_setup_wizard_import','1'),(20,10,'_thumbnail_id','7'),(23,11,'_fusion_setup_wizard_import','1'),(24,11,'_thumbnail_id','7'),(27,12,'_fusion_setup_wizard_import','1'),(28,12,'_thumbnail_id','7'),(31,13,'_fusion_setup_wizard_import','1'),(32,13,'_thumbnail_id','7'),(35,14,'_fusion_setup_wizard_import','1'),(36,14,'_thumbnail_id','7'),(39,15,'_fusion_setup_wizard_import','1'),(40,15,'_thumbnail_id','7'),(43,16,'_fusion_setup_wizard_import','1'),(44,16,'_thumbnail_id','7'),(47,17,'_fusion_setup_wizard_import','1'),(48,17,'_thumbnail_id','7'),(51,18,'_fusion_setup_wizard_import','1'),(52,18,'_thumbnail_id','7'),(55,19,'_fusion_setup_wizard_import','1'),(56,19,'_thumbnail_id','7'),(59,20,'_fusion_setup_wizard_import','1'),(60,20,'_thumbnail_id','7'),(140,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:248;s:6:\"height\";i:66;s:4:\"file\";s:33:\"2022/08/logo-studio-default-3.png\";s:8:\"filesize\";i:1466;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"logo-studio-default-3-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1701;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"logo-studio-default-3-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:699;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"logo-studio-default-3-200x53.png\";s:5:\"width\";i:200;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4708;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:32:\"logo-studio-default-3-177x66.png\";s:5:\"width\";i:177;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2012;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,21,'_fusion_setup_wizard_import','1'),(64,21,'_thumbnail_id','7'),(65,23,'_fusion','a:19:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:8:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:7:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(66,23,'_fusion_google_fonts','a:1:{s:5:\"Inter\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"500\";}}}'),(67,23,'_avada_studio_import_key','22f310983ff0d5b415f4d5fa64752d96'),(68,23,'_avada_studio_post','2288'),(69,22,'_wp_page_template','100-width.php'),(70,22,'fusion_builder_status','active'),(71,22,'_fusion','a:18:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:7:\"h2_size\";s:4:\"46px\";s:7:\"h4_size\";s:4:\"22px\";s:7:\"h3_size\";s:4:\"32px\";s:7:\"h1_size\";s:4:\"52px\";s:7:\"h5_size\";s:4:\"18px\";s:7:\"h6_size\";s:4:\"16px\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:14:\"page_title_bar\";s:2:\"no\";}'),(72,22,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"400\";}}}'),(73,22,'_avada_studio_import_key','e58e4d95b8e85fe3a12abc825aa4ffe0'),(74,22,'_avada_studio_post','2161'),(75,26,'_fusion','a:15:{s:13:\"preview_width\";s:3:\"100\";s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(76,26,'_avada_studio_import_key','ef545575fa0cf95fbaea52a6c363caa1'),(77,26,'_avada_studio_post','2238'),(78,27,'_fusion','a:19:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:8:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:7:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(79,27,'_avada_studio_import_key','704d15d4ec0b624d8a362349703f2162'),(80,27,'_avada_studio_post','2255'),(81,29,'_fusion','a:14:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:4:\"term\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(82,29,'_avada_studio_import_key','92744e9929d8f9c974c119af7cdcfda1'),(83,29,'_avada_studio_post','2295'),(84,30,'_fusion','a:14:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(85,30,'_avada_studio_import_key','6c26f065fe0fe3a112c2ccffc7201312'),(86,30,'_avada_studio_post','2296'),(92,32,'_fusion','a:16:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(93,32,'_avada_studio_import_key','bdafc34694749408a0c804137a02cb2a'),(94,32,'_avada_studio_post','2228'),(95,33,'_fusion','a:16:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(96,33,'_avada_studio_import_key','e41c75faeeb0809b34939c3eeab750b1'),(97,33,'_avada_studio_post','2309'),(98,34,'_fusion','a:25:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"1866\";}s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:16:\"template_sidebar\";s:0:\"\";s:18:\"template_sidebar_2\";s:0:\"\";s:14:\"sidebar_sticky\";s:7:\"default\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(99,34,'_avada_studio_import_key','d629f3469ee887f8bc5ed77ee6d09726'),(100,34,'_avada_studio_post','2229'),(101,37,'_fusion','a:22:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:8:\"archives\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:7:\"h4_size\";s:4:\"22px\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(102,37,'_avada_studio_import_key','66fb556d21b14fedaf856ffa9a69a8a9'),(103,37,'_avada_studio_post','2231'),(104,44,'_fusion','a:29:{s:12:\"nonce_method\";s:4:\"ajax\";s:14:\"label_position\";s:5:\"above\";s:12:\"field_margin\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:17:\"form_input_height\";s:4:\"50px\";s:13:\"form_bg_color\";s:17:\"var(--awb-color2)\";s:22:\"form_placeholder_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 40%))\";s:17:\"form_border_width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:17:\"form_border_color\";s:17:\"var(--awb-color2)\";s:23:\"form_focus_border_color\";s:17:\"var(--awb-color5)\";s:9:\"form_type\";s:4:\"ajax\";s:6:\"method\";s:4:\"post\";s:10:\"url_method\";s:4:\"post\";s:14:\"custom_headers\";s:2:\"[]\";s:19:\"privacy_store_ip_ua\";s:2:\"no\";s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:12:\"form_actions\";a:1:{i:0;s:8:\"database\";}s:10:\"off_canvas\";s:4:\"2363\";s:22:\"form_confirmation_type\";s:7:\"message\";s:25:\"privacy_expiration_action\";s:9:\"anonymize\";s:16:\"avada_78_upgrade\";s:1:\"1\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(105,44,'_avada_studio_import_key','5d630ce763606922d0d5d4ec12aa11f5'),(106,44,'_avada_studio_post','2282'),(107,43,'_wp_page_template','100-width.php'),(108,43,'fusion_builder_status','active'),(109,43,'_fusion','a:12:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:14:\"page_title_bar\";s:2:\"no\";}'),(110,43,'_avada_studio_import_key','f151246f216968796b81a2d58452cb40'),(111,43,'_avada_studio_post','2283'),(112,46,'_menu_item_type','post_type'),(113,46,'_menu_item_menu_item_parent','0'),(114,46,'_menu_item_object_id','22'),(115,46,'_menu_item_object','page'),(116,46,'_menu_item_target',''),(117,46,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(118,46,'_menu_item_xfn',''),(119,46,'_menu_item_url',''),(120,46,'_menu_item_fusion_megamenu','a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(130,48,'_menu_item_type','post_type'),(131,48,'_menu_item_menu_item_parent','0'),(132,48,'_menu_item_object_id','43'),(133,48,'_menu_item_object','page'),(134,48,'_menu_item_target',''),(135,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(136,48,'_menu_item_xfn',''),(137,48,'_menu_item_url',''),(138,48,'_menu_item_fusion_megamenu','a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(141,50,'_source_url','https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-3.png'),(142,50,'_avada_studio_media','538cd5c9fab4d6c7de585cd61fb4c7dc'),(143,49,'_fusion','a:18:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color8_overwrite\";s:7:\"#22201d\";s:16:\"color5_overwrite\";s:7:\"#e86247\";s:16:\"color6_overwrite\";s:7:\"#c34535\";s:21:\"typography3_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:9:\"font-size\";s:4:\"16px\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"20px\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f7efdc\";s:16:\"color3_overwrite\";s:7:\"#e2d4d0\";s:16:\"color4_overwrite\";s:7:\"#e5cd30\";s:16:\"color7_overwrite\";s:7:\"#3d3a36\";}'),(144,49,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography4-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography4)\";}}s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}'),(145,49,'_avada_studio_import_key','d4f62074f541f5139a02f6baa99393d2'),(146,49,'_avada_studio_post','496'),(147,52,'_menu_item_type','custom'),(148,52,'_menu_item_menu_item_parent','0'),(149,52,'_menu_item_object_id','52'),(150,52,'_menu_item_object','custom'),(151,52,'_menu_item_target',''),(152,52,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(153,52,'_menu_item_xfn',''),(154,52,'_menu_item_url','#'),(155,52,'_menu_item_fusion_megamenu','a:21:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(156,52,'_avada_studio_post','1002'),(157,53,'_menu_item_type','custom'),(158,53,'_menu_item_menu_item_parent','0'),(159,53,'_menu_item_object_id','53'),(160,53,'_menu_item_object','custom'),(161,53,'_menu_item_target',''),(162,53,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(163,53,'_menu_item_xfn',''),(164,53,'_menu_item_url','#'),(165,53,'_menu_item_fusion_megamenu','a:21:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(166,53,'_avada_studio_post','1003'),(167,54,'_menu_item_type','custom'),(168,54,'_menu_item_menu_item_parent','0'),(169,54,'_menu_item_object_id','54'),(170,54,'_menu_item_object','custom'),(171,54,'_menu_item_target',''),(172,54,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(173,54,'_menu_item_xfn',''),(174,54,'_menu_item_url','#'),(175,54,'_menu_item_fusion_megamenu','a:21:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(176,54,'_avada_studio_post','1004'),(177,55,'_menu_item_type','custom'),(178,55,'_menu_item_menu_item_parent','0'),(179,55,'_menu_item_object_id','55'),(180,55,'_menu_item_object','custom'),(181,55,'_menu_item_target',''),(182,55,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(183,55,'_menu_item_xfn',''),(184,55,'_menu_item_url','#'),(185,55,'_menu_item_fusion_megamenu','a:21:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(186,55,'_avada_studio_post','1005'),(187,56,'_menu_item_type','custom'),(188,56,'_menu_item_menu_item_parent','0'),(189,56,'_menu_item_object_id','56'),(190,56,'_menu_item_object','custom'),(191,56,'_menu_item_target',''),(192,56,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(193,56,'_menu_item_xfn',''),(194,56,'_menu_item_url','#'),(195,56,'_menu_item_fusion_megamenu','a:21:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(196,56,'_avada_studio_post','1006'),(197,51,'_fusion','a:7:{s:14:\"special_effect\";s:4:\"none\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}'),(2156,1818,'_fusion','a:5:{s:22:\"form_placeholder_color\";s:17:\"var(--awb-color6)\";s:15:\"form_text_color\";s:17:\"var(--awb-color6)\";s:18:\"tooltip_text_color\";s:17:\"var(--awb-color7)\";s:13:\"notifications\";a:1:{i:0;a:9:{s:5:\"label\";s:18:\"info@wlvrotary.org\";s:5:\"email\";s:18:\"info@wlvrotary.org\";s:13:\"email_subject\";s:32:\"WLV Sunrise Rotary - Web Inquiry\";s:20:\"email_subject_encode\";s:1:\"0\";s:10:\"email_from\";s:0:\"\";s:13:\"email_from_id\";s:0:\"\";s:14:\"email_reply_to\";s:0:\"\";s:17:\"email_attachments\";s:2:\"no\";s:13:\"email_message\";s:12:\"[all_fields]\";}}s:12:\"form_actions\";a:1:{i:0;s:8:\"database\";}}'),(2157,1818,'_edit_lock','1673327147:1'),(2158,1818,'fusion_builder_status','active'),(2159,1822,'_wp_attached_file','2022/09/vertical-image.jpg'),(2160,1822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2022/09/vertical-image.jpg\";s:8:\"filesize\";i:4943;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"vertical-image-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3560;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"vertical-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3413;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"vertical-image-400x272.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3748;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"vertical-image-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3583;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"vertical-image-400x441.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4023;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"vertical-image-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3343;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"vertical-image-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3560;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:26:\"vertical-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3948;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:26:\"vertical-image-400x272.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3748;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:26:\"vertical-image-400x295.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3785;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:26:\"vertical-image-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3579;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:26:\"vertical-image-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3426;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2154,51,'fusion_builder_status','active'),(198,51,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:12:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";i:9;s:3:\"400\";i:10;s:3:\"400\";i:11;s:3:\"400\";}}}'),(199,51,'_avada_studio_import_key','826e87cd0dabe355bf74cad3b523e953'),(200,51,'_avada_studio_post','2160'),(201,58,'_fusion','a:19:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:8:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:7:{s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(202,58,'_fusion_google_fonts','a:1:{s:5:\"Inter\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"500\";}}}'),(203,58,'_avada_studio_import_key','8a37c5c66b508e645d047d59b5ae3a18'),(204,58,'_avada_studio_post','2288'),(205,57,'_fusion','a:24:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:16:\"template_sidebar\";s:0:\"\";s:18:\"template_sidebar_2\";s:0:\"\";s:14:\"sidebar_sticky\";s:7:\"default\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(206,57,'_avada_studio_import_key','9dd10febaf2d81613e1fd1f917798c59'),(207,57,'_avada_studio_post','2233'),(208,60,'_fusion','a:24:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:3:\"yes\";s:13:\"setup_content\";s:3:\"yes\";s:28:\"dynamic_content_preview_type\";s:3:\"404\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:16:\"template_sidebar\";s:0:\"\";s:18:\"template_sidebar_2\";s:0:\"\";s:14:\"sidebar_sticky\";s:7:\"default\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}'),(209,60,'_avada_studio_import_key','1c92daad342625286dac0589bf74dee6'),(210,60,'_avada_studio_post','2232'),(211,22,'avada_post_views_count','5'),(212,22,'avada_today_post_views_count','5'),(213,22,'avada_post_views_count_today_date','24-08-2022'),(214,68,'_wp_attached_file','2021/01/handyman-logo@1x.png'),(215,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:231;s:6:\"height\";i:51;s:4:\"file\";s:28:\"2021/01/handyman-logo@1x.png\";s:8:\"filesize\";i:2675;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:{}}}'),(216,68,'_wp_attachment_image_alt','handyman-logo@1x'),(217,68,'fusion_demo_import','handyman'),(218,69,'_wp_attached_file','2021/01/handyman-logo@2x.png'),(219,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:462;s:6:\"height\";i:102;s:4:\"file\";s:28:\"2021/01/handyman-logo@2x.png\";s:8:\"filesize\";i:4316;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:{}}}'),(220,69,'_wp_attachment_image_alt','handyman-logo@2x'),(221,69,'fusion_demo_import','handyman'),(222,104,'_wp_attached_file','2021/01/avada-handyman-v1.0.zip'),(223,104,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:36244;}'),(224,104,'_fusion_icon_set_id','45a283508c77cd76849551c37cf776a0'),(225,104,'fusion_demo_import','handyman'),(226,505,'_wp_attached_file','2021/04/testimonial-1-female.jpeg'),(227,505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1129;s:6:\"height\";i:1129;s:4:\"file\";s:33:\"2021/04/testimonial-1-female.jpeg\";s:8:\"filesize\";i:142901;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:{}}}'),(228,505,'_wp_attachment_image_alt','testimonial-1-female'),(229,505,'fusion_demo_import','handyman'),(230,541,'_wp_attached_file','2021/04/testimonial-2-male.jpeg'),(231,541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1129;s:6:\"height\";i:1129;s:4:\"file\";s:31:\"2021/04/testimonial-2-male.jpeg\";s:8:\"filesize\";i:111471;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:{}}}'),(232,541,'_wp_attachment_image_alt','testimonial-2-male'),(233,541,'fusion_demo_import','handyman'),(234,650,'_wp_attached_file','2021/04/testimonial-3-female.jpeg'),(235,650,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1129;s:6:\"height\";i:1129;s:4:\"file\";s:33:\"2021/04/testimonial-3-female.jpeg\";s:8:\"filesize\";i:87419;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(236,650,'_wp_attachment_image_alt','testimonial-3-female'),(237,650,'fusion_demo_import','handyman'),(238,657,'_wp_attached_file','2021/04/testimonial-4-female.jpg'),(239,657,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1129;s:6:\"height\";i:1129;s:4:\"file\";s:32:\"2021/04/testimonial-4-female.jpg\";s:8:\"filesize\";i:102226;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:{}}}'),(240,657,'_wp_attachment_image_alt','testimonial-4-female'),(241,657,'fusion_demo_import','handyman'),(242,658,'_wp_attached_file','2021/04/testimonial-5-male.jpeg'),(243,658,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1129;s:6:\"height\";i:1129;s:4:\"file\";s:31:\"2021/04/testimonial-5-male.jpeg\";s:8:\"filesize\";i:138453;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(244,658,'_wp_attachment_image_alt','testimonial-5-male'),(245,658,'fusion_demo_import','handyman'),(246,680,'_wp_attached_file','2021/04/favicon-new.png'),(247,680,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:138;s:6:\"height\";i:138;s:4:\"file\";s:23:\"2021/04/favicon-new.png\";s:8:\"filesize\";i:10122;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:{}}}'),(248,680,'_wp_attachment_image_alt','favicon-new'),(249,680,'fusion_demo_import','handyman'),(250,697,'_wp_attached_file','2021/10/banner-01.jpg'),(251,697,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:864;s:4:\"file\";s:21:\"2021/10/banner-01.jpg\";s:8:\"filesize\";i:190840;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(252,697,'_wp_attachment_image_alt','banner-01'),(253,697,'_wxr_import_user_slug','danyduchaine'),(254,697,'fusion_demo_import','handyman'),(255,716,'_wp_attached_file','2021/10/service-01.jpg'),(256,716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1257;s:6:\"height\";i:742;s:4:\"file\";s:22:\"2021/10/service-01.jpg\";s:8:\"filesize\";i:139432;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:{}}}'),(257,716,'_wp_attachment_image_alt','service-01'),(260,716,'fusion_demo_import','handyman'),(261,733,'_wp_attached_file','2021/10/service-02.jpg'),(262,733,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1257;s:6:\"height\";i:742;s:4:\"file\";s:22:\"2021/10/service-02.jpg\";s:8:\"filesize\";i:162766;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:{}}}'),(263,733,'_wp_attachment_image_alt','service-02'),(266,733,'fusion_demo_import','handyman'),(267,739,'_wp_attached_file','2021/10/service-03.jpg'),(268,739,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1257;s:6:\"height\";i:742;s:4:\"file\";s:22:\"2021/10/service-03.jpg\";s:8:\"filesize\";i:129469;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:{}}}'),(269,739,'_wp_attachment_image_alt','service-03'),(272,739,'fusion_demo_import','handyman'),(273,742,'_wp_attached_file','2021/10/service-04.jpg'),(274,742,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:880;s:6:\"height\";i:519;s:4:\"file\";s:22:\"2021/10/service-04.jpg\";s:8:\"filesize\";i:100911;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:{}}}'),(275,742,'_wp_attachment_image_alt','service-04'),(278,742,'fusion_demo_import','handyman'),(279,957,'_wp_attached_file','2021/10/info-02.jpg'),(280,957,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:681;s:4:\"file\";s:19:\"2021/10/info-02.jpg\";s:8:\"filesize\";i:83326;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:{}}}'),(281,957,'_wp_attachment_image_alt','info-02'),(282,957,'_wxr_import_user_slug','danyduchaine'),(283,957,'fusion_demo_import','handyman'),(284,987,'_wp_attached_file','2021/10/info-04.jpg'),(285,987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:604;s:4:\"file\";s:19:\"2021/10/info-04.jpg\";s:8:\"filesize\";i:79801;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:{}}}'),(286,987,'_wp_attachment_image_alt','info-04'),(287,987,'_wxr_import_user_slug','danyduchaine'),(288,987,'fusion_demo_import','handyman'),(289,989,'_wp_attached_file','2021/10/info-05.jpg'),(290,989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:803;s:6:\"height\";i:756;s:4:\"file\";s:19:\"2021/10/info-05.jpg\";s:8:\"filesize\";i:95349;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:{}}}'),(291,989,'_wp_attachment_image_alt','info-05'),(292,989,'_wxr_import_user_slug','danyduchaine'),(293,989,'fusion_demo_import','handyman'),(294,1151,'_wp_attached_file','2021/10/banner-05.jpg'),(295,1151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1243;s:6:\"height\";i:555;s:4:\"file\";s:21:\"2021/10/banner-05.jpg\";s:8:\"filesize\";i:101686;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,1151,'_wp_attachment_image_alt','banner-05'),(297,1151,'_wxr_import_user_slug','danyduchaine'),(298,1151,'fusion_demo_import','handyman'),(299,1161,'_wp_attached_file','2021/10/info-06.jpg'),(300,1161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:681;s:4:\"file\";s:19:\"2021/10/info-06.jpg\";s:8:\"filesize\";i:120180;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:{}}}'),(301,1161,'_wp_attachment_image_alt','info-06'),(302,1161,'_wxr_import_user_slug','danyduchaine'),(303,1161,'fusion_demo_import','handyman'),(304,1325,'_wp_attached_file','2021/10/avatar-01.jpg'),(305,1325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:700;s:4:\"file\";s:21:\"2021/10/avatar-01.jpg\";s:8:\"filesize\";i:64344;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:{}}}'),(306,1325,'_wp_attachment_image_alt','avatar-01'),(307,1325,'_wxr_import_user_slug','danyduchaine'),(308,1325,'fusion_demo_import','handyman'),(309,141,'_fusion','a:4:{s:18:\"form_border_radius\";s:1:\"0\";s:9:\"form_type\";s:4:\"ajax\";s:12:\"form_actions\";a:1:{i:0;s:8:\"database\";}s:16:\"avada_77_upgrade\";b:1;}'),(310,141,'fusion_builder_status','active'),(311,141,'avada_media',''),(312,141,'fusion_demo_import','handyman'),(313,474,'_fusion','a:1:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";}'),(314,474,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(315,474,'fusion_builder_status','active'),(316,474,'avada_media',''),(317,474,'fusion_demo_import','handyman'),(318,714,'_fusion','a:3:{s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(319,714,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(320,714,'fusion_builder_status','active'),(321,714,'_thumbnail_id','716'),(322,714,'avada_media',''),(323,714,'_wxr_import_user_slug','danyduchaine'),(324,714,'fusion_demo_import','handyman'),(325,718,'_fusion','a:2:{s:28:\"dynamic_content_preview_type\";s:15:\"avada_portfolio\";s:13:\"preview_width\";s:2:\"27\";}'),(326,718,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(327,718,'fusion_builder_status','active'),(328,718,'avada_media',''),(329,718,'_wxr_import_user_slug','danyduchaine'),(330,718,'fusion_demo_import','handyman'),(331,732,'_thumbnail_id','733'),(332,732,'_fusion','a:3:{s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(333,732,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(334,732,'fusion_builder_status','active'),(335,732,'avada_media',''),(336,732,'_wxr_import_user_slug','danyduchaine'),(337,732,'fusion_demo_import','handyman'),(338,738,'_thumbnail_id','739'),(339,738,'_fusion','a:3:{s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(340,738,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(341,738,'fusion_builder_status','active'),(342,738,'avada_media',''),(343,738,'_wxr_import_user_slug','danyduchaine'),(344,738,'fusion_demo_import','handyman'),(345,741,'_thumbnail_id','742'),(346,741,'_fusion','a:3:{s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(347,741,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(348,741,'fusion_builder_status','active'),(349,741,'avada_media',''),(350,741,'_wxr_import_user_slug','danyduchaine'),(351,741,'fusion_demo_import','handyman'),(352,1068,'_wp_old_slug','services-cloned'),(353,1068,'_fusion','a:6:{s:13:\"preview_width\";s:2:\"27\";s:28:\"dynamic_content_preview_type\";s:15:\"avada_portfolio\";s:12:\"preview_post\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}'),(354,1068,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(355,1068,'fusion_builder_status','active'),(356,1068,'avada_media',''),(357,1068,'_wxr_import_user_slug','danyduchaine'),(358,1068,'fusion_demo_import','handyman'),(359,1260,'_wp_old_slug','services-2-cloned'),(360,1260,'_fusion','a:6:{s:13:\"preview_width\";s:3:\"100\";s:28:\"dynamic_content_preview_type\";s:15:\"avada_portfolio\";s:12:\"preview_post\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}'),(361,1260,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(362,1260,'fusion_builder_status','active'),(363,1260,'avada_media',''),(364,1260,'_wxr_import_user_slug','danyduchaine'),(365,1260,'fusion_demo_import','handyman'),(366,1279,'_wp_old_slug','services-3-cloned'),(367,1279,'_fusion','a:6:{s:13:\"preview_width\";s:3:\"100\";s:28:\"dynamic_content_preview_type\";s:15:\"avada_portfolio\";s:12:\"preview_post\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}'),(368,1279,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(369,1279,'fusion_builder_status','active'),(370,1279,'avada_media',''),(371,1279,'_wxr_import_user_slug','danyduchaine'),(372,1279,'fusion_demo_import','handyman'),(373,1361,'_wp_attached_file','2021/01/blog-01.jpg'),(374,1361,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1350;s:6:\"height\";i:715;s:4:\"file\";s:19:\"2021/01/blog-01.jpg\";s:8:\"filesize\";i:88007;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:{}}}'),(375,1361,'_wp_attachment_image_alt','blog-01'),(378,1361,'fusion_demo_import','handyman'),(379,1363,'_wp_attached_file','2021/10/gallery-01.jpg'),(380,1363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1001;s:4:\"file\";s:22:\"2021/10/gallery-01.jpg\";s:8:\"filesize\";i:114052;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:{}}}'),(381,1363,'_wp_attachment_image_alt','gallery-01'),(382,1363,'_wxr_import_user_slug','danyduchaine'),(383,1363,'fusion_demo_import','handyman'),(384,1369,'_wp_attached_file','2021/01/blog-02.jpg'),(385,1369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:794;s:4:\"file\";s:19:\"2021/01/blog-02.jpg\";s:8:\"filesize\";i:298198;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:{}}}'),(386,1369,'_wp_attachment_image_alt','blog-02'),(389,1369,'fusion_demo_import','handyman'),(390,1370,'_wp_attached_file','2021/01/blog-03.jpg'),(391,1370,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1350;s:6:\"height\";i:715;s:4:\"file\";s:19:\"2021/01/blog-03.jpg\";s:8:\"filesize\";i:68400;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:{}}}'),(392,1370,'_wp_attachment_image_alt','blog-03'),(931,1684,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:122;s:4:\"file\";s:28:\"2022/08/wlvrotary-logo2x.png\";s:8:\"filesize\";i:12477;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"wlvrotary-logo2x-300x88.png\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11988;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"wlvrotary-logo2x-150x122.png\";s:5:\"width\";i:150;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3143;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"wlvrotary-logo2x-320x122.png\";s:5:\"width\";i:320;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11189;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"wlvrotary-logo2x-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2115;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"wlvrotary-logo2x-200x59.png\";s:5:\"width\";i:200;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6884;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"wlvrotary-logo2x-400x118.png\";s:5:\"width\";i:400;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17107;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:28:\"wlvrotary-logo2x-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10280;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:28:\"wlvrotary-logo2x-177x122.png\";s:5:\"width\";i:177;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3669;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(395,1370,'fusion_demo_import','handyman'),(396,1374,'_wp_attached_file','2021/01/blog-04.jpg'),(397,1374,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1215;s:6:\"height\";i:644;s:4:\"file\";s:19:\"2021/01/blog-04.jpg\";s:8:\"filesize\";i:145679;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:{}}}'),(398,1374,'_wp_attachment_image_alt','blog-04'),(930,1684,'_wp_attached_file','2022/08/wlvrotary-logo2x.png'),(401,1374,'fusion_demo_import','handyman'),(402,1375,'_wp_attached_file','2021/10/gallery-03.jpg'),(403,1375,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:801;s:4:\"file\";s:22:\"2021/10/gallery-03.jpg\";s:8:\"filesize\";i:118437;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:{}}}'),(404,1375,'_wp_attachment_image_alt','gallery-03'),(405,1375,'_wxr_import_user_slug','danyduchaine'),(406,1375,'fusion_demo_import','handyman'),(407,1379,'_wp_attached_file','2021/10/gallery-04.jpg'),(408,1379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:601;s:4:\"file\";s:22:\"2021/10/gallery-04.jpg\";s:8:\"filesize\";i:110423;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:{}}}'),(409,1379,'_wp_attachment_image_alt','gallery-04'),(410,1379,'_wxr_import_user_slug','danyduchaine'),(411,1379,'fusion_demo_import','handyman'),(412,1381,'_wp_attached_file','2021/01/blog-08.jpg'),(413,1381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:636;s:4:\"file\";s:19:\"2021/01/blog-08.jpg\";s:8:\"filesize\";i:100899;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:{}}}'),(414,1381,'_wp_attachment_image_alt','blog-08'),(417,1381,'fusion_demo_import','handyman'),(418,1382,'_wp_attached_file','2021/01/blog-07.jpg'),(419,1382,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1220;s:6:\"height\";i:646;s:4:\"file\";s:19:\"2021/01/blog-07.jpg\";s:8:\"filesize\";i:152989;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:{}}}'),(420,1382,'_wp_attachment_image_alt','blog-07'),(423,1382,'fusion_demo_import','handyman'),(2578,1901,'wp-smush-lossy','1'),(2579,1901,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:76.1463656845666463368615950457751750946044921875;s:5:\"bytes\";i:4681956;s:11:\"size_before\";i:6148627;s:10:\"size_after\";i:1466671;s:4:\"time\";d:9.050000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.349999999999994315658113919198513031005859375;s:5:\"bytes\";i:6329;s:11:\"size_before\";i:9835;s:10:\"size_after\";i:3506;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.4599999999999937472239253111183643341064453125;s:5:\"bytes\";i:29624;s:11:\"size_before\";i:41453;s:10:\"size_after\";i:11829;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.2300000000000039790393202565610408782958984375;s:5:\"bytes\";i:49780;s:11:\"size_before\";i:68918;s:10:\"size_after\";i:19138;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:32680;s:11:\"size_before\";i:45563;s:10:\"size_after\";i:12883;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.31000000000000227373675443232059478759765625;s:5:\"bytes\";i:78769;s:11:\"size_before\";i:106002;s:10:\"size_after\";i:27233;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:80418;s:11:\"size_before\";i:107090;s:10:\"size_after\";i:26672;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.650000000000005684341886080801486968994140625;s:5:\"bytes\";i:160380;s:11:\"size_before\";i:211990;s:10:\"size_after\";i:51610;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:77.43000000000000682121026329696178436279296875;s:5:\"bytes\";i:174314;s:11:\"size_before\";i:225115;s:10:\"size_after\";i:50801;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.18000000000000682121026329696178436279296875;s:5:\"bytes\";i:205346;s:11:\"size_before\";i:262662;s:10:\"size_after\";i:57316;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:106464;s:11:\"size_before\";i:143721;s:10:\"size_after\";i:37257;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:348603;s:11:\"size_before\";i:455852;s:10:\"size_after\";i:107249;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.5400000000000062527760746888816356658935546875;s:5:\"bytes\";i:389242;s:11:\"size_before\";i:515303;s:10:\"size_after\";i:126061;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:181693;s:11:\"size_before\";i:242788;s:10:\"size_after\";i:61095;s:4:\"time\";d:0.90000000000000002220446049250313080847263336181640625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:662994;s:11:\"size_before\";i:874194;s:10:\"size_after\";i:211200;s:4:\"time\";d:0.85999999999999998667732370449812151491641998291015625;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.409999999999996589394868351519107818603515625;s:5:\"bytes\";i:405174;s:11:\"size_before\";i:516756;s:10:\"size_after\";i:111582;s:4:\"time\";d:1.2199999999999999733546474089962430298328399658203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:612305;s:11:\"size_before\";i:809181;s:10:\"size_after\";i:196876;s:4:\"time\";d:1.149999999999999911182158029987476766109466552734375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.56999999999999317878973670303821563720703125;s:5:\"bytes\";i:1157841;s:11:\"size_before\";i:1512204;s:10:\"size_after\";i:354363;s:4:\"time\";d:1.87000000000000010658141036401502788066864013671875;}}}'),(2577,1917,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.856110537600253795886828811489976942539215087890625;s:5:\"bytes\";i:9712;s:11:\"size_before\";i:251860;s:10:\"size_after\";i:242148;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2033;s:10:\"size_after\";i:2033;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6100000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:128;s:11:\"size_before\";i:7971;s:10:\"size_after\";i:7843;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:117;s:11:\"size_before\";i:7546;s:10:\"size_after\";i:7429;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:693;s:11:\"size_before\";i:16540;s:10:\"size_after\";i:15847;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:593;s:11:\"size_before\";i:17809;s:10:\"size_after\";i:17216;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:937;s:11:\"size_before\";i:22676;s:10:\"size_after\";i:21739;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.020000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:517;s:11:\"size_before\";i:17105;s:10:\"size_after\";i:16588;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1225;s:11:\"size_before\";i:32118;s:10:\"size_after\";i:30893;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:982;s:11:\"size_before\";i:28732;s:10:\"size_after\";i:27750;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1971;s:11:\"size_before\";i:46151;s:10:\"size_after\";i:44180;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2549;s:11:\"size_before\";i:53179;s:10:\"size_after\";i:50630;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(2576,1917,'wp-smush-lossy','1'),(2568,1922,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:479;s:4:\"file\";s:39:\"2022/09/sunrise-rotary-service-hero.jpg\";s:8:\"filesize\";i:279806;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17584;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero-1024x409.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116669;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13045;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72713;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58756;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27231;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95973;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"sunrise-rotary-service-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5873;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"sunrise-rotary-service-hero-200x80.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10300;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-400x160.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26043;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-600x240.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47951;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-800x319.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76841;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107909;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51111;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48815;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27123;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14192;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2567,1922,'_wp_attached_file','2022/09/sunrise-rotary-service-hero.jpg'),(2566,738,'avada_post_views_count_today_date','02-01-2023'),(2565,738,'avada_today_post_views_count','1'),(2564,738,'avada_post_views_count','1'),(452,1549,'_menu_item_type','post_type'),(453,1549,'_menu_item_menu_item_parent','0'),(454,1549,'_menu_item_object_id','1568'),(455,1549,'_menu_item_object','page'),(456,1549,'_menu_item_target',''),(457,1549,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(458,1549,'_menu_item_xfn',''),(459,1549,'_menu_item_url',''),(460,1549,'_menu_item_fusion_megamenu','a:20:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(462,1549,'fusion_demo_import','handyman'),(463,1550,'_menu_item_type','custom'),(464,1550,'_menu_item_menu_item_parent','0'),(465,1550,'_menu_item_object_id','1550'),(466,1550,'_menu_item_object','custom'),(467,1550,'_menu_item_target',''),(468,1550,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(469,1550,'_menu_item_xfn',''),(470,1550,'_menu_item_url','http://bit.ly/2Y2KxDI'),(471,1550,'_menu_item_fusion_megamenu','a:20:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:22:\"fa-facebook-square fab\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(472,1550,'fusion_demo_import','handyman'),(473,1551,'_fusion','a:6:{s:14:\"special_effect\";s:4:\"none\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";}'),(474,1551,'fusion_builder_status','active'),(475,1551,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(476,1551,'avada_media',''),(477,1551,'fusion_demo_import','handyman'),(478,103,'_fusion','a:1:{s:15:\"custom_icon_set\";a:7:{s:13:\"attachment_id\";i:104;s:17:\"icon_set_dir_name\";s:19:\"avada-handyman-v1.0\";s:7:\"service\";s:7:\"icomoon\";s:10:\"css_prefix\";s:8:\"handyman\";s:5:\"icons\";a:4:{i:0;s:18:\"handyman-carpentry\";i:1;s:19:\"handyman-decorating\";i:2;s:20:\"handyman-maintenance\";i:3;s:17:\"handyman-plumbing\";}s:10:\"icon_count\";i:4;s:11:\"icon_set_id\";s:32:\"45a283508c77cd76849551c37cf776a0\";}}'),(479,103,'fusion_demo_import','handyman'),(480,144,'_fusion','a:2:{s:28:\"dynamic_content_preview_type\";s:4:\"page\";s:12:\"preview_page\";s:2:\"10\";}'),(481,144,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:2:{i:0;s:3:\"400\";i:1;s:3:\"500\";}}}'),(482,144,'fusion_builder_status','active'),(483,144,'fusion_demo_import','handyman'),(484,229,'fusion_demo_import','handyman'),(485,239,'_fusion','a:3:{s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";s:3:\"124\";}'),(486,239,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(487,239,'fusion_builder_status','active'),(488,239,'fusion_demo_import','handyman'),(489,336,'fusion_demo_import','handyman'),(490,340,'_fusion','a:9:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";}'),(491,340,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(492,340,'fusion_builder_status','active'),(493,340,'avada_media',''),(494,340,'fusion_demo_import','handyman'),(495,573,'_wp_old_slug','request-a-quote-cloned'),(496,573,'_fusion','a:15:{s:14:\"label_position\";s:5:\"above\";s:12:\"field_margin\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:17:\"form_border_width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"method\";s:4:\"post\";s:16:\"member_only_form\";s:2:\"no\";s:19:\"privacy_store_ip_ua\";s:2:\"no\";s:9:\"form_type\";s:4:\"ajax\";s:22:\"form_confirmation_type\";s:7:\"message\";s:25:\"privacy_expiration_action\";s:9:\"anonymize\";s:18:\"form_border_radius\";s:1:\"0\";s:22:\"form_placeholder_color\";s:97:\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 10%))\";s:15:\"form_text_color\";s:17:\"var(--awb-color6)\";s:13:\"notifications\";s:32:\"[{\"label\":\"Admin Notification\"}]\";s:12:\"form_actions\";a:1:{i:0;s:8:\"database\";}s:16:\"avada_77_upgrade\";b:1;}'),(497,573,'_fusion_google_fonts',''),(498,573,'fusion_builder_status','active'),(499,573,'avada_media',''),(500,573,'fusion_demo_import','handyman'),(501,689,'_wxr_import_user_slug','danyduchaine'),(502,689,'fusion_demo_import','handyman'),(503,690,'_fusion','a:7:{s:17:\"header_breakpoint\";s:5:\"small\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}'),(504,690,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:13:{i:0;s:3:\"400\";i:1;s:3:\"500\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";i:9;s:3:\"400\";i:10;s:3:\"400\";i:11;s:3:\"400\";i:12;s:3:\"400\";}}}'),(505,690,'fusion_builder_status','active'),(506,690,'avada_media','a:2:{s:6:\"images\";a:1:{s:97:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/handyman-logo@2x.png\";a:1:{s:8:\"image_id\";s:7:\"69|full\";}}s:5:\"menus\";a:2:{s:26:\"handyman-footer-right-menu\";s:4:\"true\";s:18:\"handyman-main-menu\";s:4:\"true\";}}'),(507,690,'_wxr_import_user_slug','danyduchaine'),(508,690,'fusion_demo_import','handyman'),(509,1341,'_fusion','a:6:{s:17:\"header_breakpoint\";s:5:\"small\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";}'),(510,1341,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(511,1341,'fusion_builder_status','active'),(512,1341,'_wxr_import_user_slug','danyduchaine'),(513,1341,'fusion_demo_import','handyman'),(514,1403,'_wxr_import_user_slug','danyduchaine'),(515,1403,'fusion_demo_import','handyman'),(516,1404,'_fusion','a:1:{s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}}'),(517,1404,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(518,1404,'fusion_builder_status','active'),(519,1404,'_wxr_import_user_slug','danyduchaine'),(520,1404,'fusion_demo_import','handyman'),(521,1442,'_wxr_import_user_slug','danyduchaine'),(522,1442,'fusion_demo_import','handyman'),(523,1443,'_fusion','a:1:{s:12:\"main_padding\";a:1:{s:3:\"top\";s:1:\"0\";}}'),(524,1443,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(525,1443,'fusion_builder_status','active'),(526,1443,'_wxr_import_user_slug','danyduchaine'),(527,1443,'fusion_demo_import','handyman'),(528,1552,'_wp_old_slug','request-a-quote-cloned'),(529,1552,'_fusion','a:19:{s:14:\"label_position\";s:5:\"above\";s:12:\"field_margin\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:1:\"0\";}s:17:\"form_border_width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"method\";s:4:\"post\";s:17:\"email_attachments\";s:2:\"no\";s:19:\"privacy_store_ip_ua\";s:2:\"no\";s:9:\"form_type\";s:4:\"ajax\";s:22:\"form_confirmation_type\";s:7:\"message\";s:25:\"privacy_expiration_action\";s:6:\"ignore\";s:18:\"tooltip_text_color\";s:17:\"var(--awb-color1)\";s:24:\"tooltip_background_color\";s:17:\"var(--awb-color7)\";s:15:\"form_text_color\";s:17:\"var(--awb-color6)\";s:23:\"form_focus_border_color\";s:17:\"var(--awb-color3)\";s:17:\"form_input_height\";s:4:\"45px\";s:18:\"form_border_radius\";s:1:\"0\";s:22:\"form_placeholder_color\";s:97:\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 38%))\";s:13:\"notifications\";s:32:\"[{\"label\":\"Admin Notification\"}]\";s:12:\"form_actions\";a:1:{i:0;s:8:\"database\";}s:16:\"avada_77_upgrade\";b:1;}'),(530,1552,'_fusion_google_fonts',''),(531,1552,'fusion_builder_status','active'),(532,1552,'avada_media',''),(533,1552,'fusion_demo_import','handyman'),(2543,1759,'avada_today_post_views_count','1'),(2544,1759,'avada_post_views_count_today_date','24-12-2022'),(2545,1760,'_fusion','a:0:{}'),(2542,1759,'avada_post_views_count','2'),(2541,1759,'_fusion','a:0:{}'),(2540,1767,'avada_post_views_count_today_date','23-12-2022'),(2531,1776,'avada_today_post_views_count','1'),(2532,1776,'avada_post_views_count_today_date','06-01-2023'),(2533,1775,'_fusion','a:0:{}'),(2534,1775,'avada_post_views_count','2'),(2535,1775,'avada_today_post_views_count','1'),(2536,1775,'avada_post_views_count_today_date','23-12-2022'),(2537,1767,'_fusion','a:0:{}'),(2538,1767,'avada_post_views_count','2'),(2539,1767,'avada_today_post_views_count','1'),(2530,1776,'avada_post_views_count','2'),(2529,1776,'_fusion','a:0:{}'),(2451,1788,'avada_today_post_views_count','1'),(2452,1788,'avada_post_views_count_today_date','06-12-2022'),(2453,1765,'_fusion','a:0:{}'),(2450,1788,'avada_post_views_count','3'),(2449,1788,'_fusion','a:0:{}'),(2448,1779,'avada_post_views_count_today_date','10-12-2022'),(2438,249,'avada_today_post_views_count','1'),(2439,249,'avada_post_views_count_today_date','31-10-2022'),(2440,1912,'evcal_allday','no'),(2441,1912,'evcal_srow','1668015000'),(2442,1912,'evcal_erow','1668020400'),(2443,1912,'evcal_gmap_gen','yes'),(2444,1912,'_evoics_uid','vqa6id0fn2tuubh76tlc6eco94@google.com'),(2445,1779,'_fusion','a:0:{}'),(2446,1779,'avada_post_views_count','4'),(2447,1779,'avada_today_post_views_count','1'),(2437,249,'avada_post_views_count','2'),(2436,1571,'avada_post_views_count_today_date','27-10-2022'),(2434,1571,'avada_post_views_count','1'),(2435,1571,'avada_today_post_views_count','1'),(2570,1923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:399;s:4:\"file\";s:41:\"2022/09/sunrise-rotary-service-hero-1.jpg\";s:8:\"filesize\";i:205073;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17644;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-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:13207;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74427;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60281;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27865;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-700x399.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99148;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"sunrise-rotary-service-hero-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5893;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero-1-200x80.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10350;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-400x160.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26295;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-600x239.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49709;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-800x319.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78632;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-940x399.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122220;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52578;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50048;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27797;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:41:\"sunrise-rotary-service-hero-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14340;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2559,1784,'avada_today_post_views_count','1'),(2560,1784,'avada_post_views_count_today_date','03-01-2023'),(2561,1917,'_wp_attached_file','2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg'),(2558,1784,'avada_post_views_count','4'),(2557,1784,'_fusion','a:18:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:4:\"fimg\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}s:17:\"post_links_target\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:20:\"image_rollover_icons\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"posts_sidebar\";s:15:\"default_sidebar\";s:15:\"posts_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(2556,1764,'avada_post_views_count_today_date','07-01-2023'),(2547,1760,'avada_today_post_views_count','1'),(2548,1760,'avada_post_views_count_today_date','23-12-2022'),(2549,1787,'_fusion','a:0:{}'),(2550,1787,'avada_post_views_count','1'),(2551,1787,'avada_today_post_views_count','1'),(2552,1787,'avada_post_views_count_today_date','21-12-2022'),(2553,1764,'_fusion','a:0:{}'),(2554,1764,'avada_post_views_count','3'),(2555,1764,'avada_today_post_views_count','1'),(2546,1760,'avada_post_views_count','2'),(2468,1771,'avada_post_views_count_today_date','08-12-2022'),(2471,1772,'avada_today_post_views_count','1'),(2470,1772,'avada_post_views_count','4'),(2469,1772,'_fusion','a:0:{}'),(2467,1771,'avada_today_post_views_count','1'),(2466,1771,'avada_post_views_count','2'),(2465,1771,'_fusion','a:0:{}'),(2456,1765,'avada_post_views_count_today_date','20-11-2022'),(2457,1781,'_fusion','a:0:{}'),(2458,1781,'avada_post_views_count','3'),(2459,1781,'avada_today_post_views_count','1'),(2460,1781,'avada_post_views_count_today_date','06-12-2022'),(2461,1773,'_fusion','a:18:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:4:\"fimg\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}s:17:\"post_links_target\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:20:\"image_rollover_icons\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"posts_sidebar\";s:15:\"default_sidebar\";s:15:\"posts_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(2462,1773,'avada_post_views_count','7'),(2463,1773,'avada_today_post_views_count','1'),(2464,1773,'avada_post_views_count_today_date','23-12-2022'),(2455,1765,'avada_today_post_views_count','1'),(2454,1765,'avada_post_views_count','1'),(634,1561,'_menu_item_type','custom'),(635,1561,'_menu_item_menu_item_parent','0'),(636,1561,'_menu_item_object_id','1561'),(637,1561,'_menu_item_object','custom'),(638,1561,'_menu_item_target',''),(639,1561,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(640,1561,'_menu_item_xfn',''),(641,1561,'_menu_item_url','http://bit.ly/2Y2KxDI'),(642,1561,'_menu_item_fusion_megamenu','a:20:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:21:\"fa-twitter-square fab\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(643,1561,'fusion_demo_import','handyman'),(644,1562,'_menu_item_type','custom'),(645,1562,'_menu_item_menu_item_parent','0'),(646,1562,'_menu_item_object_id','1562'),(647,1562,'_menu_item_object','custom'),(648,1562,'_menu_item_target',''),(649,1562,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(650,1562,'_menu_item_xfn',''),(651,1562,'_menu_item_url','http://bit.ly/2Y2KxDI'),(652,1562,'_menu_item_fusion_megamenu','a:20:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:16:\"fa-instagram fab\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(653,1562,'fusion_demo_import','handyman'),(654,1563,'_menu_item_type','custom'),(655,1563,'_menu_item_menu_item_parent','0'),(656,1563,'_menu_item_object_id','1563'),(657,1563,'_menu_item_object','custom'),(658,1563,'_menu_item_target',''),(659,1563,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(660,1563,'_menu_item_xfn',''),(661,1563,'_menu_item_url','http://bit.ly/2Y2KxDI'),(662,1563,'_menu_item_fusion_megamenu','a:20:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:15:\"fa-linkedin fab\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(663,1563,'fusion_demo_import','handyman'),(677,1434,'_menu_item_type','custom'),(678,1434,'_menu_item_menu_item_parent','29'),(679,1434,'_menu_item_object_id','1434'),(680,1434,'_menu_item_object','custom'),(681,1434,'_menu_item_target',''),(682,1434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(683,1434,'_menu_item_xfn',''),(684,1434,'_menu_item_url','https://test-site.wlvrotary.org/services/maintenance/'),(685,1434,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(686,1434,'_wxr_import_user_slug','danyduchaine'),(687,1434,'fusion_demo_import','handyman'),(688,1435,'_menu_item_type','custom'),(689,1435,'_menu_item_menu_item_parent','29'),(690,1435,'_menu_item_object_id','1435'),(691,1435,'_menu_item_object','custom'),(692,1435,'_menu_item_target',''),(693,1435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(694,1435,'_menu_item_xfn',''),(695,1435,'_menu_item_url','https://test-site.wlvrotary.org/services/plumbing/'),(696,1435,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(697,1435,'_wxr_import_user_slug','danyduchaine'),(698,1435,'fusion_demo_import','handyman'),(699,1436,'_menu_item_type','custom'),(700,1436,'_menu_item_menu_item_parent','29'),(701,1436,'_menu_item_object_id','1436'),(702,1436,'_menu_item_object','custom'),(703,1436,'_menu_item_target',''),(704,1436,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(705,1436,'_menu_item_xfn',''),(706,1436,'_menu_item_url','https://test-site.wlvrotary.org/services/decorating/'),(707,1436,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(708,1436,'_wxr_import_user_slug','danyduchaine'),(709,1436,'fusion_demo_import','handyman'),(710,1437,'_menu_item_type','custom'),(711,1437,'_menu_item_menu_item_parent','29'),(712,1437,'_menu_item_object_id','1437'),(713,1437,'_menu_item_object','custom'),(714,1437,'_menu_item_target',''),(715,1437,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(716,1437,'_menu_item_xfn',''),(717,1437,'_menu_item_url','https://test-site.wlvrotary.org/services/carpentry/'),(718,1437,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(719,1437,'_wxr_import_user_slug','danyduchaine'),(720,1437,'fusion_demo_import','handyman'),(721,1438,'_menu_item_type','custom'),(722,1438,'_menu_item_menu_item_parent','0'),(723,1438,'_menu_item_object_id','1438'),(724,1438,'_menu_item_object','custom'),(725,1438,'_menu_item_target',''),(726,1438,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(727,1438,'_menu_item_xfn',''),(728,1438,'_menu_item_url','https://test-site.wlvrotary.org/services/carpentry/'),(729,1438,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(730,1438,'_wxr_import_user_slug','danyduchaine'),(731,1438,'fusion_demo_import','handyman'),(732,1439,'_menu_item_type','custom'),(733,1439,'_menu_item_menu_item_parent','0'),(734,1439,'_menu_item_object_id','1439'),(735,1439,'_menu_item_object','custom'),(736,1439,'_menu_item_target',''),(737,1439,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(738,1439,'_menu_item_xfn',''),(739,1439,'_menu_item_url','https://test-site.wlvrotary.org/services/maintenance'),(740,1439,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(741,1439,'_wxr_import_user_slug','danyduchaine'),(742,1439,'fusion_demo_import','handyman'),(743,1440,'_menu_item_type','custom'),(744,1440,'_menu_item_menu_item_parent','0'),(745,1440,'_menu_item_object_id','1440'),(746,1440,'_menu_item_object','custom'),(747,1440,'_menu_item_target',''),(748,1440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(749,1440,'_menu_item_xfn',''),(750,1440,'_menu_item_url','https://test-site.wlvrotary.org/services/decorating'),(751,1440,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(752,1440,'_wxr_import_user_slug','danyduchaine'),(753,1440,'fusion_demo_import','handyman'),(754,1441,'_menu_item_type','custom'),(755,1441,'_menu_item_menu_item_parent','0'),(756,1441,'_menu_item_object_id','1441'),(757,1441,'_menu_item_object','custom'),(758,1441,'_menu_item_target',''),(759,1441,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(760,1441,'_menu_item_xfn',''),(761,1441,'_menu_item_url','https://test-site.wlvrotary.org/services/plumbing'),(762,1441,'_menu_item_fusion_megamenu','a:14:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";}'),(763,1441,'_wxr_import_user_slug','danyduchaine'),(764,1441,'fusion_demo_import','handyman'),(2562,1917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:450;s:4:\"file\";s:48:\"2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg\";s:8:\"filesize\";i:46037;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7546;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-360x272.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28732;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17105;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-360x441.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53179;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:46:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2033;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16540;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-360x400.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46151;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-360x272.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28732;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-360x295.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32118;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17809;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:48:\"e00f5922-442b-44a2-acef-4f7b4b7bea9b-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7971;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2527,1774,'avada_today_post_views_count','1'),(2520,1766,'avada_post_views_count_today_date','24-12-2022'),(2521,1783,'_fusion','a:0:{}'),(2522,1783,'avada_post_views_count','3'),(2523,1783,'avada_today_post_views_count','1'),(2524,1783,'avada_post_views_count_today_date','08-01-2023'),(2525,1774,'_fusion','a:0:{}'),(2526,1774,'avada_post_views_count','3'),(2516,1757,'avada_post_views_count_today_date','24-12-2022'),(2517,1766,'_fusion','a:0:{}'),(2518,1766,'avada_post_views_count','2'),(2519,1766,'avada_today_post_views_count','1'),(2515,1757,'avada_today_post_views_count','1'),(2502,1786,'avada_post_views_count','2'),(2503,1786,'avada_today_post_views_count','1'),(2504,1786,'avada_post_views_count_today_date','24-12-2022'),(2505,1778,'_fusion','a:0:{}'),(2506,1778,'avada_post_views_count','3'),(2507,1778,'avada_today_post_views_count','1'),(2508,1778,'avada_post_views_count_today_date','07-01-2023'),(2509,1780,'_fusion','a:0:{}'),(2510,1780,'avada_post_views_count','4'),(2511,1780,'avada_today_post_views_count','1'),(2512,1780,'avada_post_views_count_today_date','07-01-2023'),(2513,1757,'_fusion','a:0:{}'),(2514,1757,'avada_post_views_count','2'),(2475,1913,'evcal_erow','1672232400'),(2476,1913,'_evoics_uid','86e465u6kdh9fc3075ugn7qsk4@google.com'),(2477,1777,'_fusion','a:0:{}'),(2478,1777,'avada_post_views_count','2'),(2479,1777,'avada_today_post_views_count','1'),(2480,1777,'avada_post_views_count_today_date','24-12-2022'),(2481,1770,'_fusion','a:0:{}'),(2482,1770,'avada_post_views_count','2'),(2483,1770,'avada_today_post_views_count','1'),(2484,1770,'avada_post_views_count_today_date','23-12-2022'),(2485,1785,'_fusion','a:0:{}'),(2486,1785,'avada_post_views_count','1'),(2487,1785,'avada_today_post_views_count','1'),(2488,1785,'avada_post_views_count_today_date','20-12-2022'),(2489,1769,'_fusion','a:0:{}'),(2490,1769,'avada_post_views_count','4'),(2491,1769,'avada_today_post_views_count','1'),(2492,1769,'avada_post_views_count_today_date','08-01-2023'),(2493,1768,'_fusion','a:0:{}'),(2494,1768,'avada_post_views_count','2'),(2495,1768,'avada_today_post_views_count','1'),(2496,1768,'avada_post_views_count_today_date','24-12-2022'),(2497,1782,'_fusion','a:0:{}'),(2498,1782,'avada_post_views_count','1'),(2499,1782,'avada_today_post_views_count','1'),(2500,1782,'avada_post_views_count_today_date','20-12-2022'),(2501,1786,'_fusion','a:0:{}'),(789,1568,'_wp_page_template','100-width.php'),(790,1568,'_fusion','a:12:{s:7:\"bg_full\";s:2:\"no\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(791,1568,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(792,1568,'fusion_builder_status','active'),(793,1568,'avada_media','a:2:{s:6:\"images\";a:2:{s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";b:1;s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"742|full\";}}s:6:\"videos\";a:0:{}}'),(794,1568,'fusion_demo_import','handyman'),(807,1571,'_wp_page_template','100-width.php'),(808,1571,'_fusion','a:8:{s:7:\"bg_full\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(809,1571,'_fusion_google_fonts','a:1:{s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(810,1571,'fusion_builder_status','active'),(811,1571,'fusion_demo_import','handyman'),(812,1572,'_menu_item_type','post_type'),(813,1572,'_menu_item_menu_item_parent','0'),(814,1572,'_menu_item_object_id','1568'),(815,1572,'_menu_item_object','page'),(816,1572,'_menu_item_target',''),(817,1572,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(818,1572,'_menu_item_xfn',''),(819,1572,'_menu_item_url',''),(820,1572,'_menu_item_fusion_megamenu','a:21:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";}'),(821,1572,'_wp_old_date','2021-01-22'),(822,1572,'fusion_demo_import','handyman'),(834,1574,'_menu_item_type','post_type'),(835,1574,'_menu_item_menu_item_parent','0'),(836,1574,'_menu_item_object_id','1571'),(837,1574,'_menu_item_object','page'),(838,1574,'_menu_item_target',''),(839,1574,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(840,1574,'_menu_item_xfn',''),(841,1574,'_menu_item_url',''),(842,1574,'_menu_item_fusion_megamenu','a:21:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";}'),(843,1574,'_wp_old_date','2021-01-22'),(844,1574,'fusion_demo_import','handyman'),(858,124,'_fusion','a:4:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(859,124,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(860,124,'fusion_builder_status','active'),(861,124,'_thumbnail_id','1382'),(862,124,'_wxr_import_user_slug','admin'),(863,124,'fusion_demo_import','handyman'),(924,9,'_fusion','a:0:{}'),(866,128,'_fusion','a:4:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(867,128,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(868,128,'fusion_builder_status','active'),(869,128,'_thumbnail_id','1381'),(870,128,'_wxr_import_user_slug','admin'),(871,128,'fusion_demo_import','handyman'),(874,131,'_thumbnail_id','1374'),(875,131,'_fusion','a:4:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(876,131,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(877,131,'fusion_builder_status','active'),(878,131,'_wxr_import_user_slug','admin'),(879,131,'fusion_demo_import','handyman'),(925,10,'_fusion','a:0:{}'),(882,249,'_fusion','a:4:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(883,249,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(884,249,'fusion_builder_status','active'),(885,249,'_thumbnail_id','1370'),(886,249,'_wxr_import_user_slug','admin'),(887,249,'fusion_demo_import','handyman'),(890,251,'_fusion','a:4:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(891,251,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}}s:7:\"Poppins\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}'),(892,251,'fusion_builder_status','active'),(893,251,'_thumbnail_id','1361'),(894,251,'_wxr_import_user_slug','admin'),(895,251,'fusion_demo_import','handyman'),(2652,1924,'_wp_attached_file','2022/09/sunrise-rotary-service-hero2.jpg'),(2572,1923,'wp-smush-lossy','1'),(2573,1923,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.8433095940221875252973404712975025177001953125;s:5:\"bytes\";i:203377;s:11:\"size_before\";i:730434;s:10:\"size_after\";i:527057;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:3541;s:11:\"size_before\";i:5893;s:10:\"size_after\";i:2352;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:5425;s:11:\"size_before\";i:13207;s:10:\"size_after\";i:7782;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:4721;s:11:\"size_before\";i:10350;s:10:\"size_after\";i:5629;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:6557;s:11:\"size_before\";i:17644;s:10:\"size_after\";i:11087;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:8711;s:11:\"size_before\";i:26295;s:10:\"size_after\";i:17584;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";i:40;s:5:\"bytes\";i:5736;s:11:\"size_before\";i:14340;s:10:\"size_after\";i:8604;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.36999999999999744204615126363933086395263671875;s:5:\"bytes\";i:9021;s:11:\"size_before\";i:27865;s:10:\"size_after\";i:18844;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:8958;s:11:\"size_before\";i:27797;s:10:\"size_after\";i:18839;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:16349;s:11:\"size_before\";i:60281;s:10:\"size_after\";i:43932;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13873;s:11:\"size_before\";i:49709;s:10:\"size_after\";i:35836;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:14773;s:11:\"size_before\";i:52578;s:10:\"size_after\";i:37805;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:19252;s:11:\"size_before\";i:74427;s:10:\"size_after\";i:55175;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13876;s:11:\"size_before\";i:50048;s:10:\"size_after\";i:36172;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:20287;s:11:\"size_before\";i:78632;s:10:\"size_after\";i:58345;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:23735;s:11:\"size_before\";i:99148;s:10:\"size_after\";i:75413;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:28562;s:11:\"size_before\";i:122220;s:10:\"size_after\";i:93658;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(904,1682,'posts_sidebar','a:1:{i:0;s:15:\"default_sidebar\";}'),(905,1682,'posts_sidebar_2','a:1:{i:0;s:15:\"default_sidebar\";}'),(906,1682,'_wxr_import_user_slug','Mark'),(907,1682,'fusion_demo_import','handyman'),(2574,1922,'wp-smush-lossy','1'),(926,21,'_fusion','a:0:{}'),(915,253,'_fusion','a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:19:\"blog_page_title_bar\";s:7:\"default\";}'),(916,253,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:0:{}}}'),(917,253,'fusion_builder_status','active'),(918,253,'_thumbnail_id','1369'),(919,253,'_wxr_import_user_slug','admin'),(920,253,'fusion_demo_import','handyman'),(932,1685,'_wp_attached_file','2022/08/wlvrotary-logo1x.png'),(933,1685,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:231;s:6:\"height\";i:72;s:4:\"file\";s:28:\"2022/08/wlvrotary-logo1x.png\";s:8:\"filesize\";i:8132;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"wlvrotary-logo1x-150x72.png\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6300;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"wlvrotary-logo1x-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2214;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"wlvrotary-logo1x-200x62.png\";s:5:\"width\";i:200;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7632;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:27:\"wlvrotary-logo1x-177x72.png\";s:5:\"width\";i:177;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(936,144,'_edit_lock','1673281797:1'),(937,1691,'_menu_item_type','custom'),(938,1691,'_menu_item_menu_item_parent','0'),(939,1691,'_menu_item_object_id','1691'),(940,1691,'_menu_item_object','custom'),(941,1691,'_menu_item_target',''),(942,1691,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(943,1691,'_menu_item_xfn',''),(944,1691,'_menu_item_url','https://portal.clubrunner.ca/2873/User/Login?OriginalUrl=Cfcs+KwtcFDGGtH26t7PxDMkGdgyJ0iMP7X4qI/82HNhAXObEs3BxzsRZIWx6HU5'),(946,1691,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"select\";s:1:\"0\";}'),(3007,1691,'_wp_old_date','2023-01-09'),(3009,2141,'_wp_attached_file','2023/01/246339353_10158813569543983_4115597201873383475_n-1.jpg'),(3010,2141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1800;s:4:\"file\";s:63:\"2023/01/246339353_10158813569543983_4115597201873383475_n-1.jpg\";s:8:\"filesize\";s:6:\"332497\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"23303\";}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"246339353_10158813569543983_4115597201873383475_n-1-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"163785\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11026\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"146664\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"246339353_10158813569543983_4115597201873383475_n-1-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"319121\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"47424\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"23044\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"78145\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5297\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"17991\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50780\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"97629\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:64:\"246339353_10158813569543983_4115597201873383475_n-1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"157267\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:65:\"246339353_10158813569543983_4115597201873383475_n-1-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"306712\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"85314\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"41456\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"40450\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"22939\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12142\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(957,20,'_fusion','a:0:{}'),(958,19,'_fusion','a:0:{}'),(2210,1840,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(2209,1840,'fusion_builder_status','active'),(2208,1840,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:11:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";i:9;s:3:\"400\";i:10;s:3:\"400\";}}}'),(2207,1840,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(2237,1847,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(2236,1847,'fusion_builder_status','active'),(2235,1847,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:9:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";}}}'),(2370,253,'avada_post_views_count','1'),(2369,11,'avada_post_views_count_today_date','28-09-2022'),(2368,11,'avada_today_post_views_count','1'),(2367,11,'avada_post_views_count','1'),(2360,1725,'avada_post_views_count_today_date','09-01-2023'),(2361,19,'avada_post_views_count','1'),(2362,19,'avada_today_post_views_count','1'),(2363,19,'avada_post_views_count_today_date','27-09-2022'),(2364,10,'avada_post_views_count','1'),(2365,10,'avada_today_post_views_count','1'),(2366,10,'avada_post_views_count_today_date','27-09-2022'),(1010,1700,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:4:\"flex\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(1277,1739,'_menu_item_url','#'),(1276,1739,'_menu_item_xfn',''),(1272,1739,'_menu_item_object_id','1739'),(1273,1739,'_menu_item_object','custom'),(1274,1739,'_menu_item_target',''),(1275,1739,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1009,1700,'_wp_page_template','100-width.php'),(1279,1739,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"select\";s:1:\"0\";}'),(1282,1742,'_wp_attached_file','2022/09/wlvsunrise-hero.jpg'),(1011,1700,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:11:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";i:9;s:3:\"400\";i:10;s:3:\"400\";}}}'),(1023,1700,'_yoast_wpseo_content_score','30'),(1012,1700,'fusion_builder_status','active'),(1020,1700,'_dp_original','683'),(1014,1700,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(1015,1700,'_wxr_import_user_slug','danyduchaine'),(1016,1700,'fusion_demo_import','handyman'),(1017,1700,'avada_post_views_count','976'),(1018,1700,'avada_today_post_views_count','19'),(1019,1700,'avada_post_views_count_today_date','10-01-2023'),(1021,1700,'_edit_lock','1663537740:1'),(1022,1700,'_edit_last','1'),(1024,1700,'_yoast_wpseo_estimated-reading-time-minutes','13'),(1025,1700,'_yoast_wpseo_wordproof_timestamp',''),(1026,8,'_fusion','a:0:{}'),(1027,690,'_edit_lock','1661306035:1'),(1028,690,'_edit_last','1'),(2291,1858,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(2290,1858,'fusion_builder_status','active'),(2289,1858,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:11:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";i:9;s:3:\"400\";i:10;s:3:\"400\";}}}'),(1271,1739,'_menu_item_menu_item_parent','0'),(1270,1739,'_menu_item_type','custom'),(2581,1899,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:70.8936210604887264707940630614757537841796875;s:5:\"bytes\";i:657242;s:11:\"size_before\";i:927082;s:10:\"size_after\";i:269840;s:4:\"time\";d:4.160000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.909999999999996589394868351519107818603515625;s:5:\"bytes\";i:2350;s:11:\"size_before\";i:3858;s:10:\"size_after\";i:1508;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.77000000000000312638803734444081783294677734375;s:5:\"bytes\";i:7756;s:11:\"size_before\";i:12162;s:10:\"size_after\";i:4406;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:18745;s:11:\"size_before\";i:27058;s:10:\"size_after\";i:8313;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:8337;s:11:\"size_before\";i:13016;s:10:\"size_after\";i:4679;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:9900;s:11:\"size_before\";i:15487;s:10:\"size_after\";i:5587;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:16927;s:11:\"size_before\";i:25090;s:10:\"size_after\";i:8163;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.3799999999999954525264911353588104248046875;s:5:\"bytes\";i:15947;s:11:\"size_before\";i:24022;s:10:\"size_after\";i:8075;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.25;s:5:\"bytes\";i:26702;s:11:\"size_before\";i:36956;s:10:\"size_after\";i:10254;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.2099999999999937472239253111183643341064453125;s:5:\"bytes\";i:26734;s:11:\"size_before\";i:39778;s:10:\"size_after\";i:13044;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.4800000000000039790393202565610408782958984375;s:5:\"bytes\";i:32106;s:11:\"size_before\";i:44296;s:10:\"size_after\";i:12190;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.7900000000000062527760746888816356658935546875;s:5:\"bytes\";i:27215;s:11:\"size_before\";i:40148;s:10:\"size_after\";i:12933;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.7600000000000051159076974727213382720947265625;s:5:\"bytes\";i:45963;s:11:\"size_before\";i:64960;s:10:\"size_after\";i:18997;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.68000000000000682121026329696178436279296875;s:5:\"bytes\";i:48096;s:11:\"size_before\";i:65278;s:10:\"size_after\";i:17182;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:47443;s:11:\"size_before\";i:66452;s:10:\"size_after\";i:19009;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.2600000000000051159076974727213382720947265625;s:5:\"bytes\";i:65441;s:11:\"size_before\";i:91837;s:10:\"size_after\";i:26396;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.4800000000000039790393202565610408782958984375;s:5:\"bytes\";i:62485;s:11:\"size_before\";i:87416;s:10:\"size_after\";i:24931;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.849999999999994315658113919198513031005859375;s:5:\"bytes\";i:105733;s:11:\"size_before\";i:147167;s:10:\"size_after\";i:41434;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:89362;s:11:\"size_before\";i:122101;s:10:\"size_after\";i:32739;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;}}}'),(2580,1899,'wp-smush-lossy','1'),(2584,1822,'wp-smush-lossy','1'),(2585,1822,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:79.0568007031421728925124625675380229949951171875;s:5:\"bytes\";i:28783;s:11:\"size_before\";i:36408;s:10:\"size_after\";i:7625;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:90.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:3030;s:11:\"size_before\";i:3343;s:10:\"size_after\";i:313;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.0199999999999960209606797434389591217041015625;s:5:\"bytes\";i:2725;s:11:\"size_before\";i:3948;s:10:\"size_after\";i:1223;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2805;s:11:\"size_before\";i:3785;s:10:\"size_after\";i:980;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:2689;s:11:\"size_before\";i:4023;s:10:\"size_after\";i:1334;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.25;s:5:\"bytes\";i:2908;s:11:\"size_before\";i:3579;s:10:\"size_after\";i:671;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:2986;s:11:\"size_before\";i:3426;s:10:\"size_after\";i:440;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.9899999999999948840923025272786617279052734375;s:5:\"bytes\";i:2919;s:11:\"size_before\";i:3560;s:10:\"size_after\";i:641;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.5199999999999960209606797434389591217041015625;s:5:\"bytes\";i:2987;s:11:\"size_before\";i:3413;s:10:\"size_after\";i:426;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.3700000000000045474735088646411895751953125;s:5:\"bytes\";i:2825;s:11:\"size_before\";i:3748;s:10:\"size_after\";i:923;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:2909;s:11:\"size_before\";i:3583;s:10:\"size_after\";i:674;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(2359,1725,'avada_today_post_views_count','4'),(2288,1858,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(2474,1913,'evcal_srow','1672228800'),(2473,1913,'evcal_allday','no'),(2472,1772,'avada_post_views_count_today_date','21-12-2022'),(1262,9,'avada_post_views_count','2'),(1263,9,'avada_today_post_views_count','2'),(1264,9,'avada_post_views_count_today_date','30-08-2022'),(1280,1691,'_wp_old_date','2022-08-24'),(3006,1895,'inline_featured_image','0'),(1283,1742,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1443;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2022/09/wlvsunrise-hero.jpg\";s:8:\"filesize\";i:7815;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-300x104.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3817;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"wlvsunrise-hero-1024x355.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7766;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3717;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-768x266.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5894;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5588;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4226;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7142;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"wlvsunrise-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3507;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"wlvsunrise-hero-200x69.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3615;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-400x139.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4121;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-600x208.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4909;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-800x277.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6071;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"wlvsunrise-hero-1200x416.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9296;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7871;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5180;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5056;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4216;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:27:\"wlvsunrise-hero-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3757;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1284,1743,'_edit_last','1'),(1285,1743,'_edit_lock','1672872056:1'),(2569,1923,'_wp_attached_file','2022/09/sunrise-rotary-service-hero-1.jpg'),(1287,1743,'_fusion','a:21:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:4:\"left\";s:7:\"heading\";s:18:\"Service Above Self\";s:12:\"heading_size\";s:1:\"2\";s:17:\"heading_font_size\";s:4:\"45px\";s:13:\"heading_color\";s:17:\"var(--awb-color1)\";s:10:\"heading_bg\";s:2:\"no\";s:7:\"caption\";s:130:\"We’re all about giving back and making a difference as a team of community leaders who believe in the highest ethical standards.\";s:12:\"caption_size\";s:1:\"3\";s:13:\"caption_color\";s:17:\"var(--awb-color1)\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:8:\"button_1\";s:658:\"[fusion_button link=\"\" text_transform=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment=\"\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" border_width=\"\" border_radius=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" stretch=\"default\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]Learn More[/fusion_button]\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:17:\"caption_separator\";s:4:\"none\";}'),(2394,1895,'_wp_old_slug','service-above-self-cloned'),(2173,1829,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(1289,1750,'_wp_attached_file','2022/09/square-image.png'),(1290,1750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:582;s:6:\"height\";i:582;s:4:\"file\";s:24:\"2022/09/square-image.png\";s:8:\"filesize\";i:8251;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"square-image-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:706;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"square-image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:311;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"square-image-582x272.png\";s:5:\"width\";i:582;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:401;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"square-image-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"square-image-582x441.png\";s:5:\"width\";i:582;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:597;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"square-image-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"square-image-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:411;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"square-image-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:965;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:24:\"square-image-582x400.png\";s:5:\"width\";i:582;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:550;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:24:\"square-image-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:395;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:24:\"square-image-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:348;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:24:\"square-image-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:24:\"square-image-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2172,1829,'_wp_page_template','100-width.php'),(1297,1757,'evcal_srow','1665126000'),(2815,1757,'evcal_allday','no'),(1298,1757,'evcal_erow','1665131400'),(1299,1757,'_evoics_uid','5A1078B0-54E4-42C5-B40E-37CF08922481'),(2831,1758,'evcal_allday','no'),(1301,1758,'evcal_srow','1665595800'),(1302,1758,'evcal_erow','1665599400'),(1303,1758,'evcal_gmap_gen','no'),(1304,1758,'_evoics_uid','60AB3255-D264-4DF7-BC13-1877B732D1F9'),(1305,1759,'evcal_allday','no'),(1306,1759,'evcal_srow','1665730800'),(1307,1759,'evcal_erow','1665736200'),(1308,1759,'_evoics_uid','FFE097B9-DFC1-443F-ADCF-70CD1EEFD836'),(1309,1760,'evcal_allday','no'),(1310,1760,'evcal_srow','1666287000'),(1311,1760,'evcal_erow','1666292400'),(1312,1760,'evcal_gmap_gen','no'),(1313,1760,'_evoics_uid','2C5DF97C-0D2B-45BA-9593-921F94B1B29A'),(1890,1804,'_evo_virtual_erow','1663266600'),(2958,1764,'evcal_allday','no'),(1327,1764,'evcal_srow','1667410200'),(1328,1764,'evcal_erow','1667413800'),(1329,1764,'evcal_gmap_gen','no'),(1330,1764,'_evoics_uid','C65C04FE-AF88-44A8-8BE0-5612D1C5DFF5'),(2954,1765,'evcal_allday','no'),(1332,1765,'evcal_srow','1667545200'),(1333,1765,'evcal_erow','1667550600'),(1334,1765,'_evoics_uid','73ADE987-7CE7-4EAB-9A00-D393A0D90C34'),(2951,1766,'evcal_allday','no'),(1336,1766,'evcal_srow','1668150000'),(1337,1766,'evcal_erow','1668155400'),(1338,1766,'_evoics_uid','47BD0391-BA33-41CE-BE10-1C17F9E7351F'),(1339,1767,'evcal_allday','no'),(1340,1767,'evcal_srow','1669964400'),(1341,1767,'evcal_erow','1669969800'),(1342,1767,'_evoics_uid','8108BFAE-C8FF-4A4A-851F-5A93FDA99F71'),(2961,1768,'evcal_allday','no'),(1344,1768,'evcal_srow','1670434200'),(1345,1768,'evcal_erow','1670437800'),(1346,1768,'evcal_gmap_gen','no'),(1347,1768,'_evoics_uid','BAC0E5BB-BAE0-4911-8E7F-573735B9870B'),(1348,1769,'evcal_allday','no'),(1349,1769,'evcal_srow','1670569200'),(1350,1769,'evcal_erow','1670574600'),(1351,1769,'evcal_gmap_gen','no'),(1352,1769,'_evoics_uid','E88B8C38-3C93-4805-B9B3-8CB1C3676DD5'),(2956,1770,'evcal_allday','no'),(1354,1770,'evcal_srow','1672853400'),(1355,1770,'evcal_erow','1672857000'),(1356,1770,'evcal_gmap_gen','no'),(1357,1770,'_evoics_uid','3D71B758-21FD-4644-B736-CC2E70C832C2'),(2818,1771,'evcal_allday','no'),(1359,1771,'evcal_srow','1672988400'),(1360,1771,'evcal_erow','1672993800'),(1361,1771,'_evoics_uid','8955ADB4-DD7B-477D-8E76-8DC917178265'),(2836,1772,'evcal_allday','no'),(1363,1772,'evcal_srow','1673593200'),(1364,1772,'evcal_erow','1673598600'),(1365,1772,'evcal_gmap_gen','no'),(1366,1772,'_evoics_uid','CA9FF2C4-C401-47CD-B048-E6D556E28D43'),(2848,1773,'_evo_virtual_erow','1673244480'),(1368,1773,'evcal_srow','1674149400'),(1369,1773,'evcal_erow','1674154800'),(1370,1773,'evcal_gmap_gen','no'),(1371,1773,'_evoics_uid','8A03B6EB-42E4-4A68-ACAF-F3479075A9B9'),(1372,1774,'evcal_allday','no'),(1373,1774,'evcal_srow','1675272600'),(1374,1774,'evcal_erow','1675276200'),(1375,1774,'evcal_gmap_gen','no'),(1376,1774,'_evoics_uid','6CDAB8C4-97EC-4D57-9313-02FA5B10DBD7'),(2838,1775,'evcal_allday','no'),(1378,1775,'evcal_srow','1675407600'),(1379,1775,'evcal_erow','1675413000'),(1380,1775,'_evoics_uid','9BE61EC6-EC1C-463B-B9F6-5B2834E856CA'),(2841,1776,'evcal_allday','no'),(1382,1776,'evcal_srow','1676012400'),(1383,1776,'evcal_erow','1676017800'),(1384,1776,'_evoics_uid','50323E9A-7F7F-4445-A92F-AE992ED51864'),(2945,1777,'evcal_allday','no'),(1386,1777,'evcal_srow','1676568600'),(1387,1777,'evcal_erow','1676574000'),(1388,1777,'evcal_gmap_gen','no'),(1389,1777,'_evoics_uid','4C77CFA7-9192-4AA1-8CD6-2299CCEE9486'),(1390,1778,'evcal_allday','no'),(1391,1778,'evcal_srow','1677691800'),(1392,1778,'evcal_erow','1677695400'),(1393,1778,'evcal_gmap_gen','no'),(1394,1778,'_evoics_uid','87B50588-3704-455C-AE41-F1F03ADF6576'),(1395,1779,'evcal_allday','no'),(1396,1779,'evcal_srow','1677826800'),(1397,1779,'evcal_erow','1677832200'),(1398,1779,'evcal_gmap_gen','no'),(1399,1779,'_evoics_uid','FD8600CB-A1E6-4935-9E97-AABBF788FACC'),(1400,1780,'evcal_allday','no'),(1401,1780,'evcal_srow','1678431600'),(1402,1780,'evcal_erow','1678437000'),(1403,1780,'evcal_gmap_gen','no'),(1404,1780,'_evoics_uid','9A412DBA-1DCE-4DCC-B656-78CBB5E2230F'),(2847,1781,'evcal_allday','no'),(1406,1781,'evcal_srow','1678987800'),(1407,1781,'evcal_erow','1678993200'),(1408,1781,'evcal_gmap_gen','no'),(1409,1781,'_evoics_uid','E257FCED-0225-4202-93F2-507515C1DE24'),(1410,1782,'evcal_allday','no'),(1411,1782,'evcal_srow','1680850800'),(1412,1782,'evcal_erow','1680856200'),(1413,1782,'evcal_gmap_gen','no'),(1414,1782,'_evoics_uid','E5A60325-986E-424D-8CF6-0868C45E4607'),(1415,1783,'evcal_allday','no'),(1416,1783,'evcal_srow','1681320600'),(1417,1783,'evcal_erow','1681324200'),(1418,1783,'evcal_gmap_gen','no'),(1419,1783,'_evoics_uid','F38132B7-7F56-45E3-B5B8-65B63DE27E74'),(2896,1784,'_evo_virtual_erow','1673244660'),(1421,1784,'evcal_srow','1682011800'),(1422,1784,'evcal_erow','1682017200'),(1423,1784,'evcal_gmap_gen','no'),(1424,1784,'_evoics_uid','CFAB8251-64D7-42F9-87CE-5C47699FA1C0'),(1425,1785,'evcal_allday','no'),(1426,1785,'evcal_srow','1683135000'),(1427,1785,'evcal_erow','1683138600'),(1428,1785,'evcal_gmap_gen','no'),(1429,1785,'_evoics_uid','F6B4D889-DBE0-46BF-AB2A-03E80EEE3EEE'),(1430,1786,'evcal_allday','no'),(1431,1786,'evcal_srow','1683270000'),(1432,1786,'evcal_erow','1683275400'),(1433,1786,'evcal_gmap_gen','no'),(1434,1786,'_evoics_uid','99569E90-FCA2-48C8-A268-66D3B8950912'),(2948,1787,'evcal_allday','no'),(1436,1787,'evcal_srow','1683874800'),(1437,1787,'evcal_erow','1683880200'),(1438,1787,'evcal_gmap_gen','no'),(1439,1787,'_evoics_uid','95990DD9-2526-4817-A972-13D6479A724F'),(1440,1788,'evcal_allday','no'),(1441,1788,'evcal_srow','1686159000'),(1442,1788,'evcal_erow','1686162600'),(1443,1788,'evcal_gmap_gen','no'),(1444,1788,'_evoics_uid','3F69751D-93BD-4994-8323-3437E4535AFD'),(1453,1777,'_wp_old_slug','sunrise-at-sunset-wlv-sunrise-rotary'),(1454,1777,'_featured','no'),(1455,1777,'_status','scheduled'),(1456,1777,'evo_hide_endtime','no'),(1457,1777,'evo_span_hidden_end','no'),(1458,1777,'evo_exclude_ev','no'),(1459,1777,'evcal_hide_locname','no'),(1460,1777,'evo_access_control_location','no'),(1461,1777,'evo_evcrd_field_org','no'),(1462,1777,'_edit_last','1'),(1463,1788,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1464,1788,'_featured','no'),(1465,1788,'_status','scheduled'),(1466,1788,'evo_hide_endtime','no'),(1467,1788,'evo_span_hidden_end','no'),(1468,1788,'evo_exclude_ev','no'),(1469,1788,'evcal_hide_locname','no'),(1470,1788,'evo_access_control_location','no'),(1471,1788,'evo_evcrd_field_org','no'),(1472,1788,'_edit_last','1'),(1473,1785,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1474,1785,'_featured','no'),(1475,1785,'_status','scheduled'),(1476,1785,'evo_hide_endtime','no'),(1477,1785,'evo_span_hidden_end','no'),(1478,1785,'evo_exclude_ev','no'),(1479,1785,'evcal_hide_locname','no'),(1480,1785,'evo_access_control_location','no'),(1481,1785,'evo_evcrd_field_org','no'),(1482,1785,'_edit_last','1'),(1483,1784,'_wp_old_slug','sunrise-at-sunset-wlv-sunrise-rotary'),(1484,1784,'_featured','no'),(1485,1784,'_status','scheduled'),(1486,1784,'evo_hide_endtime','no'),(1487,1784,'evo_span_hidden_end','no'),(1488,1784,'evo_exclude_ev','no'),(1489,1784,'evcal_hide_locname','no'),(1490,1784,'evo_access_control_location','no'),(1491,1784,'evo_evcrd_field_org','no'),(1492,1784,'_edit_last','1'),(1493,1782,'_featured','no'),(1494,1782,'_status','scheduled'),(1495,1782,'evo_hide_endtime','no'),(1496,1782,'evo_span_hidden_end','no'),(1497,1782,'evo_exclude_ev','no'),(1498,1782,'evcal_hide_locname','no'),(1499,1782,'evo_access_control_location','no'),(1500,1782,'evo_evcrd_field_org','no'),(1501,1782,'_edit_last','1'),(1502,1781,'_wp_old_slug','sunrise-at-sunset-wlv-sunrise-rotary'),(1503,1781,'_featured','no'),(1504,1781,'_status','scheduled'),(1505,1781,'evo_hide_endtime','no'),(1506,1781,'evo_span_hidden_end','no'),(1507,1781,'evo_exclude_ev','no'),(1508,1781,'evcal_hide_locname','no'),(1509,1781,'evo_access_control_location','no'),(1510,1781,'evo_evcrd_field_org','no'),(1511,1781,'_edit_last','1'),(1512,1776,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1513,1776,'_featured','no'),(1514,1776,'_status','scheduled'),(1515,1776,'evo_hide_endtime','no'),(1516,1776,'evo_span_hidden_end','no'),(1517,1776,'evo_exclude_ev','no'),(1518,1776,'evcal_gmap_gen','no'),(1519,1776,'evcal_hide_locname','no'),(1520,1776,'evo_access_control_location','no'),(1521,1776,'evo_evcrd_field_org','no'),(1522,1776,'_edit_last','1'),(1523,1787,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1524,1787,'_featured','no'),(1525,1787,'_status','scheduled'),(1526,1787,'evo_hide_endtime','no'),(1527,1787,'evo_span_hidden_end','no'),(1528,1787,'evo_exclude_ev','no'),(1529,1787,'evcal_hide_locname','no'),(1530,1787,'evo_access_control_location','no'),(1531,1787,'evo_evcrd_field_org','no'),(1532,1787,'_edit_last','1'),(1533,1783,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1534,1783,'_featured','no'),(1535,1783,'_status','scheduled'),(1536,1783,'evo_hide_endtime','no'),(1537,1783,'evo_span_hidden_end','no'),(1538,1783,'evo_exclude_ev','no'),(1539,1783,'evcal_hide_locname','no'),(1540,1783,'evo_access_control_location','no'),(1541,1783,'evo_evcrd_field_org','no'),(1542,1783,'_edit_last','1'),(1543,1780,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1544,1780,'_featured','no'),(1545,1780,'_status','scheduled'),(1546,1780,'evo_hide_endtime','no'),(1547,1780,'evo_span_hidden_end','no'),(1548,1780,'evo_exclude_ev','no'),(1549,1780,'evcal_hide_locname','no'),(1550,1780,'evo_access_control_location','no'),(1551,1780,'evo_evcrd_field_org','no'),(1552,1780,'_edit_last','1'),(1553,1778,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1554,1778,'_featured','no'),(1555,1778,'_status','scheduled'),(1556,1778,'evo_hide_endtime','no'),(1557,1778,'evo_span_hidden_end','no'),(1558,1778,'evo_exclude_ev','no'),(1559,1778,'evcal_hide_locname','no'),(1560,1778,'evo_access_control_location','no'),(1561,1778,'evo_evcrd_field_org','no'),(1562,1778,'_edit_last','1'),(1563,1779,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1564,1779,'_featured','no'),(1565,1779,'_status','scheduled'),(1566,1779,'evo_hide_endtime','no'),(1567,1779,'evo_span_hidden_end','no'),(1568,1779,'evo_exclude_ev','no'),(1569,1779,'evcal_hide_locname','no'),(1570,1779,'evo_access_control_location','no'),(1571,1779,'evo_evcrd_field_org','no'),(1572,1779,'_edit_last','1'),(1573,1786,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1574,1786,'_featured','no'),(1575,1786,'_status','scheduled'),(1576,1786,'evo_hide_endtime','no'),(1577,1786,'evo_span_hidden_end','no'),(1578,1786,'evo_exclude_ev','no'),(1579,1786,'evcal_hide_locname','no'),(1580,1786,'evo_access_control_location','no'),(1581,1786,'evo_evcrd_field_org','no'),(1582,1786,'_edit_last','1'),(1583,1757,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1584,1757,'_featured','no'),(1585,1757,'_status','scheduled'),(1586,1757,'evo_hide_endtime','no'),(1587,1757,'evo_span_hidden_end','no'),(1588,1757,'evo_exclude_ev','no'),(1589,1757,'evcal_gmap_gen','no'),(1590,1757,'evcal_hide_locname','no'),(1591,1757,'evo_access_control_location','no'),(1592,1757,'evo_evcrd_field_org','no'),(1593,1757,'_edit_last','1'),(1594,1760,'_wp_old_slug','sunrise-at-sunset-wlv-sunrise-rotary'),(1595,1760,'_featured','no'),(1596,1760,'_status','scheduled'),(1597,1760,'evo_hide_endtime','no'),(1598,1760,'evo_span_hidden_end','no'),(1599,1760,'evo_exclude_ev','no'),(1600,1760,'evcal_hide_locname','no'),(1601,1760,'evo_access_control_location','no'),(1602,1760,'evo_evcrd_field_org','no'),(1603,1760,'_edit_last','1'),(1604,1770,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1605,1770,'_featured','no'),(1606,1770,'_status','scheduled'),(1607,1770,'evo_hide_endtime','no'),(1608,1770,'evo_span_hidden_end','no'),(1609,1770,'evo_exclude_ev','no'),(1610,1770,'evcal_hide_locname','no'),(1611,1770,'evo_access_control_location','no'),(1612,1770,'evo_evcrd_field_org','no'),(1613,1770,'_edit_last','1'),(1614,1769,'_featured','no'),(1615,1769,'_status','scheduled'),(1616,1769,'evo_hide_endtime','no'),(1617,1769,'evo_span_hidden_end','no'),(1618,1769,'evo_exclude_ev','no'),(1619,1769,'evcal_hide_locname','no'),(1620,1769,'evo_access_control_location','no'),(1621,1769,'evo_evcrd_field_org','no'),(1622,1769,'_edit_last','1'),(1623,1768,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1624,1768,'_featured','no'),(1625,1768,'_status','scheduled'),(1626,1768,'evo_hide_endtime','no'),(1627,1768,'evo_span_hidden_end','no'),(1628,1768,'evo_exclude_ev','no'),(1629,1768,'evcal_hide_locname','no'),(1630,1768,'evo_access_control_location','no'),(1631,1768,'evo_evcrd_field_org','no'),(1632,1768,'_edit_last','1'),(1633,1767,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1634,1767,'_featured','no'),(1635,1767,'_status','scheduled'),(1636,1767,'evo_hide_endtime','no'),(1637,1767,'evo_span_hidden_end','no'),(1638,1767,'evo_exclude_ev','no'),(1639,1767,'evcal_gmap_gen','no'),(1640,1767,'evcal_hide_locname','no'),(1641,1767,'evo_access_control_location','no'),(1642,1767,'evo_evcrd_field_org','no'),(1643,1767,'_edit_last','1'),(2583,1823,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:82.4109434671007221595573355443775653839111328125;s:5:\"bytes\";i:26327;s:11:\"size_before\";i:31946;s:10:\"size_after\";i:5619;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:80.3799999999999954525264911353588104248046875;s:5:\"bytes\";i:2900;s:11:\"size_before\";i:3608;s:10:\"size_after\";i:708;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:2909;s:11:\"size_before\";i:3583;s:10:\"size_after\";i:674;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.5199999999999960209606797434389591217041015625;s:5:\"bytes\";i:2987;s:11:\"size_before\";i:3413;s:10:\"size_after\";i:426;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.2099999999999937472239253111183643341064453125;s:5:\"bytes\";i:2975;s:11:\"size_before\";i:3451;s:10:\"size_after\";i:476;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:2807;s:11:\"size_before\";i:3795;s:10:\"size_after\";i:988;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:2986;s:11:\"size_before\";i:3426;s:10:\"size_after\";i:440;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.25;s:5:\"bytes\";i:2908;s:11:\"size_before\";i:3579;s:10:\"size_after\";i:671;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:90.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:3030;s:11:\"size_before\";i:3343;s:10:\"size_after\";i:313;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.3700000000000045474735088646411895751953125;s:5:\"bytes\";i:2825;s:11:\"size_before\";i:3748;s:10:\"size_after\";i:923;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(2582,1823,'wp-smush-lossy','1'),(1664,1758,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1665,1758,'_featured','no'),(1666,1758,'_status','scheduled'),(1667,1758,'evo_hide_endtime','no'),(1668,1758,'evo_span_hidden_end','no'),(1669,1758,'evo_exclude_ev','no'),(1670,1758,'evcal_hide_locname','no'),(1671,1758,'evo_access_control_location','no'),(1672,1758,'evo_evcrd_field_org','no'),(1673,1758,'_edit_last','1'),(1674,1759,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1675,1759,'_featured','no'),(1676,1759,'_status','scheduled'),(1677,1759,'evo_hide_endtime','no'),(1678,1759,'evo_span_hidden_end','no'),(1679,1759,'evo_exclude_ev','no'),(1680,1759,'evcal_gmap_gen','no'),(1681,1759,'evcal_hide_locname','no'),(1682,1759,'evo_access_control_location','no'),(1683,1759,'evo_evcrd_field_org','no'),(1684,1759,'_edit_last','1'),(1695,1764,'_wp_old_slug','board-meeting-wlv-sunrise-rotary'),(1696,1764,'_featured','no'),(1697,1764,'_status','scheduled'),(1698,1764,'evo_hide_endtime','no'),(1699,1764,'evo_span_hidden_end','no'),(1700,1764,'evo_exclude_ev','no'),(1701,1764,'evcal_hide_locname','no'),(1702,1764,'evo_access_control_location','no'),(1703,1764,'evo_evcrd_field_org','no'),(1704,1764,'_edit_last','1'),(1705,1765,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1706,1765,'_featured','no'),(1707,1765,'_status','scheduled'),(1708,1765,'evo_hide_endtime','no'),(1709,1765,'evo_span_hidden_end','no'),(1710,1765,'evo_exclude_ev','no'),(1711,1765,'evcal_gmap_gen','no'),(1712,1765,'evcal_hide_locname','no'),(1713,1765,'evo_access_control_location','no'),(1714,1765,'evo_evcrd_field_org','no'),(1715,1765,'_edit_last','1'),(1716,1766,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1717,1766,'_featured','no'),(1718,1766,'_status','scheduled'),(1719,1766,'evo_hide_endtime','no'),(1720,1766,'evo_span_hidden_end','no'),(1721,1766,'evo_exclude_ev','no'),(1722,1766,'evcal_gmap_gen','no'),(1723,1766,'evcal_hide_locname','no'),(1724,1766,'evo_access_control_location','no'),(1725,1766,'evo_evcrd_field_org','no'),(1726,1766,'_edit_last','1'),(1727,1771,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1728,1771,'_featured','no'),(1729,1771,'_status','scheduled'),(1730,1771,'evo_hide_endtime','no'),(1731,1771,'evo_span_hidden_end','no'),(1732,1771,'evo_exclude_ev','no'),(1733,1771,'evcal_gmap_gen','no'),(1734,1771,'evcal_hide_locname','no'),(1735,1771,'evo_access_control_location','no'),(1736,1771,'evo_evcrd_field_org','no'),(1737,1771,'_edit_last','1'),(1738,1772,'_wp_old_slug','general-meeting-wlv-sunrise-rotary'),(1739,1772,'_featured','no'),(1740,1772,'_status','scheduled'),(1741,1772,'evo_hide_endtime','no'),(1742,1772,'evo_span_hidden_end','no'),(1743,1772,'evo_exclude_ev','no'),(1744,1772,'evcal_hide_locname','no'),(1745,1772,'evo_access_control_location','no'),(1746,1772,'evo_evcrd_field_org','no'),(1747,1772,'_edit_last','1'),(1748,1773,'_featured','no'),(1749,1773,'_status','scheduled'),(1750,1773,'evo_hide_endtime','no'),(1751,1773,'evo_span_hidden_end','no'),(1752,1773,'evo_exclude_ev','no'),(1753,1773,'evcal_hide_locname','no'),(1754,1773,'evo_access_control_location','no'),(1755,1773,'evo_evcrd_field_org','no'),(1756,1773,'_edit_last','1'),(1757,1774,'_featured','no'),(1758,1774,'_status','scheduled'),(1759,1774,'evo_hide_endtime','no'),(1760,1774,'evo_span_hidden_end','no'),(1761,1774,'evo_exclude_ev','no'),(1762,1774,'evcal_hide_locname','no'),(1763,1774,'evo_access_control_location','no'),(1764,1774,'evo_evcrd_field_org','no'),(1765,1774,'_edit_last','1'),(1766,1775,'_featured','no'),(1767,1775,'_status','scheduled'),(1768,1775,'evo_hide_endtime','no'),(1769,1775,'evo_span_hidden_end','no'),(1770,1775,'evo_exclude_ev','no'),(1771,1775,'evcal_gmap_gen','no'),(1772,1775,'evcal_hide_locname','no'),(1773,1775,'evo_access_control_location','no'),(1774,1775,'evo_evcrd_field_org','no'),(1775,1775,'_edit_last','1'),(2587,1750,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:65.94000372647661833980237133800983428955078125;s:5:\"bytes\";i:3539;s:11:\"size_before\";i:5367;s:10:\"size_after\";i:1828;s:4:\"time\";d:0.93000000000000004884981308350688777863979339599609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:33;s:11:\"size_before\";i:131;s:10:\"size_after\";i:98;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:17;s:11:\"size_before\";i:132;s:10:\"size_after\";i:115;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.56999999999999317878973670303821563720703125;s:5:\"bytes\";i:681;s:11:\"size_before\";i:965;s:10:\"size_after\";i:284;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.9500000000000028421709430404007434844970703125;s:5:\"bytes\";i:107;s:11:\"size_before\";i:210;s:10:\"size_after\";i:103;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.2699999999999960209606797434389591217041015625;s:5:\"bytes\";i:482;s:11:\"size_before\";i:706;s:10:\"size_after\";i:224;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:52.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:162;s:11:\"size_before\";i:311;s:10:\"size_after\";i:149;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:77.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:426;s:11:\"size_before\";i:550;s:10:\"size_after\";i:124;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:471;s:11:\"size_before\";i:597;s:10:\"size_after\";i:126;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.06999999999999317878973670303821563720703125;s:5:\"bytes\";i:289;s:11:\"size_before\";i:401;s:10:\"size_after\";i:112;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:59.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:246;s:11:\"size_before\";i:411;s:10:\"size_after\";i:165;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:282;s:11:\"size_before\";i:395;s:10:\"size_after\";i:113;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.9500000000000028421709430404007434844970703125;s:5:\"bytes\";i:107;s:11:\"size_before\";i:210;s:10:\"size_after\";i:103;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.81999999999999317878973670303821563720703125;s:5:\"bytes\";i:236;s:11:\"size_before\";i:348;s:10:\"size_after\";i:112;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(2586,1750,'wp-smush-lossy','1'),(1891,1804,'evcal_srow','1663261200'),(1892,1804,'evcal_erow','1663266600'),(1902,1804,'evcal_subtitle','September Evening Meeting'),(1894,1804,'_featured','no'),(1895,1804,'_evo_lang','L1'),(1896,1804,'_edit_lock','1663547826:1'),(1897,1804,'_wp_old_date','2022-09-18'),(1898,1804,'_fusion','a:17:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:4:\"fimg\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}s:17:\"post_links_target\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:20:\"image_rollover_icons\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"posts_sidebar\";s:15:\"default_sidebar\";s:15:\"posts_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(1899,1804,'_edit_last','1'),(1985,1807,'_evo_virtual_erow','1663547340'),(1901,1804,'evcal_event_color','4bb5d8'),(1903,1804,'evcal_hide_locname','no'),(1904,1804,'evcal_gmap_gen','yes'),(1905,1804,'evcal_name_over_img','no'),(1906,1804,'evo_access_control_location','no'),(1907,1804,'evcal_repeat','no'),(1908,1804,'_evcal_rep_series','no'),(1909,1804,'_evcal_rep_endt','no'),(1910,1804,'_evcal_rep_series_clickable','no'),(1911,1804,'evcal_rep_gap','1'),(1912,1804,'evcal_rep_num','1'),(1913,1804,'evo_rep_WK','4'),(1914,1804,'evo_rep_WKwk','4'),(1915,1804,'evcal_lmlink_target','no'),(1916,1804,'_evcal_exlink_option','1'),(1917,1804,'evo_hide_endtime','no'),(1918,1804,'evo_span_hidden_end','no'),(1919,1804,'evo_year_long','no'),(1920,1804,'_evo_month_long','no'),(1921,1804,'evo_evcrd_field_org','no'),(1922,1804,'evo_event_org_as_perf','no'),(1923,1804,'_evo_virtual_endtime','no'),(1924,1804,'evo_exclude_ev','no'),(1925,1804,'_wpnonce','00cde76e30'),(1926,1804,'_wp_http_referer','/wp-admin/post-new.php?post_type=ajde_events'),(1927,1804,'_wp_original_http_referer','https://test-site.wlvrotary.org/wp-admin/edit.php?post_type=ajde_events&paged=1'),(1928,1804,'_completed','yes'),(1929,1804,'_onlyloggedin','no'),(1930,1804,'_fusion_google_fonts','\"\"'),(1931,1804,'_status','scheduled'),(1932,1804,'_attendance_mode','offline'),(1933,1804,'_evo_date_format','Y/m/d'),(1934,1804,'_evo_time_format','12h'),(1935,1804,'_start_hour','5'),(1936,1804,'_start_minute','00'),(1937,1804,'_start_ampm','pm'),(1938,1804,'_end_hour','6'),(1939,1804,'_end_minute','30'),(1940,1804,'_end_ampm','pm'),(1986,1807,'evcal_srow','1662188400'),(1944,1804,'_evo_tz','America/Los_Angeles'),(1945,1804,'_edata','a:9:{s:9:\"day_light\";s:2:\"no\";s:13:\"hide_progress\";s:2:\"no\";s:12:\"_health_mask\";s:2:\"no\";s:12:\"_health_temp\";s:2:\"no\";s:12:\"_health_pdis\";s:2:\"no\";s:11:\"_health_san\";s:2:\"no\";s:11:\"_health_out\";s:2:\"no\";s:11:\"_health_vac\";s:2:\"no\";s:13:\"_health_other\";s:0:\"\";}'),(1946,1804,'_evo_rep_series','no'),(1947,1804,'_new_repeat_start_hour','11'),(1948,1804,'_new_repeat_start_minute','56'),(1949,1804,'_new_repeat_start_ampm','pm'),(1950,1804,'_new_repeat_end_hour','11'),(1951,1804,'_new_repeat_end_minute','56'),(1952,1804,'_new_repeat_end_ampm','pm'),(1953,1804,'_virtual','no'),(1954,1804,'_health','no'),(1955,1804,'_yoast_wpseo_estimated-reading-time-minutes','0'),(1956,1804,'_yoast_wpseo_wordproof_timestamp',''),(1987,1807,'evcal_erow','1662193800'),(1996,1807,'evcal_hide_locname','no'),(1989,1807,'_featured','no'),(1990,1807,'_evo_lang','L1'),(1991,1807,'_edit_lock','1673244058:1'),(1992,1807,'_fusion','a:17:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:4:\"fimg\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}s:17:\"post_links_target\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:20:\"image_rollover_icons\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"posts_sidebar\";s:15:\"default_sidebar\";s:15:\"posts_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(1993,1807,'_edit_last','1'),(2053,1807,'_vir_ampm','am'),(1995,1807,'evcal_event_color','4bb5d8'),(1997,1807,'evcal_gmap_gen','yes'),(1998,1807,'evcal_name_over_img','no'),(1999,1807,'evo_access_control_location','no'),(2000,1807,'evcal_repeat','no'),(2001,1807,'_evcal_rep_series','no'),(2123,1804,'evcal_allday','no'),(1982,1804,'_vir_hour','6'),(1983,1804,'_vir_minute','30'),(1984,1804,'_vir_ampm','pm'),(2002,1807,'_evcal_rep_endt','no'),(2003,1807,'_evcal_rep_series_clickable','no'),(2004,1807,'evcal_rep_gap','1'),(2005,1807,'evcal_rep_num','1'),(2006,1807,'evo_rep_WK','6'),(2007,1807,'evo_rep_WKwk','6'),(2008,1807,'evcal_lmlink_target','no'),(2009,1807,'_evcal_exlink_option','1'),(2010,1807,'evo_hide_endtime','no'),(2011,1807,'evo_span_hidden_end','no'),(2012,1807,'evo_year_long','no'),(2013,1807,'_evo_month_long','no'),(2014,1807,'evo_evcrd_field_org','no'),(2015,1807,'evo_event_org_as_perf','no'),(2016,1807,'_evo_virtual_endtime','no'),(2017,1807,'evo_exclude_ev','no'),(2018,1807,'_wpnonce','4798f17e2c'),(2019,1807,'_wp_http_referer','/wp-admin/post-new.php?post_type=ajde_events'),(2020,1807,'_wp_original_http_referer','https://test-site.wlvrotary.org/wp-admin/edit.php?post_type=ajde_events'),(2021,1807,'_completed','no'),(2022,1807,'_onlyloggedin','no'),(2023,1807,'_fusion_google_fonts','\"\"'),(2024,1807,'_status','scheduled'),(2025,1807,'_attendance_mode','mixed'),(2026,1807,'_evo_date_format','Y/m/d'),(2027,1807,'_evo_time_format','12h'),(2028,1807,'_start_hour','7'),(2029,1807,'_start_minute','00'),(2030,1807,'_start_ampm','am'),(2031,1807,'_end_hour','8'),(2032,1807,'_end_minute','30'),(2033,1807,'_end_ampm','am'),(2052,1807,'_vir_minute','29'),(2051,1807,'_vir_hour','12'),(2812,1807,'evcal_allday','no'),(2037,1807,'_evo_tz','America/Los_Angeles'),(2038,1807,'_edata','a:9:{s:9:\"day_light\";s:2:\"no\";s:13:\"hide_progress\";s:2:\"no\";s:12:\"_health_mask\";s:2:\"no\";s:12:\"_health_temp\";s:2:\"no\";s:12:\"_health_pdis\";s:2:\"no\";s:11:\"_health_san\";s:2:\"no\";s:11:\"_health_out\";s:2:\"no\";s:11:\"_health_vac\";s:2:\"no\";s:13:\"_health_other\";s:0:\"\";}'),(2039,1807,'_evo_rep_series','no'),(2040,1807,'_new_repeat_start_hour','12'),(2041,1807,'_new_repeat_start_minute','29'),(2042,1807,'_new_repeat_start_ampm','am'),(2043,1807,'_new_repeat_end_hour','12'),(2044,1807,'_new_repeat_end_minute','29'),(2045,1807,'_new_repeat_end_ampm','am'),(2046,1807,'_virtual','no'),(2047,1807,'_health','no'),(2048,1807,'_yoast_wpseo_estimated-reading-time-minutes','0'),(2049,1807,'_yoast_wpseo_wordproof_timestamp',''),(2065,1808,'evcal_hide_locname','no'),(2058,1808,'_featured','no'),(2059,1808,'_evo_lang','L1'),(2060,1808,'_edit_lock','1673244103:1'),(2061,1808,'_fusion','a:17:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:4:\"fimg\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}s:17:\"post_links_target\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:20:\"image_rollover_icons\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"posts_sidebar\";s:15:\"default_sidebar\";s:15:\"posts_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(2062,1808,'_edit_last','1'),(2813,1808,'evcal_allday','no'),(2064,1808,'evcal_event_color','4bb5d8'),(2066,1808,'evcal_gmap_gen','yes'),(2067,1808,'evcal_name_over_img','no'),(2068,1808,'evo_access_control_location','no'),(2069,1808,'evcal_repeat','no'),(2070,1808,'_evcal_rep_series','no'),(2071,1808,'_evcal_rep_endt','no'),(2072,1808,'_evcal_rep_series_clickable','no'),(2073,1808,'evcal_rep_gap','1'),(2074,1808,'evcal_rep_num','1'),(2075,1808,'evo_rep_WK','6'),(2076,1808,'evo_rep_WKwk','6'),(2077,1808,'evcal_lmlink_target','no'),(2078,1808,'_evcal_exlink_option','1'),(2079,1808,'evo_hide_endtime','no'),(2080,1808,'evo_span_hidden_end','no'),(2054,1808,'_evo_virtual_erow','1663547400'),(2055,1808,'evcal_srow','1662793200'),(2056,1808,'evcal_erow','1662798600'),(2081,1808,'evo_year_long','no'),(2082,1808,'_evo_month_long','no'),(2083,1808,'evo_evcrd_field_org','no'),(2084,1808,'evo_event_org_as_perf','no'),(2085,1808,'_evo_virtual_endtime','no'),(2086,1808,'evo_exclude_ev','no'),(2087,1808,'_wpnonce','377e1f173c'),(2088,1808,'_wp_http_referer','/wp-admin/post-new.php?post_type=ajde_events'),(2089,1808,'_wp_original_http_referer','https://test-site.wlvrotary.org/wp-admin/edit.php?post_type=ajde_events'),(2090,1808,'_completed','no'),(2091,1808,'_onlyloggedin','no'),(2092,1808,'_fusion_google_fonts','\"\"'),(2093,1808,'_status','scheduled'),(2094,1808,'_attendance_mode','mixed'),(2095,1808,'_evo_date_format','Y/m/d'),(2096,1808,'_evo_time_format','12h'),(2097,1808,'_start_hour','7'),(2098,1808,'_start_minute','00'),(2099,1808,'_start_ampm','am'),(2100,1808,'_end_hour','8'),(2101,1808,'_end_minute','30'),(2102,1808,'_end_ampm','am'),(2103,1808,'_vir_hour','12'),(2104,1808,'_vir_minute','30'),(2105,1808,'_vir_ampm','am'),(2106,1808,'_evo_tz','America/Los_Angeles'),(2107,1808,'_edata','a:9:{s:9:\"day_light\";s:2:\"no\";s:13:\"hide_progress\";s:2:\"no\";s:12:\"_health_mask\";s:2:\"no\";s:12:\"_health_temp\";s:2:\"no\";s:12:\"_health_pdis\";s:2:\"no\";s:11:\"_health_san\";s:2:\"no\";s:11:\"_health_out\";s:2:\"no\";s:11:\"_health_vac\";s:2:\"no\";s:13:\"_health_other\";s:0:\"\";}'),(2108,1808,'_evo_rep_series','no'),(2109,1808,'_new_repeat_start_hour','12'),(2110,1808,'_new_repeat_start_minute','30'),(2111,1808,'_new_repeat_start_ampm','am'),(2112,1808,'_new_repeat_end_hour','12'),(2113,1808,'_new_repeat_end_minute','30'),(2114,1808,'_new_repeat_end_ampm','am'),(2115,1808,'_virtual','no'),(2116,1808,'_health','no'),(2117,1808,'_yoast_wpseo_estimated-reading-time-minutes','0'),(2118,1808,'_yoast_wpseo_wordproof_timestamp',''),(2121,1808,'evcal_subtitle',''),(2127,22,'_edit_lock','1663547829:1'),(2433,1911,'_evoics_uid','594s981pmod238mo6ke0rnlmqr@google.com'),(2432,1911,'evcal_erow','1671224400'),(2431,1911,'evcal_srow','1671210000'),(2429,1910,'_evoics_uid','7ueif9s5eg0sk1c13vsj9v8qsq@google.com'),(2428,1910,'evcal_erow','1668362400'),(2426,1910,'evcal_allday','no'),(2427,1910,'evcal_srow','1668355200'),(2425,1909,'_evoics_uid','cqn6in1o75gb07dbeg9u1hg5pg@google.com'),(2430,1911,'evcal_allday','no'),(2424,1909,'evcal_erow','1668709800'),(2423,1909,'evcal_srow','1668704400'),(2422,1909,'evcal_allday','no'),(2152,99,'_fusion','a:0:{}'),(2153,51,'_edit_lock','1663644068:1'),(2155,51,'_edit_last','1'),(2161,1823,'_wp_attached_file','2022/09/rectangle-image.jpg'),(2162,1823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2022/09/rectangle-image.jpg\";s:8:\"filesize\";i:4272;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"rectangle-image-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3608;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"rectangle-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3413;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"rectangle-image-400x272.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3748;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"rectangle-image-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3583;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"rectangle-image-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3343;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"rectangle-image-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3451;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:27:\"rectangle-image-400x272.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3748;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:27:\"rectangle-image-400x295.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3795;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:27:\"rectangle-image-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3579;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:27:\"rectangle-image-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3426;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2206,1840,'_wp_page_template','100-width.php'),(2234,1847,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(2168,1827,'evcal_allday','no'),(2169,1827,'evcal_srow','1666951200'),(2170,1827,'evcal_erow','1666954800'),(2171,1827,'_evoics_uid','s04onru6uiqrcllt5habt0pvsc@google.com'),(2174,1829,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:11:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";i:9;s:3:\"400\";i:10;s:3:\"400\";}}}'),(2175,1829,'fusion_builder_status','active'),(2176,1829,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(2177,1829,'_wxr_import_user_slug','danyduchaine'),(2178,1829,'fusion_demo_import','handyman'),(2179,1829,'avada_post_views_count','324'),(2180,1829,'avada_today_post_views_count','15'),(2181,1829,'avada_post_views_count_today_date','10-01-2023'),(2186,1829,'_dp_original','1700'),(2183,1829,'_yoast_wpseo_content_score','60'),(2184,1829,'_yoast_wpseo_estimated-reading-time-minutes','9'),(2185,1829,'_yoast_wpseo_wordproof_timestamp',''),(2187,1829,'_edit_lock','1664240603:1'),(2188,1829,'_edit_last','1'),(2192,1838,'_menu_item_type','post_type'),(2193,1838,'_menu_item_menu_item_parent','0'),(2194,1838,'_menu_item_object_id','1829'),(2195,1838,'_menu_item_object','page'),(2196,1838,'_menu_item_target',''),(2197,1838,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2198,1838,'_menu_item_xfn',''),(2199,1838,'_menu_item_url',''),(2233,1847,'_wp_page_template','100-width.php'),(2201,1838,'_menu_item_fusion_megamenu','a:15:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";}'),(2287,1858,'_wp_page_template','100-width.php'),(2358,1725,'avada_post_views_count','21'),(2211,1840,'_wxr_import_user_slug','danyduchaine'),(2212,1840,'fusion_demo_import','handyman'),(2213,1840,'avada_post_views_count','313'),(2214,1840,'avada_today_post_views_count','3'),(2215,1840,'avada_post_views_count_today_date','10-01-2023'),(2216,1840,'_yoast_wpseo_content_score','60'),(2217,1840,'_yoast_wpseo_estimated-reading-time-minutes','13'),(2218,1840,'_yoast_wpseo_wordproof_timestamp',''),(2220,1840,'_dp_original','1829'),(2221,1840,'_edit_lock','1664246248:1'),(2222,1840,'_edit_last','1'),(2223,1844,'_menu_item_type','post_type'),(2224,1844,'_menu_item_menu_item_parent','0'),(2225,1844,'_menu_item_object_id','1840'),(2226,1844,'_menu_item_object','page'),(2227,1844,'_menu_item_target',''),(2228,1844,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2229,1844,'_menu_item_xfn',''),(2230,1844,'_menu_item_url',''),(2232,1844,'_menu_item_fusion_megamenu','a:15:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";}'),(2238,1847,'_wxr_import_user_slug','danyduchaine'),(2239,1847,'fusion_demo_import','handyman'),(2240,1847,'avada_post_views_count','292'),(2241,1847,'avada_today_post_views_count','4'),(2242,1847,'avada_post_views_count_today_date','09-01-2023'),(2243,1847,'_yoast_wpseo_content_score','60'),(2244,1847,'_yoast_wpseo_estimated-reading-time-minutes','11'),(2245,1847,'_yoast_wpseo_wordproof_timestamp',''),(2247,1847,'_dp_original','1829'),(2248,1847,'_edit_lock','1664243331:1'),(2249,1847,'_edit_last','1'),(2250,1851,'_wp_page_template','100-width.php'),(2251,1851,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(2252,1851,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:9:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";}}}'),(2253,1851,'fusion_builder_status','active'),(2254,1851,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(2255,1851,'_wxr_import_user_slug','danyduchaine'),(2256,1851,'fusion_demo_import','handyman'),(2257,1851,'avada_post_views_count','300'),(2258,1851,'avada_today_post_views_count','5'),(2259,1851,'avada_post_views_count_today_date','09-01-2023'),(2260,1851,'_yoast_wpseo_content_score','90'),(2261,1851,'_yoast_wpseo_estimated-reading-time-minutes','5'),(2262,1851,'_yoast_wpseo_wordproof_timestamp',''),(2264,1851,'_dp_original','1847'),(2265,1851,'_edit_lock','1672261800:1'),(2266,1851,'_edit_last','1'),(2267,1855,'_menu_item_type','post_type'),(2268,1855,'_menu_item_menu_item_parent','0'),(2269,1855,'_menu_item_object_id','1847'),(2270,1855,'_menu_item_object','page'),(2271,1855,'_menu_item_target',''),(2272,1855,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2273,1855,'_menu_item_xfn',''),(2274,1855,'_menu_item_url',''),(2276,1855,'_menu_item_fusion_megamenu','a:15:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";}'),(2277,1856,'_menu_item_type','post_type'),(2278,1856,'_menu_item_menu_item_parent','0'),(2279,1856,'_menu_item_object_id','1851'),(2280,1856,'_menu_item_object','page'),(2281,1856,'_menu_item_target',''),(2282,1856,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2283,1856,'_menu_item_xfn',''),(2284,1856,'_menu_item_url',''),(2286,1856,'_menu_item_fusion_megamenu','a:15:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";}'),(2292,1858,'_wxr_import_user_slug','danyduchaine'),(2293,1858,'fusion_demo_import','handyman'),(2294,1858,'avada_post_views_count','290'),(2295,1858,'avada_today_post_views_count','4'),(2296,1858,'avada_post_views_count_today_date','10-01-2023'),(2297,1858,'_yoast_wpseo_content_score','60'),(2298,1858,'_yoast_wpseo_estimated-reading-time-minutes','10'),(2299,1858,'_yoast_wpseo_wordproof_timestamp',''),(2301,1858,'_dp_original','1840'),(2302,1858,'_edit_lock','1664246464:1'),(2303,1858,'_edit_last','1'),(2575,1922,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.579024823713620406806512619368731975555419921875;s:5:\"bytes\";i:225632;s:11:\"size_before\";i:818129;s:10:\"size_after\";i:592497;s:4:\"time\";d:0.5900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3528;s:11:\"size_before\";i:5873;s:10:\"size_after\";i:2345;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:4722;s:11:\"size_before\";i:10300;s:10:\"size_after\";i:5578;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5368;s:11:\"size_before\";i:13045;s:10:\"size_after\";i:7677;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:5709;s:11:\"size_before\";i:14192;s:10:\"size_after\";i:8483;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.25999999999999801048033987171947956085205078125;s:5:\"bytes\";i:8663;s:11:\"size_before\";i:26043;s:10:\"size_after\";i:17380;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.31000000000000227373675443232059478759765625;s:5:\"bytes\";i:8798;s:11:\"size_before\";i:27231;s:10:\"size_after\";i:18433;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:8795;s:11:\"size_before\";i:27123;s:10:\"size_after\";i:18328;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6533;s:11:\"size_before\";i:17584;s:10:\"size_after\";i:11051;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:14356;s:11:\"size_before\";i:51111;s:10:\"size_after\";i:36755;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:13618;s:11:\"size_before\";i:47951;s:10:\"size_after\";i:34333;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:18806;s:11:\"size_before\";i:72713;s:10:\"size_after\";i:53907;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:16037;s:11:\"size_before\";i:58756;s:10:\"size_after\";i:42719;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:13533;s:11:\"size_before\";i:48815;s:10:\"size_after\";i:35282;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:19781;s:11:\"size_before\";i:76841;s:10:\"size_after\";i:57060;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:23234;s:11:\"size_before\";i:95973;s:10:\"size_after\";i:72739;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.25;s:5:\"bytes\";i:26170;s:11:\"size_before\";i:107909;s:10:\"size_after\";i:81739;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:27981;s:11:\"size_before\";i:116669;s:10:\"size_after\";i:88688;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(2528,1774,'avada_post_views_count_today_date','07-01-2023'),(2331,1877,'_wp_page_template','100-width.php'),(2332,1877,'_fusion','a:13:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(2333,1877,'_fusion_google_fonts',''),(2334,1877,'fusion_builder_status','active'),(2335,1877,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(2336,1877,'_wxr_import_user_slug','danyduchaine'),(2337,1877,'fusion_demo_import','handyman'),(2338,1877,'avada_post_views_count','264'),(2339,1877,'avada_today_post_views_count','3'),(2340,1877,'avada_post_views_count_today_date','27-09-2022'),(2341,1877,'_yoast_wpseo_content_score','60'),(2342,1877,'_yoast_wpseo_estimated-reading-time-minutes','13'),(2343,1877,'_yoast_wpseo_wordproof_timestamp',''),(2345,1877,'_dp_original','1840'),(2346,1725,'_fusion','a:0:{}'),(2347,1725,'fusion_builder_status','active'),(2348,1883,'_menu_item_type','post_type'),(2349,1883,'_menu_item_menu_item_parent','0'),(2350,1883,'_menu_item_object_id','1725'),(2351,1883,'_menu_item_object','page'),(2352,1883,'_menu_item_target',''),(2353,1883,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2354,1883,'_menu_item_xfn',''),(2355,1883,'_menu_item_url',''),(2357,1883,'_menu_item_fusion_megamenu','a:15:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";}'),(2371,253,'avada_today_post_views_count','1'),(2372,253,'avada_post_views_count_today_date','28-09-2022'),(2373,15,'avada_post_views_count','1'),(2374,15,'avada_today_post_views_count','1'),(2375,15,'avada_post_views_count_today_date','29-09-2022'),(2376,12,'avada_post_views_count','1'),(2377,12,'avada_today_post_views_count','1'),(2378,12,'avada_post_views_count_today_date','29-09-2022'),(2379,17,'avada_post_views_count','1'),(2380,17,'avada_today_post_views_count','1'),(2381,17,'avada_post_views_count_today_date','30-09-2022'),(2382,20,'avada_post_views_count','1'),(2383,20,'avada_today_post_views_count','1'),(2384,20,'avada_post_views_count_today_date','30-09-2022'),(2385,8,'avada_post_views_count','1'),(2386,8,'avada_today_post_views_count','1'),(2387,8,'avada_post_views_count_today_date','30-09-2022'),(2388,131,'avada_post_views_count','1'),(2389,131,'avada_today_post_views_count','1'),(2390,131,'avada_post_views_count_today_date','30-09-2022'),(2391,741,'avada_post_views_count','1'),(2392,741,'avada_today_post_views_count','1'),(2393,741,'avada_post_views_count_today_date','01-10-2022'),(2395,1895,'_thumbnail_id','1926'),(2396,1895,'_fusion','a:23:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:4:\"left\";s:7:\"heading\";s:21:\"Local & Global Impact\";s:12:\"heading_size\";s:1:\"3\";s:17:\"heading_font_size\";s:4:\"45px\";s:13:\"heading_color\";s:17:\"var(--awb-color1)\";s:10:\"heading_bg\";s:2:\"no\";s:7:\"caption\";s:117:\"Since 1905, Rotary has improved the lives of millions as the largest, all-volunteer service organization in the world\";s:12:\"caption_size\";s:1:\"3\";s:17:\"caption_font_size\";s:2:\"22\";s:13:\"caption_color\";s:17:\"var(--awb-color1)\";s:10:\"caption_bg\";s:2:\"no\";s:16:\"caption_bg_color\";s:17:\"var(--awb-color6)\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:8:\"button_1\";s:659:\"[fusion_button link=\"#\" text_transform=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment=\"\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" border_width=\"\" border_radius=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" stretch=\"default\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]Learn More[/fusion_button]\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:17:\"caption_separator\";s:4:\"none\";}'),(2397,1895,'_edit_lock','1673306691:1'),(2398,1895,'_edit_last','1'),(2399,1899,'_wp_attached_file','2022/10/hitv-logo-master.png'),(2400,1899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1464;s:6:\"height\";i:1246;s:4:\"file\";s:28:\"2022/10/hitv-logo-master.png\";s:8:\"filesize\";i:147838;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27058;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"hitv-logo-master-1024x872.png\";s:5:\"width\";i:1024;s:6:\"height\";i:872;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12162;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-768x654.png\";s:5:\"width\";i:768;s:6:\"height\";i:654;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87416;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44296;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25090;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66452;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"hitv-logo-master-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3858;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-200x170.png\";s:5:\"width\";i:200;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15487;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-400x340.png\";s:5:\"width\";i:400;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39778;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-600x511.png\";s:5:\"width\";i:600;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64960;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-800x681.png\";s:5:\"width\";i:800;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91837;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:30:\"hitv-logo-master-1200x1021.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1021;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147167;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65278;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36956;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40148;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24022;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:28:\"hitv-logo-master-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2401,1901,'_wp_attached_file','2022/10/hitv-social-std-v2.png'),(2402,1901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:30:\"2022/10/hitv-social-std-v2.png\";s:8:\"filesize\";i:1524893;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143721;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"hitv-social-std-v2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1512204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41453;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:809181;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:262662;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107090;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:455852;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"hitv-social-std-v2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9835;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68918;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242788;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:515303;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-800x800.png\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:874194;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:516756;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:225115;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:211990;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106002;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:30:\"hitv-social-std-v2-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45563;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2403,124,'avada_post_views_count','1'),(2404,124,'avada_today_post_views_count','1'),(2405,124,'avada_post_views_count_today_date','05-10-2022'),(2406,21,'avada_post_views_count','1'),(2407,21,'avada_today_post_views_count','1'),(2408,21,'avada_post_views_count_today_date','05-10-2022'),(2409,1568,'avada_post_views_count','1'),(2410,1568,'avada_today_post_views_count','1'),(2411,1568,'avada_post_views_count_today_date','05-10-2022'),(2412,732,'avada_post_views_count','1'),(2413,732,'avada_today_post_views_count','1'),(2414,732,'avada_post_views_count_today_date','05-10-2022'),(2415,714,'avada_post_views_count','6'),(2416,714,'avada_today_post_views_count','1'),(2417,714,'avada_post_views_count_today_date','24-10-2022'),(2418,1904,'evcal_allday','no'),(2419,1904,'evcal_srow','1670000400'),(2420,1904,'evcal_erow','1670004000'),(2421,1904,'_evoics_uid','ipvae6rfj0fed2ci2dk36mssg8@google.com'),(2588,1742,'wp-smush-lossy','1'),(2589,1742,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:72.3443586878191950972905033268034458160400390625;s:5:\"bytes\";i:69269;s:11:\"size_before\";i:95749;s:10:\"size_after\";i:26480;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3096;s:11:\"size_before\";i:3817;s:10:\"size_after\";i:721;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:3042;s:11:\"size_before\";i:3717;s:10:\"size_after\";i:675;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.349999999999994315658113919198513031005859375;s:5:\"bytes\";i:3311;s:11:\"size_before\";i:4226;s:10:\"size_after\";i:915;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:84.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:2952;s:11:\"size_before\";i:3507;s:10:\"size_after\";i:555;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:82.9899999999999948840923025272786617279052734375;s:5:\"bytes\";i:3000;s:11:\"size_before\";i:3615;s:10:\"size_after\";i:615;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:3991;s:11:\"size_before\";i:5588;s:10:\"size_after\";i:1597;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:79.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:3262;s:11:\"size_before\";i:4121;s:10:\"size_after\";i:859;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:5033;s:11:\"size_before\";i:7766;s:10:\"size_after\";i:2733;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:3642;s:11:\"size_before\";i:4909;s:10:\"size_after\";i:1267;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.7699999999999960209606797434389591217041015625;s:5:\"bytes\";i:4769;s:11:\"size_before\";i:7142;s:10:\"size_after\";i:2373;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3787;s:11:\"size_before\";i:5180;s:10:\"size_after\";i:1393;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:4145;s:11:\"size_before\";i:5894;s:10:\"size_after\";i:1749;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:62.88000000000000255795384873636066913604736328125;s:5:\"bytes\";i:5845;s:11:\"size_before\";i:9296;s:10:\"size_after\";i:3451;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.06000000000000227373675443232059478759765625;s:5:\"bytes\";i:3291;s:11:\"size_before\";i:4216;s:10:\"size_after\";i:925;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.18000000000000682121026329696178436279296875;s:5:\"bytes\";i:3700;s:11:\"size_before\";i:5056;s:10:\"size_after\";i:1356;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.1200000000000045474735088646411895751953125;s:5:\"bytes\";i:4196;s:11:\"size_before\";i:6071;s:10:\"size_after\";i:1875;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.81999999999999317878973670303821563720703125;s:5:\"bytes\";i:3074;s:11:\"size_before\";i:3757;s:10:\"size_after\";i:683;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.2099999999999937472239253111183643341064453125;s:5:\"bytes\";i:5133;s:11:\"size_before\";i:7871;s:10:\"size_after\";i:2738;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(2590,1685,'wp-smush-lossy','1'),(2591,1685,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:63.1447587354409307636160519905388355255126953125;s:5:\"bytes\";i:15180;s:11:\"size_before\";i:24040;s:10:\"size_after\";i:8860;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.6200000000000045474735088646411895751953125;s:5:\"bytes\";i:4323;s:11:\"size_before\";i:6300;s:10:\"size_after\";i:1977;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.93000000000000682121026329696178436279296875;s:5:\"bytes\";i:5441;s:11:\"size_before\";i:7894;s:10:\"size_after\";i:2453;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.93999999999999772626324556767940521240234375;s:5:\"bytes\";i:995;s:11:\"size_before\";i:2214;s:10:\"size_after\";i:1219;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4421;s:11:\"size_before\";i:7632;s:10:\"size_after\";i:3211;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2592,1684,'wp-smush-lossy','1'),(2593,1684,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:62.83540489642184212470965576358139514923095703125;s:5:\"bytes\";i:41707;s:11:\"size_before\";i:66375;s:10:\"size_after\";i:24668;s:4:\"time\";d:0.269999999999999962252417162744677625596523284912109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:940;s:11:\"size_before\";i:2115;s:10:\"size_after\";i:1175;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4055;s:11:\"size_before\";i:6884;s:10:\"size_after\";i:2829;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1831;s:11:\"size_before\";i:3669;s:10:\"size_after\";i:1838;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.0100000000000051159076974727213382720947265625;s:5:\"bytes\";i:7094;s:11:\"size_before\";i:10280;s:10:\"size_after\";i:3186;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.5499999999999971578290569595992565155029296875;s:5:\"bytes\";i:7670;s:11:\"size_before\";i:11189;s:10:\"size_after\";i:3519;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.02000000000000312638803734444081783294677734375;s:5:\"bytes\";i:1572;s:11:\"size_before\";i:3143;s:10:\"size_after\";i:1571;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7604;s:11:\"size_before\";i:11988;s:10:\"size_after\";i:4384;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:10941;s:11:\"size_before\";i:17107;s:10:\"size_after\";i:6166;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(2594,1382,'wp-smush-lossy','1'),(2595,1382,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.6213126433926614566871649003587663173675537109375;s:5:\"bytes\";i:22369;s:11:\"size_before\";i:152989;s:10:\"size_after\";i:130620;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:22369;s:11:\"size_before\";i:152989;s:10:\"size_after\";i:130620;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(2596,1381,'wp-smush-lossy','1'),(2597,1381,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.066581432918066951742730452679097652435302734375;s:5:\"bytes\";i:18229;s:11:\"size_before\";i:100899;s:10:\"size_after\";i:82670;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:18229;s:11:\"size_before\";i:100899;s:10:\"size_after\";i:82670;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2598,1379,'wp-smush-lossy','1'),(2599,1379,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.9905363918748815166281929123215377330780029296875;s:5:\"bytes\";i:16553;s:11:\"size_before\";i:110423;s:10:\"size_after\";i:93870;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:16553;s:11:\"size_before\";i:110423;s:10:\"size_after\";i:93870;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2600,1375,'wp-smush-lossy','1'),(2601,1375,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.756275488234251724861678667366504669189453125;s:5:\"bytes\";i:21030;s:11:\"size_before\";i:118437;s:10:\"size_after\";i:97407;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.760000000000001563194018672220408916473388671875;s:5:\"bytes\";i:21030;s:11:\"size_before\";i:118437;s:10:\"size_after\";i:97407;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(2602,1374,'wp-smush-lossy','1'),(2603,1374,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.97694245567308968247743905521929264068603515625;s:5:\"bytes\";i:30559;s:11:\"size_before\";i:145679;s:10:\"size_after\";i:115120;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:30559;s:11:\"size_before\";i:145679;s:10:\"size_after\";i:115120;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(2604,1370,'wp-smush-lossy','1'),(2605,1370,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.6827485380116957713880765368230640888214111328125;s:5:\"bytes\";i:10727;s:11:\"size_before\";i:68400;s:10:\"size_after\";i:57673;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10727;s:11:\"size_before\";i:68400;s:10:\"size_after\";i:57673;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(2606,1369,'wp-smush-lossy','1'),(2607,1369,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.74725517944452946039746166206896305084228515625;s:5:\"bytes\";i:46958;s:11:\"size_before\";i:298198;s:10:\"size_after\";i:251240;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.75;s:5:\"bytes\";i:46958;s:11:\"size_before\";i:298198;s:10:\"size_after\";i:251240;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(2608,1363,'wp-smush-lossy','1'),(2609,1363,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.195910637253182695616260389215312898159027099609375;s:5:\"bytes\";i:3645;s:11:\"size_before\";i:114052;s:10:\"size_after\";i:110407;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3645;s:11:\"size_before\";i:114052;s:10:\"size_after\";i:110407;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(2610,1361,'wp-smush-lossy','1'),(2611,1361,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.42245503198609224426718355971388518810272216796875;s:5:\"bytes\";i:3012;s:11:\"size_before\";i:88007;s:10:\"size_after\";i:84995;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3012;s:11:\"size_before\";i:88007;s:10:\"size_after\";i:84995;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(2612,1325,'wp-smush-lossy','1'),(2613,1325,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.028782792490364528248392161913216114044189453125;s:5:\"bytes\";i:10957;s:11:\"size_before\";i:64344;s:10:\"size_after\";i:53387;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:10957;s:11:\"size_before\";i:64344;s:10:\"size_after\";i:53387;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2614,1161,'wp-smush-lossy','1'),(2615,1161,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.029122982193374724602108472026884555816650390625;s:5:\"bytes\";i:30080;s:11:\"size_before\";i:120180;s:10:\"size_after\";i:90100;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:30080;s:11:\"size_before\";i:120180;s:10:\"size_after\";i:90100;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(2616,1151,'wp-smush-lossy','1'),(2617,1151,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.736994276498240008521634081262163817882537841796875;s:5:\"bytes\";i:3800;s:11:\"size_before\";i:101686;s:10:\"size_after\";i:97886;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3800;s:11:\"size_before\";i:101686;s:10:\"size_after\";i:97886;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(2618,989,'wp-smush-lossy','1'),(2619,989,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.187238460812384044373857250320725142955780029296875;s:5:\"bytes\";i:3039;s:11:\"size_before\";i:95349;s:10:\"size_after\";i:92310;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:3039;s:11:\"size_before\";i:95349;s:10:\"size_after\";i:92310;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(2620,987,'wp-smush-lossy','1'),(2621,987,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.38341624791669293159657172509469091892242431640625;s:5:\"bytes\";i:2700;s:11:\"size_before\";i:79801;s:10:\"size_after\";i:77101;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2700;s:11:\"size_before\";i:79801;s:10:\"size_after\";i:77101;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(2622,957,'wp-smush-lossy','1'),(2623,957,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.265487362887933731059320052736438810825347900390625;s:5:\"bytes\";i:2721;s:11:\"size_before\";i:83326;s:10:\"size_after\";i:80605;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2721;s:11:\"size_before\";i:83326;s:10:\"size_after\";i:80605;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(2624,742,'wp-smush-lossy','1'),(2625,742,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.258316734548265092286101207719184458255767822265625;s:5:\"bytes\";i:3288;s:11:\"size_before\";i:100911;s:10:\"size_after\";i:97623;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3288;s:11:\"size_before\";i:100911;s:10:\"size_after\";i:97623;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2626,739,'wp-smush-lossy','1'),(2627,739,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.2424750326332940630891243927180767059326171875;s:5:\"bytes\";i:4198;s:11:\"size_before\";i:129469;s:10:\"size_after\";i:125271;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4198;s:11:\"size_before\";i:129469;s:10:\"size_after\";i:125271;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(2628,733,'wp-smush-lossy','1'),(2629,733,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.425162503225489540881198990973643958568572998046875;s:5:\"bytes\";i:5575;s:11:\"size_before\";i:162766;s:10:\"size_after\";i:157191;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:5575;s:11:\"size_before\";i:162766;s:10:\"size_after\";i:157191;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(2630,716,'wp-smush-lossy','1'),(2631,716,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.029433702449939591616612233337946236133575439453125;s:5:\"bytes\";i:4224;s:11:\"size_before\";i:139432;s:10:\"size_after\";i:135208;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.029999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:4224;s:11:\"size_before\";i:139432;s:10:\"size_after\";i:135208;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(2632,697,'wp-smush-lossy','1'),(2633,697,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.224166841333053756812887513660825788974761962890625;s:5:\"bytes\";i:6153;s:11:\"size_before\";i:190840;s:10:\"size_after\";i:184687;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:6153;s:11:\"size_before\";i:190840;s:10:\"size_after\";i:184687;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(2634,680,'wp-smush-lossy','1'),(2635,680,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:81.3179213594151377719754236750304698944091796875;s:5:\"bytes\";i:8231;s:11:\"size_before\";i:10122;s:10:\"size_after\";i:1891;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.31999999999999317878973670303821563720703125;s:5:\"bytes\";i:8231;s:11:\"size_before\";i:10122;s:10:\"size_after\";i:1891;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2636,658,'wp-smush-lossy','1'),(2637,658,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:138453;s:10:\"size_after\";i:138453;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:138453;s:10:\"size_after\";i:138453;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(2638,657,'wp-smush-lossy','1'),(2639,657,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.544245103985286249326236429624259471893310546875;s:5:\"bytes\";i:14868;s:11:\"size_before\";i:102226;s:10:\"size_after\";i:87358;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:14868;s:11:\"size_before\";i:102226;s:10:\"size_after\";i:87358;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(2640,650,'wp-smush-lossy','1'),(2641,650,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:87419;s:10:\"size_after\";i:87419;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:87419;s:10:\"size_after\";i:87419;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(2642,541,'wp-smush-lossy','1'),(2643,541,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:111471;s:10:\"size_after\";i:111471;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:111471;s:10:\"size_after\";i:111471;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(2644,505,'wp-smush-lossy','1'),(2645,505,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1168571248626670833203888832940720021724700927734375;s:5:\"bytes\";i:1596;s:11:\"size_before\";i:142901;s:10:\"size_after\";i:141305;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1596;s:11:\"size_before\";i:142901;s:10:\"size_after\";i:141305;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(2646,69,'wp-smush-lossy','1'),(2647,69,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.342910101946245049475692212581634521484375;s:5:\"bytes\";i:878;s:11:\"size_before\";i:4316;s:10:\"size_after\";i:3438;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:878;s:11:\"size_before\";i:4316;s:10:\"size_after\";i:3438;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(2648,68,'wp-smush-lossy','1'),(2649,68,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.57943925233644932859533582814037799835205078125;s:5:\"bytes\";i:711;s:11:\"size_before\";i:2675;s:10:\"size_after\";i:1964;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:711;s:11:\"size_before\";i:2675;s:10:\"size_after\";i:1964;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2650,50,'wp-smush-lossy','1'),(2651,50,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:53.497807017543863139508175663650035858154296875;s:5:\"bytes\";i:4879;s:11:\"size_before\";i:9120;s:10:\"size_after\";i:4241;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1019;s:11:\"size_before\";i:2012;s:10:\"size_after\";i:993;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:699;s:10:\"size_after\";i:699;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:812;s:11:\"size_before\";i:1701;s:10:\"size_after\";i:889;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.7399999999999948840923025272786617279052734375;s:5:\"bytes\";i:3048;s:11:\"size_before\";i:4708;s:10:\"size_after\";i:1660;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2653,1924,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2022/09/sunrise-rotary-service-hero2.jpg\";s:8:\"filesize\";s:6:\"239668\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19639\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12221\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"83295\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"55510\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"25390\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"88684\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"sunrise-rotary-service-hero2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5793\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11584\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"29407\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56509\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"88639\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"101683\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"47681\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"45327\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"25541\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13313\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2654,1924,'wp-smush-lossy','1'),(2655,1924,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.757730042691235894380952231585979461669921875;s:5:\"bytes\";i:204242;s:11:\"size_before\";i:710216;s:10:\"size_after\";i:505974;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:5517;s:11:\"size_before\";i:13313;s:10:\"size_after\";i:7796;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:5232;s:11:\"size_before\";i:12221;s:10:\"size_after\";i:6989;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7132;s:11:\"size_before\";i:19639;s:10:\"size_after\";i:12507;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:3503;s:11:\"size_before\";i:5793;s:10:\"size_after\";i:2290;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.50999999999999801048033987171947956085205078125;s:5:\"bytes\";i:8560;s:11:\"size_before\";i:25541;s:10:\"size_after\";i:16981;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8523;s:11:\"size_before\";i:25390;s:10:\"size_after\";i:16867;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:5032;s:11:\"size_before\";i:11584;s:10:\"size_after\";i:6552;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:9543;s:11:\"size_before\";i:29407;s:10:\"size_after\";i:19864;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13102;s:11:\"size_before\";i:45327;s:10:\"size_after\";i:32225;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13966;s:11:\"size_before\";i:47681;s:10:\"size_after\";i:33715;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:15557;s:11:\"size_before\";i:55510;s:10:\"size_after\";i:39953;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21699;s:11:\"size_before\";i:83295;s:10:\"size_after\";i:61596;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:15753;s:11:\"size_before\";i:56509;s:10:\"size_after\";i:40756;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:22777;s:11:\"size_before\";i:88639;s:10:\"size_after\";i:65862;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:22651;s:11:\"size_before\";i:88684;s:10:\"size_after\";i:66033;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:25695;s:11:\"size_before\";i:101683;s:10:\"size_after\";i:75988;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2656,1925,'_wp_attached_file','2022/09/sunrise-rotary-service-hero2-1.jpg'),(2657,1925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:42:\"2022/09/sunrise-rotary-service-hero2-1.jpg\";s:8:\"filesize\";s:6:\"239668\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19639\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12221\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"83295\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"55510\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"25390\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"88684\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"sunrise-rotary-service-hero2-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5793\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11584\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"29407\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56509\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"88639\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"101683\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"47681\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"45327\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"25541\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:42:\"sunrise-rotary-service-hero2-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13313\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2658,1925,'wp-smush-lossy','1'),(2659,1925,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.757730042691235894380952231585979461669921875;s:5:\"bytes\";i:204242;s:11:\"size_before\";i:710216;s:10:\"size_after\";i:505974;s:4:\"time\";d:0.6700000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:3503;s:11:\"size_before\";i:5793;s:10:\"size_after\";i:2290;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:5032;s:11:\"size_before\";i:11584;s:10:\"size_after\";i:6552;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:5517;s:11:\"size_before\";i:13313;s:10:\"size_after\";i:7796;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:5232;s:11:\"size_before\";i:12221;s:10:\"size_after\";i:6989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8523;s:11:\"size_before\";i:25390;s:10:\"size_after\";i:16867;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:9543;s:11:\"size_before\";i:29407;s:10:\"size_after\";i:19864;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.50999999999999801048033987171947956085205078125;s:5:\"bytes\";i:8560;s:11:\"size_before\";i:25541;s:10:\"size_after\";i:16981;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7132;s:11:\"size_before\";i:19639;s:10:\"size_after\";i:12507;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13102;s:11:\"size_before\";i:45327;s:10:\"size_after\";i:32225;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13966;s:11:\"size_before\";i:47681;s:10:\"size_after\";i:33715;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:15557;s:11:\"size_before\";i:55510;s:10:\"size_after\";i:39953;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21699;s:11:\"size_before\";i:83295;s:10:\"size_after\";i:61596;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:15753;s:11:\"size_before\";i:56509;s:10:\"size_after\";i:40756;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:22777;s:11:\"size_before\";i:88639;s:10:\"size_after\";i:65862;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:22651;s:11:\"size_before\";i:88684;s:10:\"size_after\";i:66033;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:25695;s:11:\"size_before\";i:101683;s:10:\"size_after\";i:75988;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2660,1743,'_thumbnail_id','1925'),(2661,1926,'_wp_attached_file','2022/10/sunrise-rotary-collaboration-hero.jpg'),(2662,1926,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:45:\"2022/10/sunrise-rotary-collaboration-hero.jpg\";s:8:\"filesize\";s:6:\"267671\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"21558\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12705\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"96400\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"62353\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"27820\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"98534\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:43:\"sunrise-rotary-collaboration-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5711\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12289\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"33018\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"64749\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"102371\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"112762\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"54680\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50364\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"27696\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:45:\"sunrise-rotary-collaboration-hero-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13959\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2663,1926,'wp-smush-lossy','1'),(2664,1926,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.7187782711749122199762496165931224822998046875;s:5:\"bytes\";i:197001;s:11:\"size_before\";i:796969;s:10:\"size_after\";i:599968;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4963;s:11:\"size_before\";i:12289;s:10:\"size_after\";i:7326;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.06000000000000227373675443232059478759765625;s:5:\"bytes\";i:4963;s:11:\"size_before\";i:12705;s:10:\"size_after\";i:7742;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:59.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:3400;s:11:\"size_before\";i:5711;s:10:\"size_after\";i:2311;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.7999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7071;s:11:\"size_before\";i:21558;s:10:\"size_after\";i:14487;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8335;s:11:\"size_before\";i:27820;s:10:\"size_after\";i:19485;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:5332;s:11:\"size_before\";i:13959;s:10:\"size_after\";i:8627;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:9402;s:11:\"size_before\";i:33018;s:10:\"size_after\";i:23616;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:8133;s:11:\"size_before\";i:27696;s:10:\"size_after\";i:19563;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:14821;s:11:\"size_before\";i:62353;s:10:\"size_after\";i:47532;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:15520;s:11:\"size_before\";i:64749;s:10:\"size_after\";i:49229;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:12501;s:11:\"size_before\";i:50364;s:10:\"size_after\";i:37863;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13727;s:11:\"size_before\";i:54680;s:10:\"size_after\";i:40953;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:21509;s:11:\"size_before\";i:96400;s:10:\"size_after\";i:74891;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:21154;s:11:\"size_before\";i:98534;s:10:\"size_after\";i:77380;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";i:22;s:5:\"bytes\";i:22517;s:11:\"size_before\";i:102371;s:10:\"size_after\";i:79854;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:23653;s:11:\"size_before\";i:112762;s:10:\"size_after\";i:89109;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(2665,2002,'_wp_attached_file','2023/01/donation.jpg'),(2666,2002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:20:\"2023/01/donation.jpg\";s:8:\"filesize\";s:6:\"455139\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"donation-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"27093\";}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"donation-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"278446\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"donation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8035\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"donation-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"162561\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"donation-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"51953\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"donation-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19839\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"donation-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"89990\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"donation-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2646\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"donation-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13033\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"donation-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"45885\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"donation-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"99764\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"donation-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"175137\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"donation-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"370064\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"donation-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"105339\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"donation-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"43381\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"donation-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"40286\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"donation-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"20008\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"donation-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8918\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2667,2002,'wp-smush-lossy','1'),(2668,2002,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.783719432813314131891502256621606647968292236328125;s:5:\"bytes\";i:59116;s:11:\"size_before\";i:1562378;s:10:\"size_after\";i:1503262;s:4:\"time\";d:1.279999999999999804600747665972448885440826416015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:329;s:11:\"size_before\";i:2646;s:10:\"size_after\";i:2317;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:559;s:11:\"size_before\";i:8035;s:10:\"size_after\";i:7476;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:831;s:11:\"size_before\";i:13033;s:10:\"size_after\";i:12202;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:552;s:11:\"size_before\";i:8918;s:10:\"size_after\";i:8366;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1020;s:11:\"size_before\";i:19839;s:10:\"size_after\";i:18819;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1032;s:11:\"size_before\";i:20008;s:10:\"size_after\";i:18976;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1302;s:11:\"size_before\";i:27093;s:10:\"size_after\";i:25791;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1706;s:11:\"size_before\";i:40286;s:10:\"size_after\";i:38580;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1934;s:11:\"size_before\";i:51953;s:10:\"size_after\";i:50019;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1765;s:11:\"size_before\";i:43381;s:10:\"size_after\";i:41616;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1915;s:11:\"size_before\";i:45885;s:10:\"size_after\";i:43970;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3821;s:11:\"size_before\";i:99764;s:10:\"size_after\";i:95943;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:3978;s:11:\"size_before\";i:105339;s:10:\"size_after\";i:101361;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:3245;s:11:\"size_before\";i:89990;s:10:\"size_after\";i:86745;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6296;s:11:\"size_before\";i:175137;s:10:\"size_after\";i:168841;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:5902;s:11:\"size_before\";i:162561;s:10:\"size_after\";i:156659;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9955;s:11:\"size_before\";i:278446;s:10:\"size_after\";i:268491;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12974;s:11:\"size_before\";i:370064;s:10:\"size_after\";i:357090;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}}}'),(2669,2014,'_wp_attached_file','2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg'),(2670,2014,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1980;s:6:\"height\";i:1485;s:4:\"file\";s:49:\"2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg\";s:8:\"filesize\";s:6:\"485121\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"20188\";}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"171453\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7889\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"102973\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"345883\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-669x272.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50828\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-320x202.jpeg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19973\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-700x441.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"78366\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-66x66.jpeg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2202\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-200x150.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9905\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"32869\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"66926\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"110925\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:50:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1200x900.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"227055\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-940x400.jpeg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"96703\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-540x272.jpeg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"42383\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-460x295.jpeg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"37923\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-300x214.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19447\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-177x142.jpeg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8841\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2671,2014,'wp-smush-lossy','1'),(2672,2014,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.722503531277620236750180993112735450267791748046875;s:5:\"bytes\";i:54078;s:11:\"size_before\";i:1452732;s:10:\"size_after\";i:1398654;s:4:\"time\";d:1.0900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:185;s:11:\"size_before\";i:7889;s:10:\"size_after\";i:7704;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.970000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:294;s:11:\"size_before\";i:9905;s:10:\"size_after\";i:9611;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2202;s:10:\"size_after\";i:2202;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:243;s:11:\"size_before\";i:8841;s:10:\"size_after\";i:8598;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:834;s:11:\"size_before\";i:20188;s:10:\"size_after\";i:19354;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:869;s:11:\"size_before\";i:19973;s:10:\"size_after\";i:19104;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:802;s:11:\"size_before\";i:19447;s:10:\"size_after\";i:18645;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1674;s:11:\"size_before\";i:37923;s:10:\"size_after\";i:36249;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1421;s:11:\"size_before\";i:32869;s:10:\"size_after\";i:31448;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1964;s:11:\"size_before\";i:42383;s:10:\"size_after\";i:40419;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2362;s:11:\"size_before\";i:50828;s:10:\"size_after\";i:48466;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3201;s:11:\"size_before\";i:78366;s:10:\"size_after\";i:75165;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2766;s:11:\"size_before\";i:66926;s:10:\"size_after\";i:64160;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:3973;s:11:\"size_before\";i:102973;s:10:\"size_after\";i:99000;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:4003;s:11:\"size_before\";i:96703;s:10:\"size_after\";i:92700;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6292;s:11:\"size_before\";i:171453;s:10:\"size_after\";i:165161;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:4366;s:11:\"size_before\";i:110925;s:10:\"size_after\";i:106559;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:8016;s:11:\"size_before\";i:227055;s:10:\"size_after\";i:219039;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:10813;s:11:\"size_before\";i:345883;s:10:\"size_after\";i:335070;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(2673,2015,'_wp_attached_file','2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg'),(2674,2015,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1980;s:6:\"height\";i:1485;s:4:\"file\";s:49:\"2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg\";s:8:\"filesize\";s:6:\"418989\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"18265\";}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"619608EB-DE58-4CF7-ACDE-684778326DA2-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"151185\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6662\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"91984\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"619608EB-DE58-4CF7-ACDE-684778326DA2-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"302127\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-669x272.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"46568\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-320x202.jpeg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"17902\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-700x441.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"70214\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"619608EB-DE58-4CF7-ACDE-684778326DA2-66x66.jpeg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"1921\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-200x150.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8997\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"29545\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"60205\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"98860\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:50:\"619608EB-DE58-4CF7-ACDE-684778326DA2-1200x900.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"199202\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-940x400.jpeg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"86451\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-540x272.jpeg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"37414\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-460x295.jpeg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"34335\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-300x214.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"17475\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:49:\"619608EB-DE58-4CF7-ACDE-684778326DA2-177x142.jpeg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7679\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2675,2015,'wp-smush-lossy','1'),(2676,2015,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.17562438276569114492531298310495913028717041015625;s:5:\"bytes\";i:40870;s:11:\"size_before\";i:1286991;s:10:\"size_after\";i:1246121;s:4:\"time\";d:1.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:162;s:11:\"size_before\";i:8997;s:10:\"size_after\";i:8835;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1921;s:10:\"size_after\";i:1921;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.84999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:65;s:11:\"size_before\";i:7679;s:10:\"size_after\";i:7614;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.419999999999999984456877655247808434069156646728515625;s:5:\"bytes\";i:28;s:11:\"size_before\";i:6662;s:10:\"size_after\";i:6634;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:496;s:11:\"size_before\";i:17475;s:10:\"size_after\";i:16979;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.109999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:568;s:11:\"size_before\";i:18265;s:10:\"size_after\";i:17697;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:951;s:11:\"size_before\";i:29545;s:10:\"size_after\";i:28594;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1277;s:11:\"size_before\";i:37414;s:10:\"size_after\";i:36137;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1138;s:11:\"size_before\";i:34335;s:10:\"size_after\";i:33197;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:520;s:11:\"size_before\";i:17902;s:10:\"size_after\";i:17382;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1741;s:11:\"size_before\";i:46568;s:10:\"size_after\";i:44827;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.319999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:2331;s:11:\"size_before\";i:70214;s:10:\"size_after\";i:67883;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2887;s:11:\"size_before\";i:86451;s:10:\"size_after\";i:83564;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:2066;s:11:\"size_before\";i:60205;s:10:\"size_after\";i:58139;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:2959;s:11:\"size_before\";i:91984;s:10:\"size_after\";i:89025;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3235;s:11:\"size_before\";i:98860;s:10:\"size_after\";i:95625;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6403;s:11:\"size_before\";i:199202;s:10:\"size_after\";i:192799;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4925;s:11:\"size_before\";i:151185;s:10:\"size_after\";i:146260;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.020000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:9118;s:11:\"size_before\";i:302127;s:10:\"size_after\";i:293009;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(2677,2016,'_wp_attached_file','2023/01/DSC02517.jpg'),(2678,2016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1980;s:6:\"height\";i:1079;s:4:\"file\";s:20:\"2023/01/DSC02517.jpg\";s:8:\"filesize\";s:6:\"189959\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC02517-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11556\";}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC02517-1024x558.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"78936\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC02517-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6141\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC02517-768x419.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50494\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"DSC02517-1536x837.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:837;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"147803\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"DSC02517-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"30636\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"DSC02517-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"14169\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"DSC02517-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"48529\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"DSC02517-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2016\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"DSC02517-200x109.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6034\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"DSC02517-400x218.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"18039\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"DSC02517-600x327.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"33932\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"DSC02517-800x436.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"53785\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"DSC02517-1200x654.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"100823\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"DSC02517-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"54696\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"DSC02517-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"27018\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"DSC02517-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"25411\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"DSC02517-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"14169\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"DSC02517-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6809\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2679,2016,'wp-smush-lossy','1'),(2680,2016,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1249035562438098878601522301323711872100830078125;s:5:\"bytes\";i:8223;s:11:\"size_before\";i:730996;s:10:\"size_after\";i:722773;s:4:\"time\";d:0.74000000000000010214051826551440171897411346435546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6141;s:10:\"size_after\";i:6141;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2016;s:10:\"size_after\";i:2016;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6034;s:10:\"size_after\";i:6034;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6809;s:10:\"size_after\";i:6809;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:89;s:11:\"size_before\";i:11556;s:10:\"size_after\";i:11467;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.66000000000000003108624468950438313186168670654296875;s:5:\"bytes\";i:94;s:11:\"size_before\";i:14169;s:10:\"size_after\";i:14075;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.90000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:162;s:11:\"size_before\";i:18039;s:10:\"size_after\";i:17877;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.57999999999999996003197111349436454474925994873046875;s:5:\"bytes\";i:82;s:11:\"size_before\";i:14169;s:10:\"size_after\";i:14087;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.88000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:271;s:11:\"size_before\";i:30636;s:10:\"size_after\";i:30365;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:331;s:11:\"size_before\";i:25411;s:10:\"size_after\";i:25080;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:465;s:11:\"size_before\";i:33932;s:10:\"size_after\";i:33467;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:277;s:11:\"size_before\";i:27018;s:10:\"size_after\";i:26741;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:618;s:11:\"size_before\";i:48529;s:10:\"size_after\";i:47911;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4299999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:770;s:11:\"size_before\";i:53785;s:10:\"size_after\";i:53015;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.020000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:558;s:11:\"size_before\";i:54696;s:10:\"size_after\";i:54138;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:981;s:11:\"size_before\";i:78936;s:10:\"size_after\";i:77955;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2199999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:617;s:11:\"size_before\";i:50494;s:10:\"size_after\";i:49877;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1162;s:11:\"size_before\";i:100823;s:10:\"size_after\";i:99661;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1746;s:11:\"size_before\";i:147803;s:10:\"size_after\";i:146057;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(2681,2017,'_wp_attached_file','2023/01/hitv-brats.jpg'),(2682,2017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:22:\"2023/01/hitv-brats.jpg\";s:8:\"filesize\";s:6:\"256700\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"hitv-brats-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19883\";}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"hitv-brats-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"170075\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"hitv-brats-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7765\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"hitv-brats-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"103210\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:22:\"hitv-brats-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"48612\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:22:\"hitv-brats-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19795\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:22:\"hitv-brats-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"77058\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:20:\"hitv-brats-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2285\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:22:\"hitv-brats-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9848\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:22:\"hitv-brats-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"31967\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:22:\"hitv-brats-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"66165\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:22:\"hitv-brats-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"110213\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:23:\"hitv-brats-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"225839\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:22:\"hitv-brats-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"91738\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:22:\"hitv-brats-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"40226\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:22:\"hitv-brats-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"37060\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:22:\"hitv-brats-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19026\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:22:\"hitv-brats-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8501\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2683,2017,'wp-smush-lossy','1'),(2684,2017,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.814923076640600374531686611589975655078887939453125;s:5:\"bytes\";i:30662;s:11:\"size_before\";i:1089266;s:10:\"size_after\";i:1058604;s:4:\"time\";d:1.430000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:221;s:11:\"size_before\";i:8501;s:10:\"size_after\";i:8280;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:176;s:11:\"size_before\";i:7765;s:10:\"size_after\";i:7589;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2285;s:10:\"size_after\";i:2285;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:285;s:11:\"size_before\";i:9848;s:10:\"size_after\";i:9563;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:560;s:11:\"size_before\";i:19026;s:10:\"size_after\";i:18466;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:3;s:5:\"bytes\";i:597;s:11:\"size_before\";i:19883;s:10:\"size_after\";i:19286;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:611;s:11:\"size_before\";i:19795;s:10:\"size_after\";i:19184;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1091;s:11:\"size_before\";i:37060;s:10:\"size_after\";i:35969;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:846;s:11:\"size_before\";i:31967;s:10:\"size_after\";i:31121;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1289;s:11:\"size_before\";i:40226;s:10:\"size_after\";i:38937;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1441;s:11:\"size_before\";i:48612;s:10:\"size_after\";i:47171;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2270;s:11:\"size_before\";i:77058;s:10:\"size_after\";i:74788;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2800;s:11:\"size_before\";i:91738;s:10:\"size_after\";i:88938;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2046;s:11:\"size_before\";i:66165;s:10:\"size_after\";i:64119;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:3163;s:11:\"size_before\";i:110213;s:10:\"size_after\";i:107050;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2826;s:11:\"size_before\";i:103210;s:10:\"size_after\";i:100384;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:4559;s:11:\"size_before\";i:170075;s:10:\"size_after\";i:165516;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:5881;s:11:\"size_before\";i:225839;s:10:\"size_after\";i:219958;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}}}'),(2685,2018,'_wp_attached_file','2023/01/230420288_10158672174568983_2007906273844971703_n.jpg'),(2686,2018,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:61:\"2023/01/230420288_10158672174568983_2007906273844971703_n.jpg\";s:8:\"filesize\";s:6:\"107818\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"23068\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9084\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"103876\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"49965\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"21990\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"79456\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"230420288_10158672174568983_2007906273844971703_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2914\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11722\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"36586\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"71600\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"110981\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"87774\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"43120\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"41160\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"22105\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"230420288_10158672174568983_2007906273844971703_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10073\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2687,2018,'wp-smush-lossy','1'),(2688,2018,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1377444264025999842715464183129370212554931640625;s:5:\"bytes\";i:37273;s:11:\"size_before\";i:725474;s:10:\"size_after\";i:688201;s:4:\"time\";d:0.75;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:432;s:11:\"size_before\";i:2914;s:10:\"size_after\";i:2482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:838;s:11:\"size_before\";i:9084;s:10:\"size_after\";i:8246;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.25;s:5:\"bytes\";i:967;s:11:\"size_before\";i:11722;s:10:\"size_after\";i:10755;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:855;s:11:\"size_before\";i:10073;s:10:\"size_after\";i:9218;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1532;s:11:\"size_before\";i:21990;s:10:\"size_after\";i:20458;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1558;s:11:\"size_before\";i:22105;s:10:\"size_after\";i:20547;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1577;s:11:\"size_before\";i:23068;s:10:\"size_after\";i:21491;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2214;s:11:\"size_before\";i:36586;s:10:\"size_after\";i:34372;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2488;s:11:\"size_before\";i:41160;s:10:\"size_after\";i:38672;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:2494;s:11:\"size_before\";i:43120;s:10:\"size_after\";i:40626;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2563;s:11:\"size_before\";i:49965;s:10:\"size_after\";i:47402;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3553;s:11:\"size_before\";i:71600;s:10:\"size_after\";i:68047;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3695;s:11:\"size_before\";i:79456;s:10:\"size_after\";i:75761;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3590;s:11:\"size_before\";i:87774;s:10:\"size_after\";i:84184;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4343;s:11:\"size_before\";i:103876;s:10:\"size_after\";i:99533;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:4574;s:11:\"size_before\";i:110981;s:10:\"size_after\";i:106407;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(2689,2019,'_wp_attached_file','2023/01/275178804_10159062672773983_1714578608944652308_n.jpg'),(2690,2019,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1640;s:4:\"file\";s:61:\"2023/01/275178804_10159062672773983_1714578608944652308_n.jpg\";s:8:\"filesize\";i:618558;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18049;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"275178804_10159062672773983_1714578608944652308_n-1024x820.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118123;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7391;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-768x615.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75848;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"275178804_10159062672773983_1714578608944652308_n-1536x1230.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226503;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35689;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16629;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55490;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"275178804_10159062672773983_1714578608944652308_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2581;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-200x160.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9636;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-400x320.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27564;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51654;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-800x641.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81369;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:62:\"275178804_10159062672773983_1714578608944652308_n-1200x961.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153327;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63127;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30641;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29307;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16704;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"275178804_10159062672773983_1714578608944652308_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8195;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2691,2019,'wp-smush-lossy','1'),(2692,2019,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.43455367488886764704147935844957828521728515625;s:5:\"bytes\";i:25023;s:11:\"size_before\";i:1027827;s:10:\"size_after\";i:1002804;s:4:\"time\";d:1.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:307;s:11:\"size_before\";i:2581;s:10:\"size_after\";i:2274;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:487;s:11:\"size_before\";i:7391;s:10:\"size_after\";i:6904;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:538;s:11:\"size_before\";i:9636;s:10:\"size_after\";i:9098;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:464;s:11:\"size_before\";i:8195;s:10:\"size_after\";i:7731;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:771;s:11:\"size_before\";i:16629;s:10:\"size_after\";i:15858;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:728;s:11:\"size_before\";i:16704;s:10:\"size_after\";i:15976;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:924;s:11:\"size_before\";i:27564;s:10:\"size_after\";i:26640;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1257;s:11:\"size_before\";i:35689;s:10:\"size_after\";i:34432;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1114;s:11:\"size_before\";i:30641;s:10:\"size_after\";i:29527;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1068;s:11:\"size_before\";i:29307;s:10:\"size_after\";i:28239;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:762;s:11:\"size_before\";i:18049;s:10:\"size_after\";i:17287;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.109999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1964;s:11:\"size_before\";i:63127;s:10:\"size_after\";i:61163;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:1628;s:11:\"size_before\";i:55490;s:10:\"size_after\";i:53862;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1809;s:11:\"size_before\";i:81369;s:10:\"size_after\";i:79560;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1317;s:11:\"size_before\";i:51654;s:10:\"size_after\";i:50337;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1577;s:11:\"size_before\";i:75848;s:10:\"size_after\";i:74271;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2135;s:11:\"size_before\";i:118123;s:10:\"size_after\";i:115988;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2556;s:11:\"size_before\";i:153327;s:10:\"size_after\";i:150771;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:3617;s:11:\"size_before\";i:226503;s:10:\"size_after\";i:222886;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(2693,2020,'_wp_attached_file','2023/01/301991414_10159385165463983_7662799712929491455_n.jpg'),(2694,2020,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:61:\"2023/01/301991414_10159385165463983_7662799712929491455_n.jpg\";s:8:\"filesize\";i:508047;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11779;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"301991414_10159385165463983_7662799712929491455_n-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82410;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5475;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51421;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"301991414_10159385165463983_7662799712929491455_n-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162560;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27908;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12632;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42944;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"301991414_10159385165463983_7662799712929491455_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2066;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6441;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18397;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34558;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55445;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:62:\"301991414_10159385165463983_7662799712929491455_n-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106958;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49476;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23957;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22188;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12357;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"301991414_10159385165463983_7662799712929491455_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6208;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2695,2020,'wp-smush-lossy','1'),(2696,2020,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.707092140700236626571495435200631618499755859375;s:5:\"bytes\";i:19902;s:11:\"size_before\";i:735180;s:10:\"size_after\";i:715278;s:4:\"time\";d:0.91999999999999981792342396147432737052440643310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:389;s:11:\"size_before\";i:5475;s:10:\"size_after\";i:5086;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:424;s:11:\"size_before\";i:6208;s:10:\"size_after\";i:5784;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:591;s:11:\"size_before\";i:12357;s:10:\"size_after\";i:11766;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:267;s:11:\"size_before\";i:2066;s:10:\"size_after\";i:1799;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:621;s:11:\"size_before\";i:12632;s:10:\"size_after\";i:12011;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.75;s:5:\"bytes\";i:435;s:11:\"size_before\";i:6441;s:10:\"size_after\";i:6006;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:594;s:11:\"size_before\";i:11779;s:10:\"size_after\";i:11185;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:834;s:11:\"size_before\";i:22188;s:10:\"size_after\";i:21354;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:829;s:11:\"size_before\";i:23957;s:10:\"size_after\";i:23128;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:759;s:11:\"size_before\";i:18397;s:10:\"size_after\";i:17638;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:886;s:11:\"size_before\";i:27908;s:10:\"size_after\";i:27022;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:996;s:11:\"size_before\";i:34558;s:10:\"size_after\";i:33562;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1451;s:11:\"size_before\";i:55445;s:10:\"size_after\";i:53994;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1394;s:11:\"size_before\";i:51421;s:10:\"size_after\";i:50027;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1146;s:11:\"size_before\";i:42944;s:10:\"size_after\";i:41798;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:1129;s:11:\"size_before\";i:49476;s:10:\"size_after\";i:48347;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.25;s:5:\"bytes\";i:1854;s:11:\"size_before\";i:82410;s:10:\"size_after\";i:80556;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:2136;s:11:\"size_before\";i:106958;s:10:\"size_after\";i:104822;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9499999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:3167;s:11:\"size_before\";i:162560;s:10:\"size_after\";i:159393;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(2697,2021,'_wp_attached_file','2023/01/307095892_10159387979733983_7386056637225188270_n.jpg'),(2698,2021,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:61:\"2023/01/307095892_10159387979733983_7386056637225188270_n.jpg\";s:8:\"filesize\";i:380353;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17811;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"307095892_10159387979733983_7386056637225188270_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154292;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7628;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"307095892_10159387979733983_7386056637225188270_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154292;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"307095892_10159387979733983_7386056637225188270_n-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:327404;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49470;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19231;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71183;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"307095892_10159387979733983_7386056637225188270_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2676;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-200x267.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14509;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47298;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99110;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:62:\"307095892_10159387979733983_7386056637225188270_n-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170717;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:63:\"307095892_10159387979733983_7386056637225188270_n-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:350200;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91368;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39903;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35324;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18826;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"307095892_10159387979733983_7386056637225188270_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2699,2021,'wp-smush-lossy','1'),(2700,2021,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.856618579649025324584954432793892920017242431640625;s:5:\"bytes\";i:58838;s:11:\"size_before\";i:1525637;s:10:\"size_after\";i:1466799;s:4:\"time\";d:1.3600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:456;s:11:\"size_before\";i:2676;s:10:\"size_after\";i:2220;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:720;s:11:\"size_before\";i:8687;s:10:\"size_after\";i:7967;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:918;s:11:\"size_before\";i:14509;s:10:\"size_after\";i:13591;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:682;s:11:\"size_before\";i:7628;s:10:\"size_after\";i:6946;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1211;s:11:\"size_before\";i:19231;s:10:\"size_after\";i:18020;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1201;s:11:\"size_before\";i:18826;s:10:\"size_after\";i:17625;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:958;s:11:\"size_before\";i:17811;s:10:\"size_after\";i:16853;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1784;s:11:\"size_before\";i:35324;s:10:\"size_after\";i:33540;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2025;s:11:\"size_before\";i:39903;s:10:\"size_after\";i:37878;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:2504;s:11:\"size_before\";i:49470;s:10:\"size_after\";i:46966;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:2985;s:11:\"size_before\";i:71183;s:10:\"size_after\";i:68198;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1981;s:11:\"size_before\";i:47298;s:10:\"size_after\";i:45317;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3839;s:11:\"size_before\";i:91368;s:10:\"size_after\";i:87529;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:5206;s:11:\"size_before\";i:154292;s:10:\"size_after\";i:149086;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:5857;s:11:\"size_before\";i:170717;s:10:\"size_after\";i:164860;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:3603;s:11:\"size_before\";i:99110;s:10:\"size_after\";i:95507;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:11369;s:11:\"size_before\";i:327404;s:10:\"size_after\";i:316035;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11539;s:11:\"size_before\";i:350200;s:10:\"size_after\";i:338661;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}}}'),(2701,2022,'_wp_attached_file','2023/01/312885301_10159482823458983_5084243080734781731_n.jpg'),(2702,2022,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:61:\"2023/01/312885301_10159482823458983_5084243080734781731_n.jpg\";s:8:\"filesize\";i:600000;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12124;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"312885301_10159482823458983_5084243080734781731_n-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89179;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6019;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54215;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"312885301_10159482823458983_5084243080734781731_n-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185211;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29038;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12991;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45139;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"312885301_10159482823458983_5084243080734781731_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2253;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6713;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19359;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36283;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58775;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:62:\"312885301_10159482823458983_5084243080734781731_n-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118417;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52014;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24999;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23320;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13065;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"312885301_10159482823458983_5084243080734781731_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2703,2022,'wp-smush-lossy','1'),(2704,2022,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.657950536253178341894454206340014934539794921875;s:5:\"bytes\";i:21147;s:11:\"size_before\";i:795613;s:10:\"size_after\";i:774466;s:4:\"time\";d:0.939999999999999946709294817992486059665679931640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:449;s:11:\"size_before\";i:6499;s:10:\"size_after\";i:6050;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:482;s:11:\"size_before\";i:6019;s:10:\"size_after\";i:5537;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:632;s:11:\"size_before\";i:13065;s:10:\"size_after\";i:12433;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:544;s:11:\"size_before\";i:12124;s:10:\"size_after\";i:11580;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:348;s:11:\"size_before\";i:2253;s:10:\"size_after\";i:1905;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:466;s:11:\"size_before\";i:6713;s:10:\"size_after\";i:6247;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:603;s:11:\"size_before\";i:12991;s:10:\"size_after\";i:12388;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:790;s:11:\"size_before\";i:23320;s:10:\"size_after\";i:22530;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:790;s:11:\"size_before\";i:24999;s:10:\"size_after\";i:24209;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:736;s:11:\"size_before\";i:19359;s:10:\"size_after\";i:18623;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:734;s:11:\"size_before\";i:29038;s:10:\"size_after\";i:28304;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:961;s:11:\"size_before\";i:36283;s:10:\"size_after\";i:35322;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1360;s:11:\"size_before\";i:58775;s:10:\"size_after\";i:57415;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1148;s:11:\"size_before\";i:54215;s:10:\"size_after\";i:53067;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:927;s:11:\"size_before\";i:52014;s:10:\"size_after\";i:51087;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1072;s:11:\"size_before\";i:45139;s:10:\"size_after\";i:44067;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.25;s:5:\"bytes\";i:2008;s:11:\"size_before\";i:89179;s:10:\"size_after\";i:87171;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2869;s:11:\"size_before\";i:118417;s:10:\"size_after\";i:115548;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:4228;s:11:\"size_before\";i:185211;s:10:\"size_after\";i:180983;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(2705,2023,'_wp_attached_file','2023/01/318727845_10159613300583983_5045946195972474127_n.jpg'),(2706,2023,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:61:\"2023/01/318727845_10159613300583983_5045946195972474127_n.jpg\";s:8:\"filesize\";i:598408;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15945;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"318727845_10159613300583983_5045946195972474127_n-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70007;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"318727845_10159613300583983_5045946195972474127_n-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214906;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39069;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17181;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59004;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"318727845_10159613300583983_5045946195972474127_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2599;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8604;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25045;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47161;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75300;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:62:\"318727845_10159613300583983_5045946195972474127_n-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143913;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69806;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33722;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30667;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16785;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"318727845_10159613300583983_5045946195972474127_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8133;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2707,2023,'wp-smush-lossy','1'),(2708,2023,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.654873474451485027003627692465670406818389892578125;s:5:\"bytes\";i:26450;s:11:\"size_before\";i:996281;s:10:\"size_after\";i:969831;s:4:\"time\";d:1.0900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:389;s:11:\"size_before\";i:2599;s:10:\"size_after\";i:2210;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:560;s:11:\"size_before\";i:8133;s:10:\"size_after\";i:7573;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:508;s:11:\"size_before\";i:7306;s:10:\"size_after\";i:6798;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:584;s:11:\"size_before\";i:8604;s:10:\"size_after\";i:8020;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:824;s:11:\"size_before\";i:16785;s:10:\"size_after\";i:15961;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:811;s:11:\"size_before\";i:15945;s:10:\"size_after\";i:15134;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:864;s:11:\"size_before\";i:17181;s:10:\"size_after\";i:16317;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:1190;s:11:\"size_before\";i:33722;s:10:\"size_after\";i:32532;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:965;s:11:\"size_before\";i:25045;s:10:\"size_after\";i:24080;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:1128;s:11:\"size_before\";i:30667;s:10:\"size_after\";i:29539;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1420;s:11:\"size_before\";i:47161;s:10:\"size_after\";i:45741;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1423;s:11:\"size_before\";i:39069;s:10:\"size_after\";i:37646;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1993;s:11:\"size_before\";i:69806;s:10:\"size_after\";i:67813;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1672;s:11:\"size_before\";i:70007;s:10:\"size_after\";i:68335;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1803;s:11:\"size_before\";i:75300;s:10:\"size_after\";i:73497;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1561;s:11:\"size_before\";i:59004;s:10:\"size_after\";i:57443;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2390;s:11:\"size_before\";i:111128;s:10:\"size_after\";i:108738;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2690;s:11:\"size_before\";i:143913;s:10:\"size_after\";i:141223;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3675;s:11:\"size_before\";i:214906;s:10:\"size_after\";i:211231;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(2709,2024,'_wp_attached_file','2023/01/318582538_10159613301998983_1987186392258756093_n.jpg'),(2710,2024,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:61:\"2023/01/318582538_10159613301998983_1987186392258756093_n.jpg\";s:8:\"filesize\";i:557283;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15377;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"318582538_10159613301998983_1987186392258756093_n-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7232;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68443;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"318582538_10159613301998983_1987186392258756093_n-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206145;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36084;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16589;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56807;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"318582538_10159613301998983_1987186392258756093_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2525;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8259;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24720;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46249;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73849;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:62:\"318582538_10159613301998983_1987186392258756093_n-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139367;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62721;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30549;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29459;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16434;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"318582538_10159613301998983_1987186392258756093_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8140;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2711,2024,'wp-smush-lossy','1'),(2712,2024,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.981174351908627340179691600496880710124969482421875;s:5:\"bytes\";i:18966;s:11:\"size_before\";i:957311;s:10:\"size_after\";i:938345;s:4:\"time\";d:1.20000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:505;s:11:\"size_before\";i:7232;s:10:\"size_after\";i:6727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:347;s:11:\"size_before\";i:2525;s:10:\"size_after\";i:2178;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:537;s:11:\"size_before\";i:8259;s:10:\"size_after\";i:7722;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:537;s:11:\"size_before\";i:8140;s:10:\"size_after\";i:7603;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:659;s:11:\"size_before\";i:15377;s:10:\"size_after\";i:14718;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:766;s:11:\"size_before\";i:16589;s:10:\"size_after\";i:15823;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:706;s:11:\"size_before\";i:16434;s:10:\"size_after\";i:15728;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:834;s:11:\"size_before\";i:24720;s:10:\"size_after\";i:23886;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:874;s:11:\"size_before\";i:30549;s:10:\"size_after\";i:29675;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:910;s:11:\"size_before\";i:36084;s:10:\"size_after\";i:35174;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:823;s:11:\"size_before\";i:29459;s:10:\"size_after\";i:28636;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1011;s:11:\"size_before\";i:46249;s:10:\"size_after\";i:45238;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:1072;s:11:\"size_before\";i:56807;s:10:\"size_after\";i:55735;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:1096;s:11:\"size_before\";i:68443;s:10:\"size_after\";i:67347;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1084;s:11:\"size_before\";i:62721;s:10:\"size_after\";i:61637;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:73849;s:10:\"size_after\";i:72575;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:1640;s:11:\"size_before\";i:108362;s:10:\"size_after\";i:106722;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:1781;s:11:\"size_before\";i:139367;s:10:\"size_after\";i:137586;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2199999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:2510;s:11:\"size_before\";i:206145;s:10:\"size_after\";i:203635;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(2713,2025,'_wp_attached_file','2023/01/318757345_10159613302743983_7713379438399103532_n.jpg'),(2714,2025,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:61:\"2023/01/318757345_10159613302743983_7713379438399103532_n.jpg\";s:8:\"filesize\";i:558631;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16607;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"318757345_10159613302743983_7713379438399103532_n-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112990;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7339;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72122;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"318757345_10159613302743983_7713379438399103532_n-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211801;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41656;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17834;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60565;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"318757345_10159613302743983_7713379438399103532_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2575;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8896;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25932;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48697;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77042;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:62:\"318757345_10159613302743983_7713379438399103532_n-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144774;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73477;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34639;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31925;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17380;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"318757345_10159613302743983_7713379438399103532_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8408;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2715,2025,'wp-smush-lossy','1'),(2716,2025,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.937045844958749984954238243517465889453887939453125;s:5:\"bytes\";i:29801;s:11:\"size_before\";i:1014659;s:10:\"size_after\";i:984858;s:4:\"time\";d:1.04999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:374;s:11:\"size_before\";i:2575;s:10:\"size_after\";i:2201;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:679;s:11:\"size_before\";i:8896;s:10:\"size_after\";i:8217;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:580;s:11:\"size_before\";i:7339;s:10:\"size_after\";i:6759;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5;s:5:\"bytes\";i:631;s:11:\"size_before\";i:8408;s:10:\"size_after\";i:7777;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1015;s:11:\"size_before\";i:17834;s:10:\"size_after\";i:16819;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:949;s:11:\"size_before\";i:17380;s:10:\"size_after\";i:16431;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:905;s:11:\"size_before\";i:16607;s:10:\"size_after\";i:15702;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1133;s:11:\"size_before\";i:25932;s:10:\"size_after\";i:24799;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1421;s:11:\"size_before\";i:31925;s:10:\"size_after\";i:30504;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1488;s:11:\"size_before\";i:34639;s:10:\"size_after\";i:33151;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1689;s:11:\"size_before\";i:48697;s:10:\"size_after\";i:47008;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1742;s:11:\"size_before\";i:41656;s:10:\"size_after\";i:39914;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2250;s:11:\"size_before\";i:73477;s:10:\"size_after\";i:71227;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1916;s:11:\"size_before\";i:60565;s:10:\"size_after\";i:58649;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:2075;s:11:\"size_before\";i:77042;s:10:\"size_after\";i:74967;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2127;s:11:\"size_before\";i:72122;s:10:\"size_after\";i:69995;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2606;s:11:\"size_before\";i:112990;s:10:\"size_after\";i:110384;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2873;s:11:\"size_before\";i:144774;s:10:\"size_after\";i:141901;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3348;s:11:\"size_before\";i:211801;s:10:\"size_after\";i:208453;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(2717,2026,'_wp_attached_file','2023/01/318557333_469677518613136_2605719804160828751_n.jpg'),(2718,2026,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1080;s:4:\"file\";s:59:\"2023/01/318557333_469677518613136_2605719804160828751_n.jpg\";s:8:\"filesize\";i:222377;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22961;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"318557333_469677518613136_2605719804160828751_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8984;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111578;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51220;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21825;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83633;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:57:\"318557333_469677518613136_2605719804160828751_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2766;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11445;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36765;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73733;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119943;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:60:\"318557333_469677518613136_2605719804160828751_n-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234915;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96104;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43824;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41275;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21892;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:59:\"318557333_469677518613136_2605719804160828751_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9868;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2719,2026,'wp-smush-lossy','1'),(2720,2026,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.39601758222279759280581856728531420230865478515625;s:5:\"bytes\";i:63320;s:11:\"size_before\";i:1173458;s:10:\"size_after\";i:1110138;s:4:\"time\";d:1.060000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:803;s:11:\"size_before\";i:8984;s:10:\"size_after\";i:8181;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:342;s:11:\"size_before\";i:2766;s:10:\"size_after\";i:2424;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:991;s:11:\"size_before\";i:11445;s:10:\"size_after\";i:10454;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:823;s:11:\"size_before\";i:9868;s:10:\"size_after\";i:9045;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1532;s:11:\"size_before\";i:21825;s:10:\"size_after\";i:20293;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1579;s:11:\"size_before\";i:21892;s:10:\"size_after\";i:20313;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1587;s:11:\"size_before\";i:22961;s:10:\"size_after\";i:21374;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2287;s:11:\"size_before\";i:36765;s:10:\"size_after\";i:34478;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3093;s:11:\"size_before\";i:51220;s:10:\"size_after\";i:48127;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4128;s:11:\"size_before\";i:73733;s:10:\"size_after\";i:69605;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2797;s:11:\"size_before\";i:43824;s:10:\"size_after\";i:41027;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4582;s:11:\"size_before\";i:83633;s:10:\"size_after\";i:79051;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2634;s:11:\"size_before\";i:41275;s:10:\"size_after\";i:38641;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5204;s:11:\"size_before\";i:96104;s:10:\"size_after\";i:90900;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5773;s:11:\"size_before\";i:111578;s:10:\"size_after\";i:105805;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6208;s:11:\"size_before\";i:119943;s:10:\"size_after\";i:113735;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:8556;s:11:\"size_before\";i:180727;s:10:\"size_after\";i:172171;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10401;s:11:\"size_before\";i:234915;s:10:\"size_after\";i:224514;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(2721,2027,'_wp_attached_file','2023/01/317698060_469521041962117_5593228658645240584_n.jpg'),(2722,2027,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2023/01/317698060_469521041962117_5593228658645240584_n.jpg\";s:8:\"filesize\";i:368769;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18028;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"317698060_469521041962117_5593228658645240584_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146388;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6730;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90627;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"317698060_469521041962117_5593228658645240584_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291201;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44839;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17613;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67824;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:57:\"317698060_469521041962117_5593228658645240584_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2292;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8803;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29059;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59477;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97406;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:60:\"317698060_469521041962117_5593228658645240584_n-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196635;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85268;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36475;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33077;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17011;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:59:\"317698060_469521041962117_5593228658645240584_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2723,2027,'wp-smush-lossy','1'),(2724,2027,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.01954097181155933782292777323164045810699462890625;s:5:\"bytes\";i:50503;s:11:\"size_before\";i:1256437;s:10:\"size_after\";i:1205934;s:4:\"time\";d:1.020000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:556;s:11:\"size_before\";i:7684;s:10:\"size_after\";i:7128;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:402;s:11:\"size_before\";i:2292;s:10:\"size_after\";i:1890;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:530;s:11:\"size_before\";i:6730;s:10:\"size_after\";i:6200;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:636;s:11:\"size_before\";i:8803;s:10:\"size_after\";i:8167;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:909;s:11:\"size_before\";i:18028;s:10:\"size_after\";i:17119;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:949;s:11:\"size_before\";i:17613;s:10:\"size_after\";i:16664;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:831;s:11:\"size_before\";i:17011;s:10:\"size_after\";i:16180;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1516;s:11:\"size_before\";i:33077;s:10:\"size_after\";i:31561;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1314;s:11:\"size_before\";i:29059;s:10:\"size_after\";i:27745;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1819;s:11:\"size_before\";i:36475;s:10:\"size_after\";i:34656;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2232;s:11:\"size_before\";i:44839;s:10:\"size_after\";i:42607;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2830;s:11:\"size_before\";i:67824;s:10:\"size_after\";i:64994;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3832;s:11:\"size_before\";i:85268;s:10:\"size_after\";i:81436;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2539;s:11:\"size_before\";i:59477;s:10:\"size_after\";i:56938;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3581;s:11:\"size_before\";i:90627;s:10:\"size_after\";i:87046;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3883;s:11:\"size_before\";i:97406;s:10:\"size_after\";i:93523;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:5081;s:11:\"size_before\";i:146388;s:10:\"size_after\";i:141307;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6968;s:11:\"size_before\";i:196635;s:10:\"size_after\";i:189667;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:10095;s:11:\"size_before\";i:291201;s:10:\"size_after\";i:281106;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(2725,2028,'_wp_attached_file','2023/01/317994691_469520881962133_8379635794478368818_n.jpg'),(2726,2028,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:59:\"2023/01/317994691_469520881962133_8379635794478368818_n.jpg\";s:8:\"filesize\";i:373729;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14888;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"317994691_469520881962133_8379635794478368818_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136927;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6712;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"317994691_469520881962133_8379635794478368818_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136927;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"317994691_469520881962133_8379635794478368818_n-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283900;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40059;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17304;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68249;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:57:\"317994691_469520881962133_8379635794478368818_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2421;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-200x267.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12057;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41198;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88626;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:60:\"317994691_469520881962133_8379635794478368818_n-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150743;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:61:\"317994691_469520881962133_8379635794478368818_n-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303160;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76211;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34402;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32733;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17093;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:59:\"317994691_469520881962133_8379635794478368818_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7769;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2727,2028,'wp-smush-lossy','1'),(2728,2028,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.909844640346749056192265925346873700618743896484375;s:5:\"bytes\";i:52175;s:11:\"size_before\";i:1334452;s:10:\"size_after\";i:1282277;s:4:\"time\";d:1.319999999999999840127884453977458178997039794921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:423;s:11:\"size_before\";i:2421;s:10:\"size_after\";i:1998;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:623;s:11:\"size_before\";i:6712;s:10:\"size_after\";i:6089;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:674;s:11:\"size_before\";i:7769;s:10:\"size_after\";i:7095;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:992;s:11:\"size_before\";i:14888;s:10:\"size_after\";i:13896;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:860;s:11:\"size_before\";i:12057;s:10:\"size_after\";i:11197;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.25;s:5:\"bytes\";i:1254;s:11:\"size_before\";i:17304;s:10:\"size_after\";i:16050;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1936;s:11:\"size_before\";i:34402;s:10:\"size_after\";i:32466;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1173;s:11:\"size_before\";i:17093;s:10:\"size_after\";i:15920;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1902;s:11:\"size_before\";i:32733;s:10:\"size_after\";i:30831;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2096;s:11:\"size_before\";i:40059;s:10:\"size_after\";i:37963;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2144;s:11:\"size_before\";i:41198;s:10:\"size_after\";i:39054;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3128;s:11:\"size_before\";i:68249;s:10:\"size_after\";i:65121;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:3288;s:11:\"size_before\";i:76211;s:10:\"size_after\";i:72923;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:3810;s:11:\"size_before\";i:88626;s:10:\"size_after\";i:84816;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:4943;s:11:\"size_before\";i:136927;s:10:\"size_after\";i:131984;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:5572;s:11:\"size_before\";i:150743;s:10:\"size_after\";i:145171;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:8847;s:11:\"size_before\";i:303160;s:10:\"size_after\";i:294313;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:3;s:5:\"bytes\";i:8510;s:11:\"size_before\";i:283900;s:10:\"size_after\";i:275390;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}}}'),(2729,2029,'_wp_attached_file','2023/01/318216901_469510238629864_153245366860277909_n.jpg'),(2730,2029,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:58:\"2023/01/318216901_469510238629864_153245366860277909_n.jpg\";s:8:\"filesize\";i:423431;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18189;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"318216901_469510238629864_153245366860277909_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7147;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96524;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"318216901_469510238629864_153245366860277909_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323491;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49172;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18266;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74833;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:56:\"318216901_469510238629864_153245366860277909_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2481;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9068;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29691;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62302;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104561;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:59:\"318216901_469510238629864_153245366860277909_n-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215196;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94560;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40067;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35315;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17664;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:58:\"318216901_469510238629864_153245366860277909_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7876;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2731,2029,'wp-smush-lossy','1'),(2732,2029,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.02772394231311370305093078059144318103790283203125;s:5:\"bytes\";i:68668;s:11:\"size_before\";i:1365787;s:10:\"size_after\";i:1297119;s:4:\"time\";d:1.020000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:427;s:11:\"size_before\";i:2481;s:10:\"size_after\";i:2054;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:698;s:11:\"size_before\";i:7147;s:10:\"size_after\";i:6449;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:804;s:11:\"size_before\";i:9068;s:10:\"size_after\";i:8264;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:700;s:11:\"size_before\";i:7876;s:10:\"size_after\";i:7176;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1256;s:11:\"size_before\";i:18189;s:10:\"size_after\";i:16933;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1308;s:11:\"size_before\";i:18266;s:10:\"size_after\";i:16958;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1229;s:11:\"size_before\";i:17664;s:10:\"size_after\";i:16435;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1859;s:11:\"size_before\";i:29691;s:10:\"size_after\";i:27832;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2407;s:11:\"size_before\";i:40067;s:10:\"size_after\";i:37660;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2172;s:11:\"size_before\";i:35315;s:10:\"size_after\";i:33143;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2861;s:11:\"size_before\";i:49172;s:10:\"size_after\";i:46311;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3435;s:11:\"size_before\";i:62302;s:10:\"size_after\";i:58867;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:4023;s:11:\"size_before\";i:74833;s:10:\"size_after\";i:70810;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4866;s:11:\"size_before\";i:96524;s:10:\"size_after\";i:91658;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:5356;s:11:\"size_before\";i:104561;s:10:\"size_after\";i:99205;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4899;s:11:\"size_before\";i:94560;s:10:\"size_after\";i:89661;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7456;s:11:\"size_before\";i:159384;s:10:\"size_after\";i:151928;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9718;s:11:\"size_before\";i:215196;s:10:\"size_after\";i:205478;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:13194;s:11:\"size_before\";i:323491;s:10:\"size_after\";i:310297;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(2733,2030,'_wp_attached_file','2023/01/318181818_469508225296732_8609996761227991316_n.jpg'),(2734,2030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:59:\"2023/01/318181818_469508225296732_8609996761227991316_n.jpg\";s:8:\"filesize\";i:600669;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22081;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"318181818_469508225296732_8609996761227991316_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216793;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8476;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"318181818_469508225296732_8609996761227991316_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216793;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"318181818_469508225296732_8609996761227991316_n-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:443051;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52347;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21351;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88030;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:57:\"318181818_469508225296732_8609996761227991316_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2663;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-200x267.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17577;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64768;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139999;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:60:\"318181818_469508225296732_8609996761227991316_n-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239154;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:61:\"318181818_469508225296732_8609996761227991316_n-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:472709;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99503;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43956;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41821;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21311;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:59:\"318181818_469508225296732_8609996761227991316_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9322;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2735,2030,'wp-smush-lossy','1'),(2736,2030,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.04880014683936284569654162623919546604156494140625;s:5:\"bytes\";i:101224;s:11:\"size_before\";i:2004912;s:10:\"size_after\";i:1903688;s:4:\"time\";d:1.609999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:453;s:11:\"size_before\";i:2663;s:10:\"size_after\";i:2210;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:816;s:11:\"size_before\";i:8476;s:10:\"size_after\";i:7660;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:799;s:11:\"size_before\";i:9322;s:10:\"size_after\";i:8523;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1316;s:11:\"size_before\";i:17577;s:10:\"size_after\";i:16261;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1517;s:11:\"size_before\";i:22081;s:10:\"size_after\";i:20564;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1480;s:11:\"size_before\";i:21351;s:10:\"size_after\";i:19871;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1500;s:11:\"size_before\";i:21311;s:10:\"size_after\";i:19811;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2538;s:11:\"size_before\";i:41821;s:10:\"size_after\";i:39283;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:3814;s:11:\"size_before\";i:64768;s:10:\"size_after\";i:60954;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2654;s:11:\"size_before\";i:43956;s:10:\"size_after\";i:41302;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:2908;s:11:\"size_before\";i:52347;s:10:\"size_after\";i:49439;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4695;s:11:\"size_before\";i:88030;s:10:\"size_after\";i:83335;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:4912;s:11:\"size_before\";i:99503;s:10:\"size_after\";i:94591;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:7783;s:11:\"size_before\";i:139999;s:10:\"size_after\";i:132216;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:11118;s:11:\"size_before\";i:216793;s:10:\"size_after\";i:205675;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:12517;s:11:\"size_before\";i:239154;s:10:\"size_after\";i:226637;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:20797;s:11:\"size_before\";i:472709;s:10:\"size_after\";i:451912;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19607;s:11:\"size_before\";i:443051;s:10:\"size_after\";i:423444;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}}}'),(2737,2031,'_wp_attached_file','2023/01/317902162_469677445279810_3412274826300968702_n.jpg'),(2738,2031,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2023/01/317902162_469677445279810_3412274826300968702_n.jpg\";s:8:\"filesize\";i:440940;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22366;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"317902162_469677445279810_3412274826300968702_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190008;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8700;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115164;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"317902162_469677445279810_3412274826300968702_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:388648;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57511;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22472;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89091;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:57:\"317902162_469677445279810_3412274826300968702_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2725;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11067;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36494;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75153;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124283;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:60:\"317902162_469677445279810_3412274826300968702_n-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256554;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111456;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47441;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42822;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21590;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:59:\"317902162_469677445279810_3412274826300968702_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2739,2031,'wp-smush-lossy','1'),(2740,2031,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.26271083182864884975060704164206981658935546875;s:5:\"bytes\";i:69620;s:11:\"size_before\";i:1633233;s:10:\"size_after\";i:1563613;s:4:\"time\";d:1.939999999999999946709294817992486059665679931640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:318;s:11:\"size_before\";i:2725;s:10:\"size_after\";i:2407;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:709;s:11:\"size_before\";i:11067;s:10:\"size_after\";i:10358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:612;s:11:\"size_before\";i:9688;s:10:\"size_after\";i:9076;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:608;s:11:\"size_before\";i:8700;s:10:\"size_after\";i:8092;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1233;s:11:\"size_before\";i:21590;s:10:\"size_after\";i:20357;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1185;s:11:\"size_before\";i:22366;s:10:\"size_after\";i:21181;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1275;s:11:\"size_before\";i:22472;s:10:\"size_after\";i:21197;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1795;s:11:\"size_before\";i:36494;s:10:\"size_after\";i:34699;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2181;s:11:\"size_before\";i:42822;s:10:\"size_after\";i:40641;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2896;s:11:\"size_before\";i:57511;s:10:\"size_after\";i:54615;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3434;s:11:\"size_before\";i:75153;s:10:\"size_after\";i:71719;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2411;s:11:\"size_before\";i:47441;s:10:\"size_after\";i:45030;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3996;s:11:\"size_before\";i:89091;s:10:\"size_after\";i:85095;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:5160;s:11:\"size_before\";i:111456;s:10:\"size_after\";i:106296;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:5127;s:11:\"size_before\";i:124283;s:10:\"size_after\";i:119156;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:4891;s:11:\"size_before\";i:115164;s:10:\"size_after\";i:110273;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7623;s:11:\"size_before\";i:190008;s:10:\"size_after\";i:182385;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:10140;s:11:\"size_before\";i:256554;s:10:\"size_after\";i:246414;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:14026;s:11:\"size_before\";i:388648;s:10:\"size_after\";i:374622;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}}}'),(2741,2032,'_wp_attached_file','2023/01/318441233_469673885280166_5091768336215275208_n.jpg'),(2742,2032,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:598;s:4:\"file\";s:59:\"2023/01/318441233_469673885280166_5091768336215275208_n.jpg\";s:8:\"filesize\";i:64611;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66621;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37405;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17077;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59085;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:57:\"318441233_469673885280166_5091768336215275208_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2404;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8047;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-400x249.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24294;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-600x374.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46217;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-800x498.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71401;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64475;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32622;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31102;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17082;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:59:\"318441233_469673885280166_5091768336215275208_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7929;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2743,2032,'wp-smush-lossy','1'),(2744,2032,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.79269932908076956579179750406183302402496337890625;s:5:\"bytes\";i:19288;s:11:\"size_before\";i:508556;s:10:\"size_after\";i:489268;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:478;s:11:\"size_before\";i:8047;s:10:\"size_after\";i:7569;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:434;s:11:\"size_before\";i:7929;s:10:\"size_after\";i:7495;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:483;s:11:\"size_before\";i:7399;s:10:\"size_after\";i:6916;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:263;s:11:\"size_before\";i:2404;s:10:\"size_after\";i:2141;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:732;s:11:\"size_before\";i:17077;s:10:\"size_after\";i:16345;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:772;s:11:\"size_before\";i:17082;s:10:\"size_after\";i:16310;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:691;s:11:\"size_before\";i:15396;s:10:\"size_after\";i:14705;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:960;s:11:\"size_before\";i:24294;s:10:\"size_after\";i:23334;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1183;s:11:\"size_before\";i:31102;s:10:\"size_after\";i:29919;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1452;s:11:\"size_before\";i:37405;s:10:\"size_after\";i:35953;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1671;s:11:\"size_before\";i:46217;s:10:\"size_after\";i:44546;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2473;s:11:\"size_before\";i:71401;s:10:\"size_after\";i:68928;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2220;s:11:\"size_before\";i:66621;s:10:\"size_after\";i:64401;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:2349;s:11:\"size_before\";i:64475;s:10:\"size_after\";i:62126;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1958;s:11:\"size_before\";i:59085;s:10:\"size_after\";i:57127;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1169;s:11:\"size_before\";i:32622;s:10:\"size_after\";i:31453;s:4:\"time\";d:0.25;}}}'),(2745,2033,'_wp_attached_file','2023/01/317909255_471073988473489_6496672276787256581_n.jpg'),(2746,2033,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1425;s:6:\"height\";i:1734;s:4:\"file\";s:59:\"2023/01/317909255_471073988473489_6496672276787256581_n.jpg\";s:8:\"filesize\";i:302066;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18915;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"317909255_471073988473489_6496672276787256581_n-842x1024.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163453;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7407;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-768x935.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:935;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139767;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"317909255_471073988473489_6496672276787256581_n-1262x1536.jpg\";s:5:\"width\";i:1262;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:311607;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53627;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20932;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84615;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:57:\"317909255_471073988473489_6496672276787256581_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2433;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-200x243.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13143;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-400x487.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43483;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-600x730.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90950;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-800x973.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:973;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149786;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:61:\"317909255_471073988473489_6496672276787256581_n-1200x1460.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1460;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288666;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99814;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44866;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40221;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20132;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:59:\"317909255_471073988473489_6496672276787256581_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8879;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2747,2033,'wp-smush-lossy','1'),(2748,2033,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7056335075397957012910410412587225437164306640625;s:5:\"bytes\";i:75417;s:11:\"size_before\";i:1602696;s:10:\"size_after\";i:1527279;s:4:\"time\";d:2.04000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:563;s:11:\"size_before\";i:7407;s:10:\"size_after\";i:6844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:662;s:11:\"size_before\";i:8879;s:10:\"size_after\";i:8217;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:302;s:11:\"size_before\";i:2433;s:10:\"size_after\";i:2131;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1107;s:11:\"size_before\";i:18915;s:10:\"size_after\";i:17808;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:1308;s:11:\"size_before\";i:20132;s:10:\"size_after\";i:18824;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1394;s:11:\"size_before\";i:20932;s:10:\"size_after\";i:19538;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:846;s:11:\"size_before\";i:13143;s:10:\"size_after\";i:12297;s:4:\"time\";d:0.25;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2277;s:11:\"size_before\";i:43483;s:10:\"size_after\";i:41206;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2846;s:11:\"size_before\";i:44866;s:10:\"size_after\";i:42020;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2492;s:11:\"size_before\";i:40221;s:10:\"size_after\";i:37729;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:3183;s:11:\"size_before\";i:53627;s:10:\"size_after\";i:50444;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4684;s:11:\"size_before\";i:84615;s:10:\"size_after\";i:79931;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:5192;s:11:\"size_before\";i:99814;s:10:\"size_after\";i:94622;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:6471;s:11:\"size_before\";i:139767;s:10:\"size_after\";i:133296;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4586;s:11:\"size_before\";i:90950;s:10:\"size_after\";i:86364;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:6901;s:11:\"size_before\";i:149786;s:10:\"size_after\";i:142885;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7496;s:11:\"size_before\";i:163453;s:10:\"size_after\";i:155957;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:11090;s:11:\"size_before\";i:288666;s:10:\"size_after\";i:277576;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:12017;s:11:\"size_before\";i:311607;s:10:\"size_after\";i:299590;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}}}'),(2749,2034,'_wp_attached_file','2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg'),(2750,2034,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1980;s:6:\"height\";i:1485;s:4:\"file\";s:51:\"2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg\";s:8:\"filesize\";i:485121;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20188;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171453;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7889;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102973;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:345883;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-669x272.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50828;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-320x202.jpeg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19973;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-700x441.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78366;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-66x66.jpeg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2202;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-200x150.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9905;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32869;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66926;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110925;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:52:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-1200x900.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227055;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-940x400.jpeg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96703;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-540x272.jpeg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42383;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-460x295.jpeg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37923;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-300x214.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19447;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:51:\"C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1-177x142.jpeg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8841;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2751,2034,'wp-smush-lossy','1'),(2752,2034,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.722503531277620236750180993112735450267791748046875;s:5:\"bytes\";i:54078;s:11:\"size_before\";i:1452732;s:10:\"size_after\";i:1398654;s:4:\"time\";d:0.89000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:185;s:11:\"size_before\";i:7889;s:10:\"size_after\";i:7704;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.970000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:294;s:11:\"size_before\";i:9905;s:10:\"size_after\";i:9611;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2202;s:10:\"size_after\";i:2202;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:243;s:11:\"size_before\";i:8841;s:10:\"size_after\";i:8598;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:869;s:11:\"size_before\";i:19973;s:10:\"size_after\";i:19104;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:802;s:11:\"size_before\";i:19447;s:10:\"size_after\";i:18645;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1421;s:11:\"size_before\";i:32869;s:10:\"size_after\";i:31448;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:834;s:11:\"size_before\";i:20188;s:10:\"size_after\";i:19354;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1674;s:11:\"size_before\";i:37923;s:10:\"size_after\";i:36249;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2362;s:11:\"size_before\";i:50828;s:10:\"size_after\";i:48466;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1964;s:11:\"size_before\";i:42383;s:10:\"size_after\";i:40419;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3201;s:11:\"size_before\";i:78366;s:10:\"size_after\";i:75165;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2766;s:11:\"size_before\";i:66926;s:10:\"size_after\";i:64160;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:4366;s:11:\"size_before\";i:110925;s:10:\"size_after\";i:106559;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:4003;s:11:\"size_before\";i:96703;s:10:\"size_after\";i:92700;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:3973;s:11:\"size_before\";i:102973;s:10:\"size_after\";i:99000;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6292;s:11:\"size_before\";i:171453;s:10:\"size_after\";i:165161;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:8016;s:11:\"size_before\";i:227055;s:10:\"size_after\";i:219039;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:10813;s:11:\"size_before\";i:345883;s:10:\"size_after\";i:335070;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(2753,2035,'_wp_attached_file','2023/01/120422_HolidaysInTheVillage-8-scaled.jpg'),(2754,2035,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:48:\"2023/01/120422_HolidaysInTheVillage-8-scaled.jpg\";s:8:\"filesize\";i:659684;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61807;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180640;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-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:51887;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128246;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"120422_HolidaysInTheVillage-8-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308633;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"120422_HolidaysInTheVillage-8-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:469542;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91787;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63269;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114562;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"120422_HolidaysInTheVillage-8-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45998;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52928;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72879;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99682;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134522;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-8-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220053;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131534;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84394;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79210;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62629;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:41:\"120422_HolidaysInTheVillage-8-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1670180789\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:33:\"120422_HolidaysInTheVillage-8.jpg\";}'),(2755,2035,'wp-smush-error','size_limit'),(2756,2036,'_wp_attached_file','2023/01/120422_HolidaysInTheVillage-18-scaled.jpg'),(2757,2036,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:49:\"2023/01/120422_HolidaysInTheVillage-18-scaled.jpg\";s:8:\"filesize\";i:882812;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79204;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"120422_HolidaysInTheVillage-18-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-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:66507;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167087;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"120422_HolidaysInTheVillage-18-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:409078;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"120422_HolidaysInTheVillage-18-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:625164;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125402;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81158;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150117;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"120422_HolidaysInTheVillage-18-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59553;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67936;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93290;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129757;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176076;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:43:\"120422_HolidaysInTheVillage-18-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291229;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179404;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111032;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102605;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80549;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:42:\"120422_HolidaysInTheVillage-18-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67625;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1670181140\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:34:\"120422_HolidaysInTheVillage-18.jpg\";}'),(2758,2036,'wp-smush-error','size_limit'),(2759,2045,'_wp_attached_file','2023/01/HolidayVillage-12-12-21-506-scaled.jpg'),(2760,2045,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2023/01/HolidayVillage-12-12-21-506-scaled.jpg\";s:8:\"filesize\";i:631694;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64203;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"HolidayVillage-12-12-21-506-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182600;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132137;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"HolidayVillage-12-12-21-506-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304043;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"HolidayVillage-12-12-21-506-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:453049;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93098;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65695;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117845;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"HolidayVillage-12-12-21-506-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46491;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54491;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75907;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103845;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138176;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:40:\"HolidayVillage-12-12-21-506-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220204;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130792;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85592;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82683;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65424;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:39:\"HolidayVillage-12-12-21-506-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54014;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON Z 7_2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1639354460\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"HolidayVillage-12-12-21-506.jpg\";}'),(2761,2045,'wp-smush-error','size_limit'),(2762,2047,'_wp_attached_file','2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png'),(2763,2047,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1646;s:6:\"height\";i:1344;s:4:\"file\";s:47:\"2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png\";s:8:\"filesize\";s:7:\"3375888\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-300x245.png\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"126585\";}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Screenshot-2023-01-08-at-8.41.23-PM-1024x836.png\";s:5:\"width\";i:1024;s:6:\"height\";i:836;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:7:\"1026535\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"44252\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-768x627.png\";s:5:\"width\";i:768;s:6:\"height\";i:627;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"640759\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-01-08-at-8.41.23-PM-1536x1254.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1254;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:7:\"1945723\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"269959\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"112725\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"439361\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-01-08-at-8.41.23-PM-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"10289\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-200x163.png\";s:5:\"width\";i:200;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"61160\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-400x327.png\";s:5:\"width\";i:400;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"210481\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-600x490.png\";s:5:\"width\";i:600;s:6:\"height\";i:490;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"423498\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-800x653.png\";s:5:\"width\";i:800;s:6:\"height\";i:653;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"685339\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:48:\"Screenshot-2023-01-08-at-8.41.23-PM-1200x980.png\";s:5:\"width\";i:1200;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:7:\"1325244\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"500510\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"231225\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"217167\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"112019\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.23-PM-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"48465\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2764,2047,'wp-smush-lossy','1'),(2765,2047,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:68.6710323063026208956216578371822834014892578125;s:5:\"bytes\";i:5789858;s:11:\"size_before\";i:8431296;s:10:\"size_after\";i:2641438;s:4:\"time\";d:14.75;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.50999999999999801048033987171947956085205078125;s:5:\"bytes\";i:5917;s:11:\"size_before\";i:10289;s:10:\"size_after\";i:4372;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:29524;s:11:\"size_before\";i:44252;s:10:\"size_after\";i:14728;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:41703;s:11:\"size_before\";i:61160;s:10:\"size_after\";i:19457;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.9500000000000028421709430404007434844970703125;s:5:\"bytes\";i:32448;s:11:\"size_before\";i:48465;s:10:\"size_after\";i:16017;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:77958;s:11:\"size_before\";i:112725;s:10:\"size_after\";i:34767;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:77794;s:11:\"size_before\";i:112019;s:10:\"size_after\";i:34225;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:160948;s:11:\"size_before\";i:231225;s:10:\"size_after\";i:70277;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.93999999999999772626324556767940521240234375;s:5:\"bytes\";i:88532;s:11:\"size_before\";i:126585;s:10:\"size_after\";i:38053;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:148444;s:11:\"size_before\";i:210481;s:10:\"size_after\";i:62037;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:152660;s:11:\"size_before\";i:217167;s:10:\"size_after\";i:64507;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:188223;s:11:\"size_before\";i:269959;s:10:\"size_after\";i:81736;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.25;s:5:\"bytes\";i:297493;s:11:\"size_before\";i:423498;s:10:\"size_after\";i:126005;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:306826;s:11:\"size_before\";i:439361;s:10:\"size_after\";i:132535;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.2900000000000062527760746888816356658935546875;s:5:\"bytes\";i:346815;s:11:\"size_before\";i:500510;s:10:\"size_after\";i:153695;s:4:\"time\";d:0.79000000000000003552713678800500929355621337890625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:446640;s:11:\"size_before\";i:640759;s:10:\"size_after\";i:194119;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.150000000000005684341886080801486968994140625;s:5:\"bytes\";i:480779;s:11:\"size_before\";i:685339;s:10:\"size_after\";i:204560;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.7300000000000039790393202565610408782958984375;s:5:\"bytes\";i:705500;s:11:\"size_before\";i:1026535;s:10:\"size_after\";i:321035;s:4:\"time\";d:1.6799999999999999378275106209912337362766265869140625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.3799999999999954525264911353588104248046875;s:5:\"bytes\";i:906184;s:11:\"size_before\";i:1325244;s:10:\"size_after\";i:419060;s:4:\"time\";d:2.399999999999999911182158029987476766109466552734375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:1295470;s:11:\"size_before\";i:1945723;s:10:\"size_after\";i:650253;s:4:\"time\";d:3.87000000000000010658141036401502788066864013671875;}}}'),(2766,2048,'_wp_attached_file','2023/01/Screenshot-2023-01-08-at-8.41.11-PM.png'),(2767,2048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1718;s:6:\"height\";i:1718;s:4:\"file\";s:47:\"2023/01/Screenshot-2023-01-08-at-8.41.11-PM.png\";s:8:\"filesize\";i:5412929;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200231;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-01-08-at-8.41.11-PM-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1748613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56120;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1069009;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-01-08-at-8.41.11-PM-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3424774;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:378373;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150920;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:620045;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-01-08-at-8.41.11-PM-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12148;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95221;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:337289;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694876;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-800x800.png\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1146783;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-01-08-at-8.41.11-PM-1200x1200.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2283002;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:724750;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:317919;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:297376;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149088;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.11-PM-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62258;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2768,2048,'wp-smush-error','size_limit'),(2769,2049,'_wp_attached_file','2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png'),(2770,2049,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1804;s:6:\"height\";i:1360;s:4:\"file\";s:47:\"2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png\";s:8:\"filesize\";s:7:\"4793299\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"152809\";}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Screenshot-2023-01-08-at-8.41.00-PM-1024x772.png\";s:5:\"width\";i:1024;s:6:\"height\";i:772;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:7:\"1520733\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"52547\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-768x579.png\";s:5:\"width\";i:768;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"897527\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Screenshot-2023-01-08-at-8.41.00-PM-1536x1158.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1158;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:7:\"3101545\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"408436\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"150345\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"652492\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-01-08-at-8.41.00-PM-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"11304\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-200x151.png\";s:5:\"width\";i:200;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"70900\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-400x302.png\";s:5:\"width\";i:400;s:6:\"height\";i:302;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"263928\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-600x452.png\";s:5:\"width\";i:600;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"564884\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-800x603.png\";s:5:\"width\";i:800;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"967734\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:48:\"Screenshot-2023-01-08-at-8.41.00-PM-1200x905.png\";s:5:\"width\";i:1200;s:6:\"height\";i:905;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:7:\"2021155\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"796815\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"334043\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"301748\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"146873\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-01-08-at-8.41.00-PM-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"59429\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2771,2049,'wp-smush-lossy','1'),(2772,2049,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:69.1029444146476663490830105729401111602783203125;s:5:\"bytes\";i:8620763;s:11:\"size_before\";i:12475247;s:10:\"size_after\";i:3854484;s:4:\"time\";d:15.2000000000000028421709430404007434844970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:62.68999999999999772626324556767940521240234375;s:5:\"bytes\";i:7086;s:11:\"size_before\";i:11304;s:10:\"size_after\";i:4218;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.2699999999999960209606797434389591217041015625;s:5:\"bytes\";i:34824;s:11:\"size_before\";i:52547;s:10:\"size_after\";i:17723;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:47820;s:11:\"size_before\";i:70900;s:10:\"size_after\";i:23080;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:39755;s:11:\"size_before\";i:59429;s:10:\"size_after\";i:19674;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:103692;s:11:\"size_before\";i:150345;s:10:\"size_after\";i:46653;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.8700000000000045474735088646411895751953125;s:5:\"bytes\";i:105235;s:11:\"size_before\";i:152809;s:10:\"size_after\";i:47574;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:101105;s:11:\"size_before\";i:146873;s:10:\"size_after\";i:45768;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:210660;s:11:\"size_before\";i:301748;s:10:\"size_after\";i:91088;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.06000000000000227373675443232059478759765625;s:5:\"bytes\";i:282051;s:11:\"size_before\";i:408436;s:10:\"size_after\";i:126385;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.7399999999999948840923025272786617279052734375;s:5:\"bytes\";i:232972;s:11:\"size_before\";i:334043;s:10:\"size_after\";i:101071;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.43000000000000682121026329696178436279296875;s:5:\"bytes\";i:183256;s:11:\"size_before\";i:263928;s:10:\"size_after\";i:80672;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.93000000000000682121026329696178436279296875;s:5:\"bytes\";i:456319;s:11:\"size_before\";i:652492;s:10:\"size_after\";i:196173;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:394643;s:11:\"size_before\";i:564884;s:10:\"size_after\";i:170241;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:625342;s:11:\"size_before\";i:897527;s:10:\"size_after\";i:272185;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:672256;s:11:\"size_before\";i:967734;s:10:\"size_after\";i:295478;s:4:\"time\";d:0.729999999999999982236431605997495353221893310546875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:552710;s:11:\"size_before\";i:796815;s:10:\"size_after\";i:244105;s:4:\"time\";d:1.1100000000000000976996261670137755572795867919921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.2099999999999937472239253111183643341064453125;s:5:\"bytes\";i:1052561;s:11:\"size_before\";i:1520733;s:10:\"size_after\";i:468172;s:4:\"time\";d:1.7600000000000000088817841970012523233890533447265625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:1390795;s:11:\"size_before\";i:2021155;s:10:\"size_after\";i:630360;s:4:\"time\";d:2.100000000000000088817841970012523233890533447265625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.599999999999994315658113919198513031005859375;s:5:\"bytes\";i:2127681;s:11:\"size_before\";i:3101545;s:10:\"size_after\";i:973864;s:4:\"time\";d:4.28000000000000024868995751603506505489349365234375;}}}'),(2773,2052,'_wp_attached_file','2023/01/318792128_10159617131168983_807962145973987535_n.jpg'),(2774,2052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:542;s:6:\"height\";i:723;s:4:\"file\";s:60:\"2023/01/318792128_10159617131168983_807962145973987535_n.jpg\";s:8:\"filesize\";s:5:\"92731\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"18171\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7815\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-542x272.jpg\";s:5:\"width\";i:542;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"40404\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"18417\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-542x441.jpg\";s:5:\"width\";i:542;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"60865\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:58:\"318792128_10159617131168983_807962145973987535_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2644\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-200x267.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"15025\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-400x534.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"46052\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-542x400.jpg\";s:5:\"width\";i:542;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56515\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"35706\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"34020\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"18530\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:60:\"318792128_10159617131168983_807962145973987535_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8693\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2775,2052,'wp-smush-lossy','1'),(2776,2052,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.35019856307030039488381589762866497039794921875;s:5:\"bytes\";i:15785;s:11:\"size_before\";i:362857;s:10:\"size_after\";i:347072;s:4:\"time\";d:0.4499999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:532;s:11:\"size_before\";i:8693;s:10:\"size_after\";i:8161;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:318;s:11:\"size_before\";i:2644;s:10:\"size_after\";i:2326;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:735;s:11:\"size_before\";i:15025;s:10:\"size_after\";i:14290;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:521;s:11:\"size_before\";i:7815;s:10:\"size_after\";i:7294;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:916;s:11:\"size_before\";i:18530;s:10:\"size_after\";i:17614;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:786;s:11:\"size_before\";i:18171;s:10:\"size_after\";i:17385;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:937;s:11:\"size_before\";i:18417;s:10:\"size_after\";i:17480;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1464;s:11:\"size_before\";i:34020;s:10:\"size_after\";i:32556;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1602;s:11:\"size_before\";i:35706;s:10:\"size_after\";i:34104;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1442;s:11:\"size_before\";i:46052;s:10:\"size_after\";i:44610;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2239;s:11:\"size_before\";i:56515;s:10:\"size_after\";i:54276;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1888;s:11:\"size_before\";i:40404;s:10:\"size_after\";i:38516;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2405;s:11:\"size_before\";i:60865;s:10:\"size_after\";i:58460;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(2777,1725,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:9:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";}}}'),(2778,2056,'_fusion_is_global','yes'),(2779,2056,'_fusion','a:0:{}'),(2781,2057,'_fusion_is_global','yes'),(2782,2069,'_wp_attached_file','2023/01/246339353_10158813569543983_4115597201873383475_n.jpg'),(2783,2069,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1800;s:4:\"file\";s:61:\"2023/01/246339353_10158813569543983_4115597201873383475_n.jpg\";s:8:\"filesize\";s:6:\"332497\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"23303\";}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"246339353_10158813569543983_4115597201873383475_n-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"163785\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11026\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"146664\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"319121\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"47424\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"23044\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"78145\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"246339353_10158813569543983_4115597201873383475_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5297\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"17991\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50780\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"97629\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:62:\"246339353_10158813569543983_4115597201873383475_n-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"157267\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:63:\"246339353_10158813569543983_4115597201873383475_n-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"306712\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"85314\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"41456\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"40450\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"22939\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"246339353_10158813569543983_4115597201873383475_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12142\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2784,2069,'wp-smush-lossy','1'),(2785,2069,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.56720523432752401049583568237721920013427734375;s:5:\"bytes\";i:108391;s:11:\"size_before\";i:1650489;s:10:\"size_after\";i:1542098;s:4:\"time\";d:1.87999999999999989341858963598497211933135986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2932;s:11:\"size_before\";i:5297;s:10:\"size_after\";i:2365;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3208;s:11:\"size_before\";i:11026;s:10:\"size_after\";i:7818;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:3429;s:11:\"size_before\";i:17991;s:10:\"size_after\";i:14562;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3633;s:11:\"size_before\";i:23303;s:10:\"size_after\";i:19670;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3251;s:11:\"size_before\";i:12142;s:10:\"size_after\";i:8891;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3728;s:11:\"size_before\";i:23044;s:10:\"size_after\";i:19316;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:3759;s:11:\"size_before\";i:22939;s:10:\"size_after\";i:19180;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4319;s:11:\"size_before\";i:41456;s:10:\"size_after\";i:37137;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4407;s:11:\"size_before\";i:40450;s:10:\"size_after\";i:36043;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4496;s:11:\"size_before\";i:50780;s:10:\"size_after\";i:46284;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:4487;s:11:\"size_before\";i:47424;s:10:\"size_after\";i:42937;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:5517;s:11:\"size_before\";i:78145;s:10:\"size_after\";i:72628;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:5595;s:11:\"size_before\";i:85314;s:10:\"size_after\";i:79719;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6027;s:11:\"size_before\";i:97629;s:10:\"size_after\";i:91602;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8318;s:11:\"size_before\";i:163785;s:10:\"size_after\";i:155467;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7666;s:11:\"size_before\";i:146664;s:10:\"size_after\";i:138998;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8102;s:11:\"size_before\";i:157267;s:10:\"size_after\";i:149165;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:12575;s:11:\"size_before\";i:306712;s:10:\"size_after\";i:294137;s:4:\"time\";d:0.25;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:12942;s:11:\"size_before\";i:319121;s:10:\"size_after\";i:306179;s:4:\"time\";d:0.5;}}}'),(2786,2072,'_wp_attached_file','2023/01/307691786_10159387843938983_7196370717298419686_n.jpg'),(2787,2072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:61:\"2023/01/307691786_10159387843938983_7196370717298419686_n.jpg\";s:8:\"filesize\";s:6:\"475082\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"28424\";}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"307691786_10159387843938983_7196370717298419686_n-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"279397\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8791\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"160962\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56773\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"21528\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"88790\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"307691786_10159387843938983_7196370717298419686_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2768\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13973\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"46734\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"100105\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"173748\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:63:\"307691786_10159387843938983_7196370717298419686_n-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"375506\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"112353\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"45479\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"41540\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"21440\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"307691786_10159387843938983_7196370717298419686_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9938\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2788,2072,'wp-smush-lossy','1'),(2789,2072,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.71579141557778402926714989007450640201568603515625;s:5:\"bytes\";i:90781;s:11:\"size_before\";i:1588249;s:10:\"size_after\";i:1497468;s:4:\"time\";d:1.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:736;s:11:\"size_before\";i:9938;s:10:\"size_after\";i:9202;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:334;s:11:\"size_before\";i:2768;s:10:\"size_after\";i:2434;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:657;s:11:\"size_before\";i:8791;s:10:\"size_after\";i:8134;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:959;s:11:\"size_before\";i:13973;s:10:\"size_after\";i:13014;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1409;s:11:\"size_before\";i:21528;s:10:\"size_after\";i:20119;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1346;s:11:\"size_before\";i:21440;s:10:\"size_after\";i:20094;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1716;s:11:\"size_before\";i:28424;s:10:\"size_after\";i:26708;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2706;s:11:\"size_before\";i:46734;s:10:\"size_after\";i:44028;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2708;s:11:\"size_before\";i:45479;s:10:\"size_after\";i:42771;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:3370;s:11:\"size_before\";i:56773;s:10:\"size_after\";i:53403;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2512;s:11:\"size_before\";i:41540;s:10:\"size_after\";i:39028;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5840;s:11:\"size_before\";i:100105;s:10:\"size_after\";i:94265;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6378;s:11:\"size_before\";i:112353;s:10:\"size_after\";i:105975;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5024;s:11:\"size_before\";i:88790;s:10:\"size_after\";i:83766;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:9667;s:11:\"size_before\";i:173748;s:10:\"size_after\";i:164081;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8843;s:11:\"size_before\";i:160962;s:10:\"size_after\";i:152119;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:20773;s:11:\"size_before\";i:375506;s:10:\"size_after\";i:354733;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:15803;s:11:\"size_before\";i:279397;s:10:\"size_after\";i:263594;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(2790,2073,'_wp_attached_file','2023/01/265099237_10158920847618983_8229145687643592132_n.jpg'),(2791,2073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:61:\"2023/01/265099237_10158920847618983_8229145687643592132_n.jpg\";s:8:\"filesize\";s:6:\"363640\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"26678\";}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"265099237_10158920847618983_8229145687643592132_n-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"229777\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8148\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"139321\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"55746\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"20362\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"80910\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:59:\"265099237_10158920847618983_8229145687643592132_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2527\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12938\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"43165\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"89609\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"149427\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:63:\"265099237_10158920847618983_8229145687643592132_n-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"300847\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"106358\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"43648\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"38846\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"20109\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:61:\"265099237_10158920847618983_8229145687643592132_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9064\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2792,2073,'wp-smush-lossy','1'),(2793,2073,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.54113308360193901336288035963661968708038330078125;s:5:\"bytes\";i:76328;s:11:\"size_before\";i:1377480;s:10:\"size_after\";i:1301152;s:4:\"time\";d:0.9299999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:918;s:11:\"size_before\";i:12938;s:10:\"size_after\";i:12020;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:638;s:11:\"size_before\";i:8148;s:10:\"size_after\";i:7510;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:629;s:11:\"size_before\";i:9064;s:10:\"size_after\";i:8435;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:335;s:11:\"size_before\";i:2527;s:10:\"size_after\";i:2192;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1267;s:11:\"size_before\";i:20109;s:10:\"size_after\";i:18842;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1285;s:11:\"size_before\";i:20362;s:10:\"size_after\";i:19077;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1646;s:11:\"size_before\";i:26678;s:10:\"size_after\";i:25032;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2630;s:11:\"size_before\";i:43165;s:10:\"size_after\";i:40535;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2285;s:11:\"size_before\";i:38846;s:10:\"size_after\";i:36561;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:2569;s:11:\"size_before\";i:43648;s:10:\"size_after\";i:41079;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3402;s:11:\"size_before\";i:55746;s:10:\"size_after\";i:52344;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4418;s:11:\"size_before\";i:80910;s:10:\"size_after\";i:76492;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:5108;s:11:\"size_before\";i:89609;s:10:\"size_after\";i:84501;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5752;s:11:\"size_before\";i:106358;s:10:\"size_after\";i:100606;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:8138;s:11:\"size_before\";i:149427;s:10:\"size_after\";i:141289;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:7578;s:11:\"size_before\";i:139321;s:10:\"size_after\";i:131743;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:12216;s:11:\"size_before\";i:229777;s:10:\"size_after\";i:217561;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:15514;s:11:\"size_before\";i:300847;s:10:\"size_after\";i:285333;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(2794,2074,'_wp_attached_file','2023/01/IMG-9690-scaled.jpg'),(2795,2074,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2023/01/IMG-9690-scaled.jpg\";s:8:\"filesize\";s:6:\"996420\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG-9690-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"29133\";}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG-9690-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"211255\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG-9690-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"14307\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"IMG-9690-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"211255\";}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG-9690-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"421698\";}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG-9690-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"688761\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"IMG-9690-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"68911\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"IMG-9690-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"31694\";}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"IMG-9690-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"108205\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"IMG-9690-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6220\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"IMG-9690-200x267.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"24133\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"IMG-9690-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"71307\";}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"IMG-9690-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"139270\";}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:21:\"IMG-9690-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"226625\";}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"IMG-9690-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"453076\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"IMG-9690-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"121957\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"IMG-9690-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"58167\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"IMG-9690-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56164\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"IMG-9690-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"31433\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"IMG-9690-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"15968\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:14:\"original_image\";s:12:\"IMG-9690.jpg\";}'),(2796,2074,'wp-smush-lossy','1'),(2797,2074,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.033780662006876127634313888847827911376953125;s:5:\"bytes\";i:831710;s:11:\"size_before\";i:3774704;s:10:\"size_after\";i:2942994;s:4:\"time\";d:2.2400000000000002131628207280300557613372802734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:20:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:3585;s:11:\"size_before\";i:6220;s:10:\"size_after\";i:2635;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7826;s:11:\"size_before\";i:24133;s:10:\"size_after\";i:16307;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:5514;s:11:\"size_before\";i:14307;s:10:\"size_after\";i:8793;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9604;s:11:\"size_before\";i:31694;s:10:\"size_after\";i:22090;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:9503;s:11:\"size_before\";i:31433;s:10:\"size_after\";i:21930;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:5938;s:11:\"size_before\";i:15968;s:10:\"size_after\";i:10030;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8913;s:11:\"size_before\";i:29133;s:10:\"size_after\";i:20220;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:18224;s:11:\"size_before\";i:71307;s:10:\"size_after\";i:53083;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:17202;s:11:\"size_before\";i:68911;s:10:\"size_after\";i:51709;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:15083;s:11:\"size_before\";i:58167;s:10:\"size_after\";i:43084;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:14769;s:11:\"size_before\";i:56164;s:10:\"size_after\";i:41395;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:25997;s:11:\"size_before\";i:108205;s:10:\"size_after\";i:82208;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:32529;s:11:\"size_before\";i:139270;s:10:\"size_after\";i:106741;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:28095;s:11:\"size_before\";i:121957;s:10:\"size_after\";i:93862;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.5;s:5:\"bytes\";i:50994;s:11:\"size_before\";i:226625;s:10:\"size_after\";i:175631;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:47744;s:11:\"size_before\";i:211255;s:10:\"size_after\";i:163511;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:90810;s:11:\"size_before\";i:421698;s:10:\"size_after\";i:330888;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.489999999999998436805981327779591083526611328125;s:5:\"bytes\";i:97353;s:11:\"size_before\";i:453076;s:10:\"size_after\";i:355723;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:142714;s:11:\"size_before\";i:688761;s:10:\"size_after\";i:546047;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";i:20;s:5:\"bytes\";i:199313;s:11:\"size_before\";i:996420;s:10:\"size_after\";i:797107;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}}}'),(2798,2076,'_fusion','a:0:{}'),(2799,2077,'_wp_attached_file','2023/01/environment.svg'),(2800,2077,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:15:\"environment.svg\";s:5:\"sizes\";a:20:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"blog-large\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"blog-medium\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"recent-posts\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:22:\"recent-works-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-200\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-400\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-600\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-800\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"fusion-1200\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-full\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-one\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-two\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"portfolio-three\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-five\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"environment.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2801,2080,'_wp_attached_file','2023/01/economy.svg'),(2802,2080,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:11:\"economy.svg\";s:5:\"sizes\";a:20:{s:9:\"thumbnail\";a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"blog-large\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"blog-medium\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"recent-posts\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:22:\"recent-works-thumbnail\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-400\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-600\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-800\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"fusion-1200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-full\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-one\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-two\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"portfolio-three\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-five\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"economy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2803,2081,'_wp_attached_file','2023/01/education.svg'),(2804,2081,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:13:\"education.svg\";s:5:\"sizes\";a:20:{s:9:\"thumbnail\";a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"blog-large\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"blog-medium\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"recent-posts\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:22:\"recent-works-thumbnail\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-400\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-600\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-800\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"fusion-1200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-full\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-one\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-two\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"portfolio-three\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-five\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:13:\"education.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2805,2083,'_wp_attached_file','2023/01/peace.svg'),(2806,2083,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:9:\"peace.svg\";s:5:\"sizes\";a:20:{s:9:\"thumbnail\";a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"blog-large\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"blog-medium\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"recent-posts\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:22:\"recent-works-thumbnail\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-400\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-600\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-800\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"fusion-1200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-full\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-one\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-two\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"portfolio-three\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-five\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:9:\"peace.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2807,2084,'_wp_attached_file','2023/01/disease.svg'),(2808,2084,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:11:\"disease.svg\";s:5:\"sizes\";a:20:{s:9:\"thumbnail\";a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"blog-large\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"blog-medium\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"recent-posts\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:22:\"recent-works-thumbnail\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-400\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-600\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-800\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"fusion-1200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-full\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-one\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-two\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"portfolio-three\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-five\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:11:\"disease.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2809,2085,'_wp_attached_file','2023/01/maternal.svg'),(2810,2085,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:12:\"maternal.svg\";s:5:\"sizes\";a:20:{s:9:\"thumbnail\";a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"blog-large\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"blog-medium\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"recent-posts\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:22:\"recent-works-thumbnail\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-400\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-600\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:10:\"fusion-800\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:11:\"fusion-1200\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-full\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-one\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"portfolio-two\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"portfolio-three\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"portfolio-five\";a:5:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:12:\"maternal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2811,1807,'evcal_subtitle',''),(2814,1757,'evcal_subtitle',''),(2816,1757,'_edit_lock','1673244118:1'),(2817,1771,'evcal_subtitle',''),(2819,1771,'_edit_lock','1673244179:1'),(2820,1770,'evcal_subtitle',''),(2822,1770,'_edit_lock','1673244829:1'),(2851,1773,'evcal_name_over_img','no'),(2826,1773,'_edit_lock','1673244600:1'),(2827,1781,'evcal_subtitle',''),(2829,1781,'_edit_lock','1673244519:1'),(2830,1758,'evcal_subtitle',''),(2832,1758,'_edit_lock','1673244371:1'),(2833,1772,'evcal_subtitle',''),(2835,1772,'_edit_lock','1673244397:1'),(2837,1775,'evcal_subtitle',''),(2839,1775,'_edit_lock','1673244407:1'),(2840,1776,'evcal_subtitle',''),(2842,1776,'_edit_lock','1673244426:1'),(2899,1784,'evcal_name_over_img','no'),(2846,1784,'_edit_lock','1673244694:1'),(2849,1773,'evcal_allday','no'),(2850,1773,'evcal_event_color','66819a'),(2852,1773,'evcal_repeat','no'),(2853,1773,'_evcal_rep_series','no'),(2854,1773,'_evcal_rep_endt','no'),(2855,1773,'_evcal_rep_series_clickable','no'),(2856,1773,'evcal_rep_gap','1'),(2857,1773,'evcal_rep_num','1'),(2858,1773,'evcal_lmlink_target','no'),(2859,1773,'_evcal_exlink_option','1'),(2860,1773,'evo_year_long','no'),(2861,1773,'_evo_month_long','no'),(2862,1773,'evo_event_org_as_perf','no'),(2863,1773,'_evo_virtual_endtime','no'),(2864,1773,'_wpnonce','fb384cd142'),(2865,1773,'_wp_http_referer','/wp-admin/post.php?post=1773&action=edit'),(2866,1773,'_wp_original_http_referer','https://test-site.wlvrotary.org/wp-admin/edit.php?post_type=ajde_events&all_posts=1&orderby=title&order=asc&paged=2'),(2867,1773,'_completed','no'),(2868,1773,'_onlyloggedin','no'),(2869,1773,'_fusion_google_fonts','\"\"'),(2870,1773,'_attendance_mode','offline'),(2871,1773,'_evo_date_format','Y/m/d'),(2872,1773,'_evo_time_format','12h'),(2873,1773,'_start_hour','5'),(2874,1773,'_start_minute','30'),(2875,1773,'_start_ampm','pm'),(2876,1773,'_end_hour','7'),(2877,1773,'_end_minute','00'),(2878,1773,'_end_ampm','pm'),(2879,1773,'_vir_hour','6'),(2880,1773,'_vir_minute','08'),(2881,1773,'_vir_ampm','am'),(2882,1773,'_evo_tz','America/Los_Angeles'),(2883,1773,'_edata','a:9:{s:9:\"day_light\";s:2:\"no\";s:13:\"hide_progress\";s:2:\"no\";s:12:\"_health_mask\";s:2:\"no\";s:12:\"_health_temp\";s:2:\"no\";s:12:\"_health_pdis\";s:2:\"no\";s:11:\"_health_san\";s:2:\"no\";s:11:\"_health_out\";s:2:\"no\";s:11:\"_health_vac\";s:2:\"no\";s:13:\"_health_other\";s:0:\"\";}'),(2884,1773,'_evo_rep_series','no'),(2885,1773,'_new_repeat_start_hour','5'),(2886,1773,'_new_repeat_start_minute','30'),(2887,1773,'_new_repeat_start_ampm','pm'),(2888,1773,'_new_repeat_end_hour','7'),(2889,1773,'_new_repeat_end_minute','00'),(2890,1773,'_new_repeat_end_ampm','pm'),(2891,1773,'_virtual','no'),(2892,1773,'_health','no'),(2894,1773,'_yoast_wpseo_estimated-reading-time-minutes','0'),(2895,1773,'_yoast_wpseo_wordproof_timestamp',''),(2897,1784,'evcal_allday','no'),(2898,1784,'evcal_event_color','66819a'),(2900,1784,'evcal_repeat','no'),(2901,1784,'_evcal_rep_series','no'),(2902,1784,'_evcal_rep_endt','no'),(2903,1784,'_evcal_rep_series_clickable','no'),(2904,1784,'evcal_rep_gap','1'),(2905,1784,'evcal_rep_num','1'),(2906,1784,'evcal_lmlink_target','no'),(2907,1784,'_evcal_exlink_option','1'),(2908,1784,'evo_year_long','no'),(2909,1784,'_evo_month_long','no'),(2910,1784,'evo_event_org_as_perf','no'),(2911,1784,'_evo_virtual_endtime','no'),(2912,1784,'_wpnonce','a53f35a71d'),(2913,1784,'_wp_http_referer','/wp-admin/post.php?post=1784&action=edit'),(2914,1784,'_wp_original_http_referer','https://test-site.wlvrotary.org/wp-admin/edit.php?post_type=ajde_events&all_posts=1&orderby=title&order=asc&paged=2'),(2915,1784,'_completed','no'),(2916,1784,'_onlyloggedin','no'),(2917,1784,'_fusion_google_fonts','\"\"'),(2918,1784,'_attendance_mode','offline'),(2919,1784,'_evo_date_format','Y/m/d'),(2893,1773,'_evo_lang','L1'),(2920,1784,'_evo_time_format','12h'),(2921,1784,'_start_hour','5'),(2922,1784,'_start_minute','30'),(2923,1784,'_start_ampm','pm'),(2924,1784,'_end_hour','7'),(2925,1784,'_end_minute','00'),(2926,1784,'_end_ampm','pm'),(2927,1784,'_vir_hour','6'),(2928,1784,'_vir_minute','11'),(2929,1784,'_vir_ampm','am'),(2930,1784,'_evo_tz','America/Los_Angeles'),(2931,1784,'_edata','a:9:{s:9:\"day_light\";s:2:\"no\";s:13:\"hide_progress\";s:2:\"no\";s:12:\"_health_mask\";s:2:\"no\";s:12:\"_health_temp\";s:2:\"no\";s:12:\"_health_pdis\";s:2:\"no\";s:11:\"_health_san\";s:2:\"no\";s:11:\"_health_out\";s:2:\"no\";s:11:\"_health_vac\";s:2:\"no\";s:13:\"_health_other\";s:0:\"\";}'),(2932,1784,'_evo_rep_series','no'),(2933,1784,'_new_repeat_start_hour','5'),(2934,1784,'_new_repeat_start_minute','30'),(2935,1784,'_new_repeat_start_ampm','pm'),(2936,1784,'_new_repeat_end_hour','7'),(2937,1784,'_new_repeat_end_minute','00'),(2938,1784,'_new_repeat_end_ampm','pm'),(2939,1784,'_virtual','no'),(2940,1784,'_health','no'),(2942,1784,'_yoast_wpseo_estimated-reading-time-minutes','0'),(2943,1784,'_yoast_wpseo_wordproof_timestamp',''),(2944,1777,'evcal_subtitle',''),(2946,1777,'_edit_lock','1673244731:1'),(2947,1787,'evcal_subtitle',''),(2949,1787,'_edit_lock','1673244767:1'),(2950,1766,'evcal_subtitle',''),(2952,1766,'_edit_lock','1673244794:1'),(2953,1765,'evcal_subtitle',''),(2955,1765,'_edit_lock','1673244809:1'),(2957,1764,'evcal_subtitle',''),(2959,1764,'_edit_lock','1673244851:1'),(2960,1768,'evcal_subtitle',''),(2962,1768,'_edit_lock','1673244865:1'),(2963,2094,'_wp_attached_file','2023/01/disease.jpg'),(2964,2094,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:403;s:6:\"height\";i:402;s:4:\"file\";s:19:\"2023/01/disease.jpg\";s:8:\"filesize\";s:5:\"70178\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"disease-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"57370\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"disease-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"45570\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"disease-403x272.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"60750\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"disease-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"52268\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"disease-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"40858\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"disease-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"48860\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"disease-400x399.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"67072\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:19:\"disease-403x400.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"69951\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:19:\"disease-403x272.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"60750\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:19:\"disease-403x295.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"62265\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:19:\"disease-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"52290\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:19:\"disease-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"45813\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2941,1784,'_evo_lang','L1'),(2965,2094,'wp-smush-lossy','1'),(2966,2094,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:77.492882217067091232820530422031879425048828125;s:5:\"bytes\";i:467334;s:11:\"size_before\";i:603067;s:10:\"size_after\";i:135733;s:4:\"time\";d:0.41000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.4899999999999948840923025272786617279052734375;s:5:\"bytes\";i:39623;s:11:\"size_before\";i:45813;s:10:\"size_after\";i:6190;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:39509;s:11:\"size_before\";i:45570;s:10:\"size_after\";i:6061;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:79.409999999999996589394868351519107818603515625;s:5:\"bytes\";i:41524;s:11:\"size_before\";i:52290;s:10:\"size_after\";i:10766;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:79.7900000000000062527760746888816356658935546875;s:5:\"bytes\";i:41707;s:11:\"size_before\";i:52268;s:10:\"size_after\";i:10561;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.2300000000000039790393202565610408782958984375;s:5:\"bytes\";i:44487;s:11:\"size_before\";i:60750;s:10:\"size_after\";i:16263;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:43137;s:11:\"size_before\";i:57370;s:10:\"size_after\";i:14233;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";i:72;s:5:\"bytes\";i:44828;s:11:\"size_before\";i:62265;s:10:\"size_after\";i:17437;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:82.7699999999999960209606797434389591217041015625;s:5:\"bytes\";i:40440;s:11:\"size_before\";i:48860;s:10:\"size_after\";i:8420;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:93.8799999999999954525264911353588104248046875;s:5:\"bytes\";i:38356;s:11:\"size_before\";i:40858;s:10:\"size_after\";i:2502;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:46303;s:11:\"size_before\";i:67072;s:10:\"size_after\";i:20769;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.7900000000000062527760746888816356658935546875;s:5:\"bytes\";i:47420;s:11:\"size_before\";i:69951;s:10:\"size_after\";i:22531;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(2967,2095,'_wp_attached_file','2023/01/econmic.jpg'),(2968,2095,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:402;s:6:\"height\";i:403;s:4:\"file\";s:19:\"2023/01/econmic.jpg\";s:8:\"filesize\";s:5:\"82202\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"econmic-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"66148\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"econmic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50388\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"econmic-402x272.jpg\";s:5:\"width\";i:402;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"72771\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"econmic-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"61288\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"econmic-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"44320\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"econmic-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"55176\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"econmic-400x401.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"78430\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:19:\"econmic-402x400.jpg\";s:5:\"width\";i:402;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"81846\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:19:\"econmic-402x272.jpg\";s:5:\"width\";i:402;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"72771\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:19:\"econmic-402x295.jpg\";s:5:\"width\";i:402;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"74313\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:19:\"econmic-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"61333\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:19:\"econmic-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"51325\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2969,2095,'wp-smush-lossy','1'),(2970,2095,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:75.0783694564185424269453505985438823699951171875;s:5:\"bytes\";i:523550;s:11:\"size_before\";i:697338;s:10:\"size_after\";i:173788;s:4:\"time\";d:0.4499999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:94.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:41786;s:11:\"size_before\";i:44320;s:10:\"size_after\";i:2534;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.2600000000000051159076974727213382720947265625;s:5:\"bytes\";i:43467;s:11:\"size_before\";i:50388;s:10:\"size_after\";i:6921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.5400000000000062527760746888816356658935546875;s:5:\"bytes\";i:46947;s:11:\"size_before\";i:61333;s:10:\"size_after\";i:14386;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:43859;s:11:\"size_before\";i:51325;s:10:\"size_after\";i:7466;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.31000000000000227373675443232059478759765625;s:5:\"bytes\";i:48492;s:11:\"size_before\";i:66148;s:10:\"size_after\";i:17656;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:46971;s:11:\"size_before\";i:61288;s:10:\"size_after\";i:14317;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.5499999999999971578290569595992565155029296875;s:5:\"bytes\";i:44994;s:11:\"size_before\";i:55176;s:10:\"size_after\";i:10182;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.6200000000000045474735088646411895751953125;s:5:\"bytes\";i:50993;s:11:\"size_before\";i:74313;s:10:\"size_after\";i:23320;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:53444;s:11:\"size_before\";i:81846;s:10:\"size_after\";i:28402;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:50532;s:11:\"size_before\";i:72771;s:10:\"size_after\";i:22239;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.3799999999999954525264911353588104248046875;s:5:\"bytes\";i:52065;s:11:\"size_before\";i:78430;s:10:\"size_after\";i:26365;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(2971,2096,'_wp_attached_file','2023/01/education.jpg'),(2972,2096,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:408;s:6:\"height\";i:402;s:4:\"file\";s:21:\"2023/01/education.jpg\";s:8:\"filesize\";s:5:\"77533\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"education-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"61062\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"education-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"46524\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"education-408x272.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"66760\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"education-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"55476\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"education-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"40910\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"education-200x197.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50813\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"education-400x394.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"72733\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"education-408x400.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"77432\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"education-408x272.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"66760\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"education-408x295.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"68455\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"education-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56050\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"education-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"47092\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2973,2096,'wp-smush-lossy','1'),(2974,2096,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:75.6924765314227983026285073719918727874755859375;s:5:\"bytes\";i:486935;s:11:\"size_before\";i:643307;s:10:\"size_after\";i:156372;s:4:\"time\";d:0.45999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:77.2099999999999937472239253111183643341064453125;s:5:\"bytes\";i:43277;s:11:\"size_before\";i:56050;s:10:\"size_after\";i:12773;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.7099999999999937472239253111183643341064453125;s:5:\"bytes\";i:40362;s:11:\"size_before\";i:47092;s:10:\"size_after\";i:6730;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:94.150000000000005684341886080801486968994140625;s:5:\"bytes\";i:38517;s:11:\"size_before\";i:40910;s:10:\"size_after\";i:2393;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.7099999999999937472239253111183643341064453125;s:5:\"bytes\";i:45006;s:11:\"size_before\";i:61062;s:10:\"size_after\";i:16056;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:77.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:43086;s:11:\"size_before\";i:55476;s:10:\"size_after\";i:12390;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.1299999999999954525264911353588104248046875;s:5:\"bytes\";i:40070;s:11:\"size_before\";i:46524;s:10:\"size_after\";i:6454;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:47714;s:11:\"size_before\";i:68455;s:10:\"size_after\";i:20741;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.909999999999996589394868351519107818603515625;s:5:\"bytes\";i:41622;s:11:\"size_before\";i:50813;s:10:\"size_after\";i:9191;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.25;s:5:\"bytes\";i:48916;s:11:\"size_before\";i:72733;s:10:\"size_after\";i:23817;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.93999999999999772626324556767940521240234375;s:5:\"bytes\";i:51055;s:11:\"size_before\";i:77432;s:10:\"size_after\";i:26377;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.8700000000000045474735088646411895751953125;s:5:\"bytes\";i:47310;s:11:\"size_before\";i:66760;s:10:\"size_after\";i:19450;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(2975,2097,'_wp_attached_file','2023/01/environment.jpg'),(2976,2097,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:418;s:6:\"height\";i:402;s:4:\"file\";s:23:\"2023/01/environment.jpg\";s:8:\"filesize\";s:5:\"81915\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"environment-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"65145\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"environment-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"50871\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"environment-418x272.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"71124\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"environment-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"60264\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"environment-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"44712\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"environment-200x192.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"54944\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"environment-400x385.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"76092\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:23:\"environment-418x400.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"81607\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:23:\"environment-418x272.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"71124\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:23:\"environment-418x295.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"74061\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:23:\"environment-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"60861\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:23:\"environment-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"51974\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2977,2097,'wp-smush-lossy','1'),(2978,2097,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:74.4833768280428785146796144545078277587890625;s:5:\"bytes\";i:515168;s:11:\"size_before\";i:691655;s:10:\"size_after\";i:176487;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:84.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:44103;s:11:\"size_before\";i:51974;s:10:\"size_after\";i:7871;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.0400000000000062527760746888816356658935546875;s:5:\"bytes\";i:43771;s:11:\"size_before\";i:50871;s:10:\"size_after\";i:7100;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:94.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:42155;s:11:\"size_before\";i:44712;s:10:\"size_after\";i:2557;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.7399999999999948840923025272786617279052734375;s:5:\"bytes\";i:47384;s:11:\"size_before\";i:65145;s:10:\"size_after\";i:17761;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.599999999999994315658113919198513031005859375;s:5:\"bytes\";i:46165;s:11:\"size_before\";i:60264;s:10:\"size_after\";i:14099;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.599999999999994315658113919198513031005859375;s:5:\"bytes\";i:44833;s:11:\"size_before\";i:54944;s:10:\"size_after\";i:10111;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.8700000000000045474735088646411895751953125;s:5:\"bytes\";i:46175;s:11:\"size_before\";i:60861;s:10:\"size_after\";i:14686;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.8700000000000045474735088646411895751953125;s:5:\"bytes\";i:48985;s:11:\"size_before\";i:71124;s:10:\"size_after\";i:22139;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.7600000000000051159076974727213382720947265625;s:5:\"bytes\";i:50036;s:11:\"size_before\";i:76092;s:10:\"size_after\";i:26056;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.5;s:5:\"bytes\";i:51817;s:11:\"size_before\";i:81607;s:10:\"size_after\";i:29790;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:49744;s:11:\"size_before\";i:74061;s:10:\"size_after\";i:24317;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2979,2098,'_wp_attached_file','2023/01/maternal.jpg'),(2980,2098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:403;s:6:\"height\";i:414;s:4:\"file\";s:20:\"2023/01/maternal.jpg\";s:8:\"filesize\";s:5:\"66023\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"maternal-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"53771\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"maternal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"42911\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"maternal-403x272.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56451\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"maternal-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"49312\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"maternal-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"38315\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"maternal-200x205.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"46250\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"maternal-400x411.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"63828\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"maternal-403x400.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"64938\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"maternal-403x272.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56451\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"maternal-403x295.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"58274\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"maternal-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"49426\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"maternal-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"43105\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2981,2098,'wp-smush-lossy','1'),(2982,2098,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:76.1652791039586674060046789236366748809814453125;s:5:\"bytes\";i:431538;s:11:\"size_before\";i:566581;s:10:\"size_after\";i:135043;s:4:\"time\";d:0.30999999999999994226840271949185989797115325927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:93.7399999999999948840923025272786617279052734375;s:5:\"bytes\";i:35916;s:11:\"size_before\";i:38315;s:10:\"size_after\";i:2399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:38686;s:11:\"size_before\";i:49312;s:10:\"size_after\";i:10626;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:37709;s:11:\"size_before\";i:46250;s:10:\"size_after\";i:8541;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.75;s:5:\"bytes\";i:40506;s:11:\"size_before\";i:56451;s:10:\"size_after\";i:15945;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:38651;s:11:\"size_before\";i:49426;s:10:\"size_after\";i:10775;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.7300000000000039790393202565610408782958984375;s:5:\"bytes\";i:36952;s:11:\"size_before\";i:43105;s:10:\"size_after\";i:6153;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.0400000000000062527760746888816356658935546875;s:5:\"bytes\";i:36920;s:11:\"size_before\";i:42911;s:10:\"size_after\";i:5991;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:42758;s:11:\"size_before\";i:64938;s:10:\"size_after\";i:22180;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.06999999999999317878973670303821563720703125;s:5:\"bytes\";i:39827;s:11:\"size_before\";i:53771;s:10:\"size_after\";i:13944;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.93000000000000682121026329696178436279296875;s:5:\"bytes\";i:42719;s:11:\"size_before\";i:63828;s:10:\"size_after\";i:21109;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.18000000000000682121026329696178436279296875;s:5:\"bytes\";i:40894;s:11:\"size_before\";i:58274;s:10:\"size_after\";i:17380;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2983,2099,'_wp_attached_file','2023/01/peace.jpg'),(2984,2099,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:402;s:4:\"file\";s:17:\"2023/01/peace.jpg\";s:8:\"filesize\";s:5:\"83493\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"peace-300x291.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"66565\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"peace-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"51876\";}s:10:\"blog-large\";a:5:{s:4:\"file\";s:17:\"peace-414x272.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"73264\";}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:17:\"peace-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"61839\";}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:15:\"peace-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"45729\";}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"peace-200x194.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"56228\";}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:17:\"peace-400x388.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"78586\";}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:17:\"peace-414x400.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"82652\";}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:17:\"peace-414x272.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"73264\";}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:17:\"peace-414x295.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"75363\";}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:17:\"peace-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"61686\";}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:17:\"peace-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"52744\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(2985,2099,'wp-smush-lossy','1'),(2986,2099,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:74.98683711424251896460191346704959869384765625;s:5:\"bytes\";i:529806;s:11:\"size_before\";i:706532;s:10:\"size_after\";i:176726;s:4:\"time\";d:0.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:94.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:43022;s:11:\"size_before\";i:45729;s:10:\"size_after\";i:2707;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.25;s:5:\"bytes\";i:48761;s:11:\"size_before\";i:66565;s:10:\"size_after\";i:17804;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.6200000000000045474735088646411895751953125;s:5:\"bytes\";i:45891;s:11:\"size_before\";i:56228;s:10:\"size_after\";i:10337;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:47377;s:11:\"size_before\";i:61839;s:10:\"size_after\";i:14462;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:44555;s:11:\"size_before\";i:51876;s:10:\"size_after\";i:7321;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:44879;s:11:\"size_before\";i:52744;s:10:\"size_after\";i:7865;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.5;s:5:\"bytes\";i:50922;s:11:\"size_before\";i:73264;s:10:\"size_after\";i:22342;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:47240;s:11:\"size_before\";i:61686;s:10:\"size_after\";i:14446;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.5199999999999960209606797434389591217041015625;s:5:\"bytes\";i:52274;s:11:\"size_before\";i:78586;s:10:\"size_after\";i:26312;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.93000000000000682121026329696178436279296875;s:5:\"bytes\";i:53669;s:11:\"size_before\";i:82652;s:10:\"size_after\";i:28983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.9599999999999937472239253111183643341064453125;s:5:\"bytes\";i:51216;s:11:\"size_before\";i:75363;s:10:\"size_after\";i:24147;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2987,2115,'_wp_page_template','100-width.php'),(2988,2115,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:9:\"home-hero\";s:14:\"page_title_bar\";s:2:\"no\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";}'),(2989,2115,'_fusion_google_fonts','a:1:{s:9:\"Open Sans\";a:1:{s:8:\"variants\";a:9:{i:0;s:3:\"400\";i:1;s:3:\"400\";i:2;s:3:\"400\";i:3;s:3:\"400\";i:4;s:3:\"400\";i:5;s:3:\"400\";i:6;s:3:\"400\";i:7;s:3:\"400\";i:8;s:3:\"400\";}}}'),(2990,2115,'fusion_builder_status','active'),(2991,2115,'avada_media','a:4:{s:6:\"images\";a:9:{s:90:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg\";a:1:{s:8:\"image_id\";s:8:\"987|full\";}s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg\";a:1:{s:8:\"image_id\";s:8:\"989|full\";}s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg\";s:4:\"true\";s:91:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg\";s:4:\"true\";s:88:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg\";s:4:\"true\";s:102:\"https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg\";a:1:{s:8:\"image_id\";s:8:\"505|full\";}}s:5:\"forms\";a:1:{i:141;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:474;s:4:\"true\";i:718;s:4:\"true\";}s:5:\"icons\";a:1:{i:103;s:8:\"handyman\";}}'),(2992,2115,'_wxr_import_user_slug','danyduchaine'),(2993,2115,'fusion_demo_import','handyman'),(2994,2115,'avada_post_views_count','299'),(2995,2115,'avada_today_post_views_count','4'),(2996,2115,'avada_post_views_count_today_date','09-01-2023'),(2997,2115,'_yoast_wpseo_content_score','90'),(2998,2115,'_yoast_wpseo_estimated-reading-time-minutes','5'),(2999,2115,'_yoast_wpseo_wordproof_timestamp',''),(3001,2115,'_dp_original','1851'),(3002,2115,'_edit_last','1'),(3003,2115,'_edit_lock','1673279720:1'),(3004,1691,'_wp_old_date','2022-09-18'),(3008,1739,'_wp_old_date','2023-01-09'),(3005,1739,'_wp_old_date','2022-09-18'),(3011,2141,'wp-smush-lossy','1'),(3012,2141,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.56720523432752401049583568237721920013427734375;s:5:\"bytes\";i:108391;s:11:\"size_before\";i:1650489;s:10:\"size_after\";i:1542098;s:4:\"time\";d:1.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3251;s:11:\"size_before\";i:12142;s:10:\"size_after\";i:8891;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2932;s:11:\"size_before\";i:5297;s:10:\"size_after\";i:2365;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3208;s:11:\"size_before\";i:11026;s:10:\"size_after\";i:7818;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:3759;s:11:\"size_before\";i:22939;s:10:\"size_after\";i:19180;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:3429;s:11:\"size_before\";i:17991;s:10:\"size_after\";i:14562;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3633;s:11:\"size_before\";i:23303;s:10:\"size_after\";i:19670;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3728;s:11:\"size_before\";i:23044;s:10:\"size_after\";i:19316;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4407;s:11:\"size_before\";i:40450;s:10:\"size_after\";i:36043;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4319;s:11:\"size_before\";i:41456;s:10:\"size_after\";i:37137;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:10:\"fusion-400\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4496;s:11:\"size_before\";i:50780;s:10:\"size_after\";i:46284;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:4487;s:11:\"size_before\";i:47424;s:10:\"size_after\";i:42937;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:5517;s:11:\"size_before\";i:78145;s:10:\"size_after\";i:72628;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:5595;s:11:\"size_before\";i:85314;s:10:\"size_after\";i:79719;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8318;s:11:\"size_before\";i:163785;s:10:\"size_after\";i:155467;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7666;s:11:\"size_before\";i:146664;s:10:\"size_after\";i:138998;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:10:\"fusion-600\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6027;s:11:\"size_before\";i:97629;s:10:\"size_after\";i:91602;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:10:\"fusion-800\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8102;s:11:\"size_before\";i:157267;s:10:\"size_after\";i:149165;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:11:\"fusion-1200\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:12575;s:11:\"size_before\";i:306712;s:10:\"size_after\";i:294137;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:12942;s:11:\"size_before\";i:319121;s:10:\"size_after\";i:306179;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}');
/*!40000 ALTER TABLE `wpwlvrot_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_posts`
--

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

--
-- Dumping data for table `wpwlvrot_posts`
--

LOCK TABLES `wpwlvrot_posts` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_posts` DISABLE KEYS */;
INSERT INTO `wpwlvrot_posts` VALUES (1,1,'2022-08-23 23:32:57','2022-08-23 23:32:57','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2022-08-23 23:32:57','2022-08-23 23:32:57','',0,'https://test-site.wlvrotary.org/?p=1',0,'post','',1),(3,1,'2022-08-23 23:32:57','2022-08-23 23:32:57','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://test-site.wlvrotary.org.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-08-23 23:32:57','2022-08-23 23:32:57','',0,'https://test-site.wlvrotary.org/?page_id=3',0,'page','',0),(8,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Aliquam congue semper metus','','publish','open','open','','aliquam-congue-semper-metus','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/aliquam-congue-semper-metus/',0,'post','',0),(7,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','','Avada-placeholder','','inherit','open','closed','','avada-placeholder','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',0,'attachment','image/svg+xml',0),(9,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Cras suscipit ante erat eleifend','','publish','open','open','','cras-suscipit-ante-erat-eleifend','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/cras-suscipit-ante-erat-eleifend/',0,'post','',0),(10,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Vivamus ut magna turpis','','publish','open','open','','vivamus-ut-magna-turpis','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/vivamus-ut-magna-turpis/',0,'post','',0),(11,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Fusce cursus dolor sit amet','','publish','open','open','','fusce-cursus-dolor-sit-amet','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/fusce-cursus-dolor-sit-amet/',0,'post','',0),(12,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Aliquam luctus sem massa','','publish','open','open','','aliquam-luctus-sem-massa','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/aliquam-luctus-sem-massa/',0,'post','',0),(13,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Aenean consectetur tempor metus','','publish','open','open','','aenean-consectetur-tempor-metus','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/aenean-consectetur-tempor-metus/',0,'post','',0),(14,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Malesuada Mauris Blandit','','publish','open','open','','malesuada-mauris-blandit','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/malesuada-mauris-blandit/',0,'post','',0),(15,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Nulla porttitor accumsan tincidunt mauris blandit.','','publish','open','open','','nulla-porttitor-accumsan-tincidunt-mauris-blandit','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/nulla-porttitor-accumsan-tincidunt-mauris-blandit/',0,'post','',0),(16,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','How Avada Can Become Your Full-Fledged Webinar Hub','','publish','open','open','','how-avada-can-become-your-full-fledged-webinar-hub','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/how-avada-can-become-your-full-fledged-webinar-hub/',0,'post','',0),(17,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','How to Use Instagram Feeds to Boost Traffic and Conversions','','publish','open','open','','how-to-use-instagram-feeds-to-boost-traffic-and-conversions','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/how-to-use-instagram-feeds-to-boost-traffic-and-conversions/',0,'post','',0),(18,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Mauris blandit aliquet elit, eget tincidunt nibh','','publish','open','open','','mauris-blandit-aliquet-elit-eget-tincidunt-nibh','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/mauris-blandit-aliquet-elit-eget-tincidunt-nibh/',0,'post','',0),(19,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Curabitur arcu erat, accumsan id imperdiet et, porttitor','','publish','open','open','','curabitur-arcu-erat-accumsan-id-imperdiet-et-porttitor','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/curabitur-arcu-erat-accumsan-id-imperdiet-et-porttitor/',0,'post','',0),(20,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Curabitur arcu erat, accumsan id imperdiet et, porttitor','','publish','open','open','','curabitur-arcu-erat-accumsan-id-imperdiet-et-porttitor-2','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/curabitur-arcu-erat-accumsan-id-imperdiet-et-porttitor-2/',0,'post','',0),(21,1,'2022-08-24 00:12:55','2022-08-24 00:12:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"65px\" margin_bottom_small=\"35px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" spacing_left=\"0%\" spacing_right=\"0%\" margin_bottom=\"65px\" margin_bottom_small=\"50px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe src=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800%22%20height%3D%22600%22%20viewBox%3D%220%200%20800%20600%22%3E%3Crect%20fill%3D%22%23fcefbd%22%20width%3D%22800%22%20height%3D%22600%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E800%C3%97600%3C%2Ftext%3E%3C%2Fsvg%3E\"][/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_right=\"60px\" padding_left=\"60px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Lexend\" font_size=\"20px\" line_height=\"32px\" fusion_font_variant_text_font=\"300\"]Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus. Praesent eu turpis ac mauris commodo interdum enim enim, bibendum a nisi vel.rnrnDonec sed mauris et ante tincidunt blandit. Sed quis tristique velit. Donec at convallis leo. Fusce semper hendrerit velit, ac lobortis elit aliquet nec. Mauris vehicula purus nunc, vel finibus velit ornare a. Proin cursus ullamcorper massa, nec laoreet justo malesuada vitae. Praesent dictum ultrices erat, eu rhoncus dolor ultrices ac. Duis accumsan vestibulum nunc quis pellentesque.rnrnIn ornare faucibus lacus, consequat ultrices arcu iaculis vitae. Suspendisse laoreet vel eros sit amet mollis. Aliquam erat volutpat.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Proin eget tortor risus praesent sapien massa','','publish','open','open','','proin-eget-tortor-risus-praesent-sapien-massa','','','2022-08-24 00:12:55','2022-08-24 00:12:55','',0,'https://test-site.wlvrotary.org/2022/08/24/proin-eget-tortor-risus-praesent-sapien-massa/',0,'post','',0),(22,1,'2022-08-24 00:12:59','2022-08-24 00:12:59','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\" gradient_start_position=\"0\" gradient_end_position=\"70\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"152\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"multiply\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"9vw\" padding_bottom=\"0px\" padding_top_small=\"70px\" padding_right_small=\"40px\" padding_bottom_small=\"70px\" padding_left_small=\"40px\" border_color=\"var(--awb-color1)\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color5)\" link_hover_color=\"var(--awb-color5)\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" min_height=\"calc(100vh - 100px)\" admin_label=\"Homepage - Hero\" admin_toggled=\"yes\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"85px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" fusion_font_variant_title_font=\"300\" content_align=\"center\" line_height=\"60px\" margin_bottom=\"30px\" margin_top=\"0\" margin_right=\"15%\" margin_left=\"15%\" sep_color=\"var(--awb-color3)\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color1)\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" margin_left_small=\"0\" margin_right_small=\"0\" font_size=\"45px\"]\r\n<p>Our Applications Cover Diverse Corporate Markets</p>\r\n[/fusion_title][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" content_align=\"center\" margin_bottom=\"30px\" margin_bottom_small=\"10px\" margin_top=\"0\" margin_top_small=\"10px\" margin_right=\"15%\" margin_right_small=\"0px\" margin_left=\"15%\" margin_left_small=\"0px\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color1)\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"var(--awb-color3)\"]\r\n<p>Our Applications Cover Diverse Corporate Markets</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"var(--awb-color1)\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\"]\r\n<p>Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"7.5vw\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"row\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"default\" icon_divider=\"no\" icon_position=\"left\" link=\"#\" margin_right=\"30px\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_top_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\" button_gradient_top_color=\"var(--awb-color5)\" button_gradient_bottom_color=\"var(--awb-color5)\"]Get started today[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_top_color=\"var(--awb-color8)\" icon_divider=\"no\" icon_position=\"right\" link=\"#\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 20% ))\" button_gradient_top_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 20% ))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color8)\"]Discover more[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"big-half-circle\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"12vw\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_bottom_medium=\"0px\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" margin_bottom_small=\"0\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" icon_divider=\"no\" icon_position=\"left\" link=\"https://avada.theme-fusion.com/classic/contact-us/\" margin_bottom=\"20px\" margin_right=\"30px\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Get started today[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color=\"var(--awb-color8)\" icon_divider=\"no\" icon_position=\"right\" link=\"https://avada.theme-fusion.com/classic/about/\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_gradient_top_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Discover more[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" type=\"flex\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" flex_justify_content=\"center\" animation_direction=\"up\" animation_speed=\"1.3\" admin_label=\"Homepage - Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_bottom=\"140px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_1\" spacing=\"yes\" center_content=\"no\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" margin_top=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" first=\"true\" align_self=\"flex-start\" margin_bottom=\"40px\" type_medium=\"4_5\" background_blend_mode=\"overlay\" link=\"\"][fusion_title content_align=\"center\" size=\"2\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]Our Software Is Quick, Lean, and Market-Focused.[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\"]Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et phasellus ac nibh.[/fusion_text][fusion_separator style_type=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" top_margin=\"15px\" alignment=\"center\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"55px\" last=\"true\" border_position=\"all\" first=\"true\" background_blend_mode=\"overlay\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"2\" bottom_margin=\"0\" top_margin=\"0\" sep_color=\"var(--awb-color2)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" spacing=\"15px\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"51\" box_shadow_spread=\"3\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 85% ))\" animation_direction=\"left\" animation_speed=\"0.3\" first=\"true\" last=\"false\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"10px\" background_blend_mode=\"overlay\" type_medium=\"1_3\" margin_bottom=\"0px\" margin_bottom_medium=\"80px\" spacing_right=\"7.5px\" padding_right=\"20px\" padding_left=\"20px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bolt fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circlebordersize=\"0\" alignment=\"center\" margin_bottom=\"15px\" size=\"40\" /][fusion_title content_align=\"center\" size=\"4\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"10px\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]\r\n<p>Update Deployment</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\" content_alignment=\"center\"]\r\n<p>Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" spacing=\"15px\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"51\" box_shadow_spread=\"3\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 85% ))\" animation_direction=\"left\" animation_speed=\"0.3\" first=\"false\" last=\"false\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"10px\" background_blend_mode=\"overlay\" type_medium=\"1_3\" margin_bottom=\"0px\" margin_bottom_medium=\"80px\" spacing_right=\"7.5px\" spacing_left=\"7.5px\" padding_right=\"20px\" padding_left=\"20px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-chart-line fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circlebordersize=\"0\" alignment=\"center\" margin_bottom=\"15px\" size=\"40\" /][fusion_title content_align=\"center\" size=\"4\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" margin_bottom=\"10px\" sep_color=\"var(--awb-color3)\"]Fully Configurable[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\"]\r\n<p>Donec rutrum congue leo eget malesuada. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" spacing=\"15px\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"51\" box_shadow_spread=\"3\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 85% ))\" animation_direction=\"left\" animation_speed=\"0.3\" first=\"false\" last=\"true\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"10px\" background_blend_mode=\"overlay\" type_medium=\"1_3\" margin_bottom=\"0px\" margin_bottom_medium=\"80px\" spacing_left=\"7.5px\" padding_right=\"20px\" padding_left=\"20px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-marker fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circlebordersize=\"0\" alignment=\"center\" margin_bottom=\"15px\" size=\"40\" /][fusion_title content_align=\"center\" size=\"4\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"10px\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]White Label[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\"]Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Cras ultricies ligula sed magna.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\" gradient_start_position=\"0\" gradient_end_position=\"70\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"152\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"multiply\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"160px\" padding_bottom=\"160px\" padding_top_small=\"70px\" padding_right_small=\"40px\" padding_bottom_small=\"70px\" padding_left_small=\"40px\" border_color=\"var(--awb-color1)\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color5)\" link_hover_color=\"var(--awb-color5)\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" min_height=\"calc(100vh - 100px)\" admin_label=\"Homepage - Hero\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" fusion_font_variant_title_font=\"300\" content_align=\"center\" line_height=\"60px\" margin_bottom=\"30px\" margin_top=\"0\" margin_right=\"15%\" margin_left=\"15%\" sep_color=\"var(--awb-color3)\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color1)\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" margin_left_small=\"0\" margin_right_small=\"0\" font_size=\"45px\"]\r\n<p>Our Applications Cover Diverse Corporate Markets</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"e30=\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" sep_color=\"var(--awb-color3)\"]Join Thousands Of Happy Customers[/fusion_title][fusion_text text_color=\"var(--awb-color1)\" content_alignment=\"center\" margin_bottom=\"40px\" font_size=\"22px\"]\r\n<p>Through Creativity, Integrity &amp; Innovation</p>\r\n[/fusion_text][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"default\" button_gradient_bottom_color=\"var(--awb-color5)\" button_gradient_top_color=\"var(--awb-color5)\" icon_divider=\"no\" icon_position=\"left\" link=\"#\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_top_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\" alignment=\"center\" font_size=\"18px\"]Get started today[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"12vw\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_bottom_medium=\"0px\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" margin_bottom_small=\"0\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" icon_divider=\"no\" icon_position=\"left\" link=\"https://avada.theme-fusion.com/classic/contact-us/\" margin_bottom=\"20px\" margin_right=\"30px\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Get started today[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color=\"var(--awb-color8)\" icon_divider=\"no\" icon_position=\"right\" link=\"https://avada.theme-fusion.com/classic/about/\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_gradient_top_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Discover more[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"120px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" margin_bottom_medium=\"80px\" padding_top_small=\"0px\" margin_bottom_small=\"60px\" admin_label=\"Homepage - Services\" admin_toggled=\"yes\" padding_bottom=\"120\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"68\" type=\"68\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"static\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_title content_align=\"center\" size=\"2\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]Why Choose Our Services?[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" text_color=\"var(--awb-color8)\"]\r\n<p>Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Donec sollicitudin molestie malesuada.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" background_color=\"var(--awb-color4)\" gradient_start_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc( var(--awb-color4-a) - 29% ))\" gradient_end_color=\"var(--awb-color4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" background_position=\"left center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" margin_bottom=\"0px\" margin_bottom_small=\"0px\" spacing=\"4%\" spacing_right=\"0\" padding_top=\"70px\" padding_right=\"70px\" padding_bottom=\"70px\" padding_left=\"70px\" padding_top_small=\"36px\" padding_right_small=\"36px\" padding_bottom_small=\"36px\" padding_left_small=\"36px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" margin_bottom=\"0\" margin_bottom_medium=\"50px\" sep_color=\"var(--awb-color3)\"]\r\n<p>Avada Is Backed By An A-List Team Of Corporate Investors</p>\r\n[/fusion_title][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-accountant-arrow\" icon_divider=\"no\" icon_position=\"right\" link=\"#\" margin_bottom=\"0\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"28px\" padding_right=\"35px\" padding_bottom=\"28px\" padding_left=\"35px\" font_size=\"20px\" line_height=\"18px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Investor stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"94\" gradient_end_position=\"84\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"135\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_top_small=\"36px\" padding_right_small=\"36px\" padding_bottom_small=\"36px\" padding_left_small=\"36px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" background_color=\"var(--awb-color8)\" spacing_left=\"0\" gradient_start_color=\"rgba(248,249,250,0)\" gradient_end_color=\"rgba(248,249,250,0)\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" text_color=\"var(--awb-color1)\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"var(--awb-color3)\" rule_size=\"1\" rule_style=\"default\"]\r\n<p>Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Sed porttitor lectus nibh. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.</p>\r\n[/fusion_text][fusion_separator hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" alignment=\"center\" bottom_margin=\"10%\" border_size=\"0\" flex_grow=\"1\" icon_size=\"16\" icon_color=\"var(--awb-color3)\" icon_circle=\"1\" sep_color=\"var(--awb-color3)\" style_type=\"default\" top_margin=\"10%\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circlecolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" textcolor=\"var(--awb-color1)\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>Nulla porttitor accumsan tincidunt.</p>\r\n[/fusion_li_item][fusion_li_item]Curabitur arcu erat, accumsan id imperdiet.[/fusion_li_item][fusion_li_item]Pellentesque in ipsum id orci porta.[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_aspect_ratio=\"16:9\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" flex_column_spacing=\"0px\" type=\"flex\" animation_direction=\"static\" animation_speed=\"1.3\" admin_label=\"Homepage - Full Width Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" margin_top=\"0px\" margin_bottom=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"yes\" hover_type=\"none\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" padding_top=\"10vw\" padding_right=\"10vw\" padding_bottom=\"10vw\" padding_left=\"10vw\" margin_bottom=\"0px\" animation_direction=\"down\" animation_speed=\"0.1\" last=\"false\" first=\"true\" align_content=\"center\" spacing_right=\"0px\" background_color=\"var(--awb-color2)\" type_medium=\"1_2\" background_blend_mode=\"overlay\" margin_top=\"0px\" min_height=\"\" link=\"\"][fusion_text fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_color=\"var(--awb-color6)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"25px\" fusion_font_variant_text_font=\"var(--awb-typography5)\"]\r\n<p>Ensuring Your Systems Are Functional</p>\r\n[/fusion_text][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\"]\r\n<p>Our Software is quick, lean, and market-focused.</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"var(--awb-color8)\"]\r\n<p>Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et phasellus ac nibh eleifend.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"no\" hover_type=\"zoomin\" link=\"https://bit.ly/2wVX4yE\" hide_on_mobile=\"no\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 10% ),var(--awb-color8-a))\" background_position=\"center center\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" margin_bottom=\"0px\" animation_direction=\"right\" animation_speed=\"0.5\" last=\"true\" element_content=\"\" first=\"false\" spacing_left=\"0px\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" type_medium=\"1_2\" background_blend_mode=\"none\" margin_top=\"0px\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_aspect_ratio=\"16:9\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" flex_column_spacing=\"0px\" type=\"flex\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" animation_direction=\"static\" animation_speed=\"1.3\" admin_label=\"Homepage - Full Width Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" margin_top=\"0px\" margin_bottom=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"no\" hover_type=\"zoomin\" link=\"https://bit.ly/2wVX4yE\" hide_on_mobile=\"no\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 10% ),var(--awb-color8-a))\" background_position=\"center center\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" margin_bottom=\"0px\" animation_direction=\"left\" animation_speed=\"0.5\" last=\"false\" element_content=\"\" first=\"true\" spacing_right=\"0px\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" type_medium=\"1_2\" order_small=\"1\" background_blend_mode=\"none\" margin_top=\"0px\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"yes\" hover_type=\"none\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" padding_top=\"10vw\" padding_right=\"10vw\" padding_bottom=\"10vw\" padding_left=\"10vw\" margin_bottom=\"0px\" animation_direction=\"down\" animation_speed=\"0.1\" last=\"false\" first=\"true\" align_content=\"center\" spacing_right=\"0px\" background_color=\"var(--awb-color2)\" type_medium=\"1_2\" background_blend_mode=\"overlay\" margin_top=\"0px\" min_height=\"\" link=\"\"][fusion_text fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_color=\"var(--awb-color6)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" fusion_font_variant_text_font=\"var(--awb-typography5)\" margin_bottom=\"25px\"]\r\n<p>Ensuring Your Systems Are Functional</p>\r\n[/fusion_text][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\"]\r\n<p>Avada is the perfect choice for your business software needs.</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"var(--awb-color8)\"]\r\n<p>Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et phasellus ac nibh eleifend.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" background_position=\"left top\" border_style=\"solid\" spacing=\"yes\" background_repeat=\"no-repeat\" margin_top=\"-1px\" margin_bottom=\"0px\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"true\" hover_type=\"none\" border_position=\"all\" first=\"true\" align_self=\"flex-start\" order_small=\"2\" background_blend_mode=\"overlay\" link=\"\"][fusion_button link=\"#\" target=\"_blank\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"customButton\" color=\"custom\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"up\" animation_speed=\"0.8\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"35px\" padding_bottom=\"35px\" font_size=\"18px\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\"]Read More About Us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" type=\"flex\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" flex_justify_content=\"center\" animation_direction=\"up\" animation_speed=\"1.3\" admin_label=\"Homepage - Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" padding_top=\"120px\" padding_bottom=\"120px\" link_hover_color=\"var(--awb-color5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"row\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"40px\" margin_bottom=\"40px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Latest News</p>\r\n[/fusion_title][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 100%))\" button_gradient_bottom_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 100%))\" button_gradient_top_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" accent_color=\"var(--awb-color5)\" accent_hover_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\" icon=\"fa-arrow-right fas\" border_color=\"var(--awb-color5)\" border_hover_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\"]Read All Articles[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"23\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\"  out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"50\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home','','publish','closed','closed','','home','','','2022-08-24 00:13:00','2022-08-24 00:13:00','',0,'https://test-site.wlvrotary.org/home/',0,'page','',0),(23,1,'2022-08-24 00:13:00','2022-08-24 00:13:00','[fusion_builder_column type=\"1_1\" layout=\"1_1\" hide_on_mobile=\"small-visibility, medium-visibility, large-visibility\" background_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"overlay\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"6\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 89%))\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"2\" margin_top=\"0px\" margin_bottom=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"40px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" element_content=\"\" dynamic_params=\"e30=\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"2-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"49% 53%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9LCJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9LCJjYXB0aW9uX3RleHQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsIiwibGluayI6Im5vIn19\" margin_bottom=\"40px\" caption_overlay_color=\"var(--awb-color8)\" caption_title_color=\"var(--awb-color1)\" caption_text=\"Continue Reading\" caption_text_color=\"var(--awb-color1)\" caption_title=\" \" caption_background_color=\"var(--awb-color5)\" /][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"0\" margin_left=\"30px\" margin_right=\"30px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsICIsImxpbmsiOiJ5ZXMifX0=\" fusion_font_variant_text_font=\"400\"]Your Content Goes Here[/fusion_text][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"40px\" margin_right_small=\"30px\" margin_left=\"30px\" margin_left_small=\"30px\" size=\"5\" style_type=\"default\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\"]Your Content Goes Here[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"2\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"0\" /][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color5)\" accent_hover_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\" color=\"custom\" button_gradient_bottom_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_top_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" icon_divider=\"no\" icon_position=\"left\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"var(--awb-typography3-text-transform)\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"13px\" padding_right=\"29px\" padding_bottom=\"0\" padding_left=\"30px\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" fusion_font_family_button_font=\"var(--awb-typography3-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography3)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"4px\" border_radius_top_right=\"4px\" border_radius_bottom_right=\"4px\" border_radius_bottom_left=\"4px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_top_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_accent_color=\"#fcfcfc\" button_accent_hover_color=\"#fcfcfc\" button_bevel_color=\"#5db072\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" border_color=\"var(--awb-color5)\" border_hover_color=\"var(--awb-color4)\"]Continue reading[/fusion_button][/fusion_builder_column]','Starter Blog Post Card 2288 (P)','','publish','closed','closed','','starter-blog-post-card-2288-p','','','2022-08-24 00:13:06','2022-08-24 00:13:06','',0,'https://test-site.wlvrotary.org/fusion_element/starter-blog-post-card-2288-p/',0,'fusion_element','',0),(24,1,'2022-08-24 00:13:00','2022-08-24 00:13:00','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\" gradient_start_position=\"0\" gradient_end_position=\"70\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"152\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"multiply\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"9vw\" padding_bottom=\"0px\" padding_top_small=\"70px\" padding_right_small=\"40px\" padding_bottom_small=\"70px\" padding_left_small=\"40px\" border_color=\"var(--awb-color1)\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color5)\" link_hover_color=\"var(--awb-color5)\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" min_height=\"calc(100vh - 100px)\" admin_label=\"Homepage - Hero\" admin_toggled=\"yes\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"85px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" fusion_font_variant_title_font=\"300\" content_align=\"center\" line_height=\"60px\" margin_bottom=\"30px\" margin_top=\"0\" margin_right=\"15%\" margin_left=\"15%\" sep_color=\"var(--awb-color3)\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color1)\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" margin_left_small=\"0\" margin_right_small=\"0\" font_size=\"45px\"]\r\n<p>Our Applications Cover Diverse Corporate Markets</p>\r\n[/fusion_title][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" content_align=\"center\" margin_bottom=\"30px\" margin_bottom_small=\"10px\" margin_top=\"0\" margin_top_small=\"10px\" margin_right=\"15%\" margin_right_small=\"0px\" margin_left=\"15%\" margin_left_small=\"0px\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color1)\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"var(--awb-color3)\"]\r\n<p>Our Applications Cover Diverse Corporate Markets</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"var(--awb-color1)\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\"]\r\n<p>Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"7.5vw\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"row\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"default\" icon_divider=\"no\" icon_position=\"left\" link=\"#\" margin_right=\"30px\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_top_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\" button_gradient_top_color=\"var(--awb-color5)\" button_gradient_bottom_color=\"var(--awb-color5)\"]Get started today[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_top_color=\"var(--awb-color8)\" icon_divider=\"no\" icon_position=\"right\" link=\"#\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 20% ))\" button_gradient_top_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 20% ))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color8)\"]Discover more[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"big-half-circle\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"12vw\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_bottom_medium=\"0px\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" margin_bottom_small=\"0\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" icon_divider=\"no\" icon_position=\"left\" link=\"https://avada.theme-fusion.com/classic/contact-us/\" margin_bottom=\"20px\" margin_right=\"30px\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Get started today[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color=\"var(--awb-color8)\" icon_divider=\"no\" icon_position=\"right\" link=\"https://avada.theme-fusion.com/classic/about/\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_gradient_top_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Discover more[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" type=\"flex\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" flex_justify_content=\"center\" animation_direction=\"up\" animation_speed=\"1.3\" admin_label=\"Homepage - Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_bottom=\"140px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_1\" spacing=\"yes\" center_content=\"no\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" margin_top=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" first=\"true\" align_self=\"flex-start\" margin_bottom=\"40px\" type_medium=\"4_5\" background_blend_mode=\"overlay\" link=\"\"][fusion_title content_align=\"center\" size=\"2\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]Our Software Is Quick, Lean, and Market-Focused.[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\"]Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et phasellus ac nibh.[/fusion_text][fusion_separator style_type=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" top_margin=\"15px\" alignment=\"center\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"55px\" last=\"true\" border_position=\"all\" first=\"true\" background_blend_mode=\"overlay\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"2\" bottom_margin=\"0\" top_margin=\"0\" sep_color=\"var(--awb-color2)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" spacing=\"15px\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"51\" box_shadow_spread=\"3\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 85% ))\" animation_direction=\"left\" animation_speed=\"0.3\" first=\"true\" last=\"false\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"10px\" background_blend_mode=\"overlay\" type_medium=\"1_3\" margin_bottom=\"0px\" margin_bottom_medium=\"80px\" spacing_right=\"7.5px\" padding_right=\"20px\" padding_left=\"20px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bolt fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circlebordersize=\"0\" alignment=\"center\" margin_bottom=\"15px\" size=\"40\" /][fusion_title content_align=\"center\" size=\"4\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"10px\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]\r\n<p>Update Deployment</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\" content_alignment=\"center\"]\r\n<p>Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" spacing=\"15px\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"51\" box_shadow_spread=\"3\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 85% ))\" animation_direction=\"left\" animation_speed=\"0.3\" first=\"false\" last=\"false\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"10px\" background_blend_mode=\"overlay\" type_medium=\"1_3\" margin_bottom=\"0px\" margin_bottom_medium=\"80px\" spacing_right=\"7.5px\" spacing_left=\"7.5px\" padding_right=\"20px\" padding_left=\"20px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-chart-line fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circlebordersize=\"0\" alignment=\"center\" margin_bottom=\"15px\" size=\"40\" /][fusion_title content_align=\"center\" size=\"4\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" margin_bottom=\"10px\" sep_color=\"var(--awb-color3)\"]Fully Configurable[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\"]\r\n<p>Donec rutrum congue leo eget malesuada. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" spacing=\"15px\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_style=\"solid\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"51\" box_shadow_spread=\"3\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 85% ))\" animation_direction=\"left\" animation_speed=\"0.3\" first=\"false\" last=\"true\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"10px\" background_blend_mode=\"overlay\" type_medium=\"1_3\" margin_bottom=\"0px\" margin_bottom_medium=\"80px\" spacing_left=\"7.5px\" padding_right=\"20px\" padding_left=\"20px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-marker fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circlebordersize=\"0\" alignment=\"center\" margin_bottom=\"15px\" size=\"40\" /][fusion_title content_align=\"center\" size=\"4\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"10px\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]White Label[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\"]Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Cras ultricies ligula sed magna.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\" gradient_start_position=\"0\" gradient_end_position=\"70\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"152\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"multiply\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"160px\" padding_bottom=\"160px\" padding_top_small=\"70px\" padding_right_small=\"40px\" padding_bottom_small=\"70px\" padding_left_small=\"40px\" border_color=\"var(--awb-color1)\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color5)\" link_hover_color=\"var(--awb-color5)\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" min_height=\"calc(100vh - 100px)\" admin_label=\"Homepage - Hero\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" fusion_font_variant_title_font=\"300\" content_align=\"center\" line_height=\"60px\" margin_bottom=\"30px\" margin_top=\"0\" margin_right=\"15%\" margin_left=\"15%\" sep_color=\"var(--awb-color3)\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color1)\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" margin_left_small=\"0\" margin_right_small=\"0\" font_size=\"45px\"]\r\n<p>Our Applications Cover Diverse Corporate Markets</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"e30=\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" sep_color=\"var(--awb-color3)\"]Join Thousands Of Happy Customers[/fusion_title][fusion_text text_color=\"var(--awb-color1)\" content_alignment=\"center\" margin_bottom=\"40px\" font_size=\"22px\"]\r\n<p>Through Creativity, Integrity &amp; Innovation</p>\r\n[/fusion_text][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"default\" button_gradient_bottom_color=\"var(--awb-color5)\" button_gradient_top_color=\"var(--awb-color5)\" icon_divider=\"no\" icon_position=\"left\" link=\"#\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_top_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\" alignment=\"center\" font_size=\"18px\"]Get started today[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"12vw\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_bottom_medium=\"0px\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" margin_bottom_small=\"0\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" icon_divider=\"no\" icon_position=\"left\" link=\"https://avada.theme-fusion.com/classic/contact-us/\" margin_bottom=\"20px\" margin_right=\"30px\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Get started today[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color=\"var(--awb-color8)\" icon_divider=\"no\" icon_position=\"right\" link=\"https://avada.theme-fusion.com/classic/about/\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_right=\"55px\" padding_bottom=\"20px\" padding_left=\"55px\" font_size=\"20px\" line_height=\"26px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_gradient_top_color_hover=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 40% ))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Discover more[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"120px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" margin_bottom_medium=\"80px\" padding_top_small=\"0px\" margin_bottom_small=\"60px\" admin_label=\"Homepage - Services\" admin_toggled=\"yes\" padding_bottom=\"120\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"68\" type=\"68\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"static\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_title content_align=\"center\" size=\"2\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" sep_color=\"var(--awb-color3)\"]Why Choose Our Services?[/fusion_title][fusion_text margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" text_color=\"var(--awb-color8)\"]\r\n<p>Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Donec sollicitudin molestie malesuada.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" background_color=\"var(--awb-color4)\" gradient_start_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc( var(--awb-color4-a) - 29% ))\" gradient_end_color=\"var(--awb-color4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" background_position=\"left center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" margin_bottom=\"0px\" margin_bottom_small=\"0px\" spacing=\"4%\" spacing_right=\"0\" padding_top=\"70px\" padding_right=\"70px\" padding_bottom=\"70px\" padding_left=\"70px\" padding_top_small=\"36px\" padding_right_small=\"36px\" padding_bottom_small=\"36px\" padding_left_small=\"36px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\" margin_bottom=\"0\" margin_bottom_medium=\"50px\" sep_color=\"var(--awb-color3)\"]\r\n<p>Avada Is Backed By An A-List Team Of Corporate Investors</p>\r\n[/fusion_title][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-accountant-arrow\" icon_divider=\"no\" icon_position=\"right\" link=\"#\" margin_bottom=\"0\" stretch=\"yes\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"none\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"28px\" padding_right=\"35px\" padding_bottom=\"28px\" padding_left=\"35px\" font_size=\"20px\" line_height=\"18px\" letter_spacing=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"var(--awb-color4)\"]Investor stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"94\" gradient_end_position=\"84\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"135\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_top_small=\"36px\" padding_right_small=\"36px\" padding_bottom_small=\"36px\" padding_left_small=\"36px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" background_color=\"var(--awb-color8)\" spacing_left=\"0\" gradient_start_color=\"rgba(248,249,250,0)\" gradient_end_color=\"rgba(248,249,250,0)\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" text_color=\"var(--awb-color1)\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"var(--awb-color3)\" rule_size=\"1\" rule_style=\"default\"]\r\n<p>Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Sed porttitor lectus nibh. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.</p>\r\n[/fusion_text][fusion_separator hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" alignment=\"center\" bottom_margin=\"10%\" border_size=\"0\" flex_grow=\"1\" icon_size=\"16\" icon_color=\"var(--awb-color3)\" icon_circle=\"1\" sep_color=\"var(--awb-color3)\" style_type=\"default\" top_margin=\"10%\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circlecolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" textcolor=\"var(--awb-color1)\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>Nulla porttitor accumsan tincidunt.</p>\r\n[/fusion_li_item][fusion_li_item]Curabitur arcu erat, accumsan id imperdiet.[/fusion_li_item][fusion_li_item]Pellentesque in ipsum id orci porta.[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_aspect_ratio=\"16:9\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" flex_column_spacing=\"0px\" type=\"flex\" animation_direction=\"static\" animation_speed=\"1.3\" admin_label=\"Homepage - Full Width Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" margin_top=\"0px\" margin_bottom=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"yes\" hover_type=\"none\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" padding_top=\"10vw\" padding_right=\"10vw\" padding_bottom=\"10vw\" padding_left=\"10vw\" margin_bottom=\"0px\" animation_direction=\"down\" animation_speed=\"0.1\" last=\"false\" first=\"true\" align_content=\"center\" spacing_right=\"0px\" background_color=\"var(--awb-color2)\" type_medium=\"1_2\" background_blend_mode=\"overlay\" margin_top=\"0px\" min_height=\"\" link=\"\"][fusion_text fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_color=\"var(--awb-color6)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"25px\" fusion_font_variant_text_font=\"var(--awb-typography5)\"]\r\n<p>Ensuring Your Systems Are Functional</p>\r\n[/fusion_text][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\"]\r\n<p>Our Software is quick, lean, and market-focused.</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"var(--awb-color8)\"]\r\n<p>Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et phasellus ac nibh eleifend.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"no\" hover_type=\"zoomin\" link=\"https://bit.ly/2wVX4yE\" hide_on_mobile=\"no\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 10% ),var(--awb-color8-a))\" background_position=\"center center\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" margin_bottom=\"0px\" animation_direction=\"right\" animation_speed=\"0.5\" last=\"true\" element_content=\"\" first=\"false\" spacing_left=\"0px\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" type_medium=\"1_2\" background_blend_mode=\"none\" margin_top=\"0px\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_aspect_ratio=\"16:9\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" flex_column_spacing=\"0px\" type=\"flex\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" animation_direction=\"static\" animation_speed=\"1.3\" admin_label=\"Homepage - Full Width Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" margin_top=\"0px\" margin_bottom=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"no\" hover_type=\"zoomin\" link=\"https://bit.ly/2wVX4yE\" hide_on_mobile=\"no\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 10% ),var(--awb-color8-a))\" background_position=\"center center\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" margin_bottom=\"0px\" animation_direction=\"left\" animation_speed=\"0.5\" last=\"false\" element_content=\"\" first=\"true\" spacing_right=\"0px\" background_image=\"data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221067%22%20height%3D%22667%22%20viewBox%3D%220%200%201067%20667%22%3E%3Crect%20fill%3D%22%23808080%22%20width%3D%221067%22%20height%3D%22667%22%2F%3E%3Ctext%20fill%3D%22rgba%28255%2C255%2C255%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E1067%C3%97667%3C%2Ftext%3E%3C%2Fsvg%3E\" type_medium=\"1_2\" order_small=\"1\" background_blend_mode=\"none\" margin_top=\"0px\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" spacing=\"no\" center_content=\"yes\" hover_type=\"none\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" border_style=\"solid\" border_position=\"all\" padding_top=\"10vw\" padding_right=\"10vw\" padding_bottom=\"10vw\" padding_left=\"10vw\" margin_bottom=\"0px\" animation_direction=\"down\" animation_speed=\"0.1\" last=\"false\" first=\"true\" align_content=\"center\" spacing_right=\"0px\" background_color=\"var(--awb-color2)\" type_medium=\"1_2\" background_blend_mode=\"overlay\" margin_top=\"0px\" min_height=\"\" link=\"\"][fusion_text fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_color=\"var(--awb-color6)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" fusion_font_variant_text_font=\"var(--awb-typography5)\" margin_bottom=\"25px\"]\r\n<p>Ensuring Your Systems Are Functional</p>\r\n[/fusion_text][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" text_color=\"var(--awb-color8)\"]\r\n<p>Avada is the perfect choice for your business software needs.</p>\r\n[/fusion_title][fusion_text margin_bottom=\"0\" text_color=\"var(--awb-color8)\"]\r\n<p>Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et phasellus ac nibh eleifend.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" background_position=\"left top\" border_style=\"solid\" spacing=\"yes\" background_repeat=\"no-repeat\" margin_top=\"-1px\" margin_bottom=\"0px\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"true\" hover_type=\"none\" border_position=\"all\" first=\"true\" align_self=\"flex-start\" order_small=\"2\" background_blend_mode=\"overlay\" link=\"\"][fusion_button link=\"#\" target=\"_blank\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"customButton\" color=\"custom\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"up\" animation_speed=\"0.8\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"35px\" padding_bottom=\"35px\" font_size=\"18px\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\"]Read More About Us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" type=\"flex\" margin_bottom_medium=\"80px\" margin_bottom_small=\"60px\" flex_justify_content=\"center\" animation_direction=\"up\" animation_speed=\"1.3\" admin_label=\"Homepage - Info\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" padding_top=\"120px\" padding_bottom=\"120px\" link_hover_color=\"var(--awb-color5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"row\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"40px\" margin_bottom=\"40px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Latest News</p>\r\n[/fusion_title][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 100%))\" button_gradient_bottom_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 100%))\" button_gradient_top_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" accent_color=\"var(--awb-color5)\" accent_hover_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\" icon=\"fa-arrow-right fas\" border_color=\"var(--awb-color5)\" border_hover_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\"]Read All Articles[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"23\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\"  out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"50\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home','','inherit','closed','closed','','22-revision-v1','','','2022-08-24 00:13:00','2022-08-24 00:13:00','',22,'https://test-site.wlvrotary.org/?p=24',0,'revision','',0),(26,1,'2022-08-24 00:13:01','2022-08-24 00:13:01','[fusion_builder_column type=\"1_1\" layout=\"1_1\" element_content=\"\" first=\"true\" last=\"true\" hover_type=\"none\" border_position=\"all\" background_blend_mode=\"overlay\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"5_6\" layout=\"5_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"-110px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"published_date\" layout=\"floated\" read_time=\"200\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" text_color=\"var(--awb-color1)\" link_color=\"var(--awb-color1)\" text_hover_color=\"var(--awb-color1)\" background_color=\"rgba(98,188,120,0)\" item_background_color=\"var(--awb-color5)\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" item_padding_top=\"10px\" item_padding_right=\"10px\" item_padding_bottom=\"10px\" item_padding_left=\"10px\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_post_card_image layout=\"static\" show_title=\"yes\" show_cats=\"yes\" show_price=\"yes\" show_rating=\"yes\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"15px\" aspect_ratio=\"custom\" custom_aspect_ratio=\"70\" aspect_ratio_position=\"49% 31%\" /][fusion_builder_row_inner][fusion_builder_column_inner type=\"87\" layout=\"5_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" padding_top=\"70px\" padding_right=\"70px\" padding_bottom=\"0px\" padding_left=\"70px\" margin_top=\"-80px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_medium=\"55px\" padding_right_medium=\"55px\" padding_left_medium=\"50px\" margin_top_small=\"0\" padding_top_small=\"30px\" padding_right_small=\"30px\" padding_left_small=\"30px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" link_color=\"var(--awb-color8)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" margin_bottom=\"30px\"]Your Content Goes Here[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\" margin_right=\"4vw\"]Your Content Goes Here[/fusion_text][fusion_button target=\"_self\" color=\"custom\" button_gradient_top_color=\"rgba(241,246,255,0)\" button_gradient_bottom_color=\"rgba(241,246,255,0)\" button_gradient_top_color_hover=\"rgba(0,87,255,0)\" button_gradient_bottom_color_hover=\"rgba(0,87,255,0)\" accent_hover_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 15%))\" size=\"xlarge\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" margin_left=\"-35px\" border_hover_color=\"var(--awb-color4)\" accent_color=\"var(--awb-color5)\" border_color=\"var(--awb-color5)\"]Continue reading[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','Starter Blog Post Card 2238 (P)','','publish','closed','closed','','starter-blog-post-card-2238-p','','','2022-08-24 00:13:01','2022-08-24 00:13:01','',0,'https://test-site.wlvrotary.org/fusion_element/starter-blog-post-card-2238-p/',0,'fusion_element','',0),(27,1,'2022-08-24 00:13:02','2022-08-24 00:13:02','[fusion_builder_column type=\"1_1\" layout=\"1_1\" hide_on_mobile=\"small-visibility, medium-visibility, large-visibility\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"overlay\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"6\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 89%))\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"2\" margin_top=\"0px\" margin_bottom=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" element_content=\"\" dynamic_params=\"e30=\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"16-9\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"50% 52%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9LCJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9LCJjYXB0aW9uX3RleHQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsIiwibGluayI6Im5vIn19\" margin_bottom=\"25px\" caption_overlay_color=\"var(--awb-color8)\" caption_title_color=\"var(--awb-color1)\" caption_text=\"Continue Reading\" caption_text_color=\"var(--awb-color1)\" caption_title=\" \" caption_background_color=\"var(--awb-color5)\" /][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"10px\" margin_right=\"10px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsICIsImxpbmsiOiJ5ZXMifX0=\" fusion_font_variant_text_font=\"400\"]Your Content Goes Here[/fusion_text][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" size=\"5\" style_type=\"default\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" margin_top=\"0\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"2\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"0\" /][/fusion_builder_column]','Starter Blog Post Card 2255 (P)','','publish','closed','closed','','starter-blog-post-card-2255-p','','','2022-08-24 00:13:05','2022-08-24 00:13:05','',0,'https://test-site.wlvrotary.org/fusion_element/starter-blog-post-card-2255-p/',0,'fusion_element','',0),(28,1,'2022-08-24 00:13:02','2022-08-24 00:13:02','[fusion_builder_column type=\"1_1\" layout=\"1_1\" hide_on_mobile=\"small-visibility, medium-visibility, large-visibility\" background_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"overlay\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"6\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 89%))\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"2\" margin_top=\"0px\" margin_bottom=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"40px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" element_content=\"\" dynamic_params=\"e30=\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"2-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"49% 53%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9LCJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9LCJjYXB0aW9uX3RleHQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsIiwibGluayI6Im5vIn19\" margin_bottom=\"40px\" caption_overlay_color=\"var(--awb-color8)\" caption_title_color=\"var(--awb-color1)\" caption_text=\"Continue Reading\" caption_text_color=\"var(--awb-color1)\" caption_title=\" \" caption_background_color=\"var(--awb-color5)\" /][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"0\" margin_left=\"30px\" margin_right=\"30px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsICIsImxpbmsiOiJ5ZXMifX0=\" fusion_font_variant_text_font=\"400\"]Your Content Goes Here[/fusion_text][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"40px\" margin_right_small=\"30px\" margin_left=\"30px\" margin_left_small=\"30px\" size=\"5\" style_type=\"default\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\"]Your Content Goes Here[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"2\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"0\" /][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"var(--awb-color5)\" accent_hover_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\" color=\"custom\" button_gradient_bottom_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_top_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" icon_divider=\"no\" icon_position=\"left\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"var(--awb-typography3-text-transform)\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"13px\" padding_right=\"29px\" padding_bottom=\"0\" padding_left=\"30px\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" fusion_font_family_button_font=\"var(--awb-typography3-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography3)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"4px\" border_radius_top_right=\"4px\" border_radius_bottom_right=\"4px\" border_radius_bottom_left=\"4px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_top_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_accent_color=\"#fcfcfc\" button_accent_hover_color=\"#fcfcfc\" button_bevel_color=\"#5db072\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" border_color=\"var(--awb-color5)\" border_hover_color=\"var(--awb-color4)\"]Continue reading[/fusion_button][/fusion_builder_column]','Starter Blog Post Card 2288 (P)','','inherit','closed','closed','','23-revision-v1','','','2022-08-24 00:13:02','2022-08-24 00:13:02','',23,'https://test-site.wlvrotary.org/?p=28',0,'revision','',0),(29,1,'2022-08-24 00:13:02','2022-08-24 00:13:02','[fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_repeat=\"no-repeat\" margin_top=\"0px\" margin_bottom=\"0px\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" hover_type=\"none\" element_content=\"\" content_layout=\"row\" valign_content=\"center\" align_content=\"space-between\" min_height=\"\" link=\"\" background_blend_mode=\"overlay\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"left\" size=\"6\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifSwiZWxlbWVudF9jb250ZW50Ijp7ImRhdGEiOiJwb3N0X3RpdGxlIiwiaW5jbHVkZV9jb250ZXh0Ijoibm8ifX0=\" margin_right=\"20px\"]Your Content Goes Here[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"6\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InRlcm1fY291bnQiLCJzaW5ndWxhcl90ZXh0IjoiIiwicGx1cmFsX3RleHQiOiIifX0=\"][fusion_highlight background=\"yes\" background_style=\"full\" color=\"\" rounded=\"yes\" text_color=\"var(--awb-color1)\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" class=\"\" id=\"\"]Your Content Goes Here[/fusion_highlight][/fusion_title][/fusion_builder_column]','Starter Category Post Card 2295 (P)','','publish','closed','closed','','starter-category-post-card-2295-p','','','2022-08-24 00:13:02','2022-08-24 00:13:02','',0,'https://test-site.wlvrotary.org/fusion_element/starter-category-post-card-2295-p/',0,'fusion_element','',0),(30,1,'2022-08-24 00:13:03','2022-08-24 00:13:03','[fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_repeat=\"no-repeat\" margin_top=\"0px\" margin_bottom=\"0px\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" hover_type=\"none\" element_content=\"\" content_layout=\"row\" valign_content=\"center\" align_content=\"flex-start\" background_blend_mode=\"overlay\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"30\" layout=\"30\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"20px\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9LCJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" margin_right=\"30px\" aspect_ratio=\"1-1\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"70\" layout=\"70\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZGF0ZSIsInR5cGUiOiIiLCJmb3JtYXQiOiJGIGosIFkifX0=\" font_size=\"13px\" margin_bottom=\"5px\"]Your Content Goes Here[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"left\" size=\"6\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifSwiZWxlbWVudF9jb250ZW50Ijp7ImRhdGEiOiJwb3N0X3RpdGxlIiwiaW5jbHVkZV9jb250ZXh0Ijoibm8ifX0=\" margin_top=\"0\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','Starter Blog Post Card 2296 (P)','','publish','closed','closed','','starter-blog-post-card-2296-p','','','2022-08-24 00:13:03','2022-08-24 00:13:03','',0,'https://test-site.wlvrotary.org/fusion_element/starter-blog-post-card-2296-p/',0,'fusion_element','',0),(32,1,'2022-08-24 00:13:04','2022-08-24 00:13:04','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"84\" gradient_end_position=\"62\" gradient_type=\"radial\" radial_direction=\"center bottom\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_small=\"0px\" margin_top=\"0px\" flex_column_spacing=\"0\" margin_top_small=\"0px\" admin_toggled=\"yes\" background_color=\"var(--awb-color2)\" padding_top=\"100px\" padding_bottom=\"100px\" padding_top_small=\"60px\" padding_bottom_small=\"60px\" padding_top_medium=\"60px\" padding_bottom_medium=\"60px\"][fusion_builder_row][fusion_builder_column type=\"5_6\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 93% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"16\" gradient_end_position=\"55\" gradient_type=\"radial\" radial_direction=\"right top\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZGF0ZSIsInR5cGUiOiIiLCJmb3JtYXQiOiJGIGosIFkifX0=\" margin_top=\"0\" content_alignment=\"center\" fusion_font_variant_text_font=\"400\" margin_bottom=\"0\"]\r\n<p>Date goes here</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_bottom=\"30px\"]\r\n<p>title</p>\r\n[/fusion_title][fusion_breadcrumbs hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog Title Bar (P)','','publish','closed','closed','','blog-title-bar-p','','','2022-08-24 00:13:04','2022-08-24 00:13:04','',0,'https://test-site.wlvrotary.org/fusion_tb_section/blog-title-bar-p/',0,'fusion_tb_section','',0),(33,1,'2022-08-24 00:13:04','2022-08-24 00:13:04','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"84\" gradient_end_position=\"62\" gradient_type=\"radial\" radial_direction=\"center bottom\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_small=\"0px\" margin_top=\"0px\" flex_column_spacing=\"0\" margin_top_small=\"0px\" admin_toggled=\"no\" background_color=\"var(--awb-color2)\" padding_top=\"100px\" padding_bottom=\"100px\" padding_top_small=\"60px\" padding_bottom_small=\"60px\" padding_top_medium=\"60px\" padding_bottom_medium=\"60px\"][fusion_builder_row][fusion_builder_column type=\"5_6\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 93% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"16\" gradient_end_position=\"55\" gradient_type=\"radial\" radial_direction=\"right top\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_bottom=\"20px\"]\r\n\r\ntitle\r\n\r\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"0\" margin_right=\"\" margin_bottom=\"0\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InRlcm1fY291bnQiLCJlbGVtZW50X2NvbnRlbnQiOiI8cD5jb3VudDwvcD4iLCJzaW5ndWxhcl90ZXh0IjoiIGl0ZW0iLCJwbHVyYWxfdGV4dCI6IiBpdGVtcyIsImJlZm9yZSI6IiIsImFmdGVyIjoiIiwiZmFsbGJhY2siOiIifX0=\"]\r\n\r\ncount\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Archives Title Bar (P)','','publish','closed','closed','','archives-title-bar-p','','','2022-08-24 00:13:04','2022-08-24 00:13:04','',0,'https://test-site.wlvrotary.org/fusion_tb_section/archives-title-bar-p/',0,'fusion_tb_section','',0),(34,1,'2022-08-24 00:13:05','2022-08-24 00:13:05','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" border_color=\"var(--awb-color3)\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"up\" animation_speed=\"0.8\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"no\" margin_bottom_small=\"0px\" padding_top_small=\"0px\" padding_top=\"20px\"][fusion_builder_row][fusion_builder_column type=\"23\" layout=\"16\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"23\" margin_top=\"0\" margin_bottom=\"20px\" spacing=\"4%\" animation_direction=\"left\" animation_speed=\"0.8\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" margin_bottom_small=\"0px\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"categories\" layout=\"stacked\" font_size=\"13px\" link_color=\"var(--awb-color1)\" text_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 23% ))\" border_color=\"var(--awb-color3)\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"81\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" border_bottom=\"0px\" border_left=\"0px\" border_right=\"0px\" border_top=\"0px\" read_time=\"200\" item_background_color=\"var(--awb-color5)\" item_border_color=\"var(--awb-color3)\" item_padding_bottom=\"13px\" item_padding_left=\"18px\" item_padding_top=\"13px\" item_margin_bottom=\"20px\" text_color=\"var(--awb-color1)\" item_padding_right=\"18px\" /][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"row\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"10px\" border_sizes_bottom=\"1px\" border_color=\"var(--awb-color3)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImF1dGhvcl9hdmF0YXIifSwibGluayI6eyJkYXRhIjoiYXV0aG9yX3VybCJ9fQ==\" max_width=\"30px\" borderradius=\"50%\" margin_left=\"0\" margin_right=\"10px\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImF1dGhvcl9uYW1lIn19\" font_size=\"14px\" line_height=\"27px\"]Your Content Goes Here[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" content_align=\"left\" margin_bottom=\"-10px\" margin_bottom_small=\"-10px\" margin_top=\"10px\" margin_top_small=\"0\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"div\" style_type=\"default\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" fusion_font_variant_title_font=\"400\"]\r\n<p>Share</p>\r\n[/fusion_title][fusion_sharing hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" description=\"Author Author Share The ultimate website builder Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus.\" color_type=\"custom\" icon_colors=\"var(--awb-color8)\" box_colors=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 91% ),var(--awb-color8-a))\" icon_tagline_color=\"var(--awb-color6)\" icon_tagline_color_hover=\"var(--awb-color4)\" icon_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" link=\"https://avada.studio/fusion_tb_section/elegant-blog-content-01/?awb-studio-content=true\" tagline_color=\"var(--awb-color6)\" title=\"Elegant Blog Content 01\" tooltip_placement=\"top\" social_share_links=\"facebook,twitter,reddit,pinterest\" margin_top=\"10px\" margin_bottom=\"0\" margin_left=\"-13px\" margin_right=\"0\" tagline_visibility=\"show\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" alignment=\"flex-start\" alignment_small=\"flex-start\" stacked_align=\"flex-start\" stacked_align_small=\"center\" padding_bottom=\"0\" padding_left=\"0\" padding_right=\"0\" padding_top=\"0\" wrapper_padding_bottom=\"0\" wrapper_padding_left=\"0\" wrapper_padding_right=\"0\" wrapper_padding_top=\"0\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 80% ),var(--awb-color8-a))\" tagline_placement=\"after\" separator_border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 80% ),var(--awb-color8-a))\" separator_border_sizes=\"0\" layout=\"floated\" layout_small=\"stacked\" backgroundcolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" /][/fusion_builder_column][fusion_builder_column type=\"54\" layout=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"54\" margin_bottom=\"0px\" margin_bottom_small=\"0px\" spacing=\"4%\" spacing_left_small=\"0\" spacing_right_small=\"0\" padding_right_small=\"0px\" padding_left_small=\"0px\" animation_direction=\"up\" animation_speed=\"0.8\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" background_color=\"var(--awb-color1)\" padding_top_small=\"0px\" spacing_left=\"40px\" spacing_right=\"40px\" spacing_left_medium=\"20px\" spacing_right_medium=\"20px\" min_height=\"\" link=\"\"][fusion_imageframe hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9fQ==\" margin_bottom=\"50px\" aspect_ratio_position=\"51% 37%\" aspect_ratio=\"3-2\" /][fusion_tb_content hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" excerpt=\"no\" excerpt_length=\"55\" strip_html=\"yes\" text_color=\"var(--awb-color8)\" /][/fusion_builder_column][fusion_builder_column type=\"23\" layout=\"16\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"23\" margin_bottom=\"20px\" spacing=\"4%\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" element_content=\"\" margin_top=\"0\" min_height=\"\" link=\"\" spacing_left=\"2%\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"18px\" line_height=\"26px\" margin_bottom=\"30px\" margin_top=\"0\"]\r\n<p>Editor\'s Pick</p>\r\n[/fusion_title][fusion_post_cards post_card=\"27\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\"  out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" terms_by=\"category\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"no\" padding_bottom=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_bottom=\"0px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"1\" order_small=\"2\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_pagination layout=\"text\" preview_position=\"bottom\" height=\"0\" same_term=\"no\" taxonomy=\"category\" inverse_post_order=\"no\" border_size=\"0\" preview_height=\"90\" preview_wrapper_width=\"500\" preview_width=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_right=\"0px\" margin_bottom=\"30px\" margin_left=\"0px\" /][fusion_separator hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" alignment=\"center\" border_size=\"1\" flex_grow=\"0\" icon_size=\"16\" icon_color=\"var(--awb-color3)\" icon_circle=\"1\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" style_type=\"single solid\" top_margin=\"0px\" bottom_margin=\"60px\" /][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"0px\" margin_top=\"0px\" margin_right=\"0px\" margin_left=\"0px\" font_size=\"24px\"]Leave A Comment[/fusion_title][fusion_tb_comments avatar=\"square\" headings=\"hide\" heading_size=\"2\" padding=\"40\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"15px\" /][fusion_separator hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" alignment=\"center\" border_size=\"1\" flex_grow=\"0\" icon_size=\"16\" icon_color=\"var(--awb-color3)\" icon_circle=\"1\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" style_type=\"single solid\" top_margin=\"50px\" bottom_margin=\"50px\" /][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"30px\" margin_top=\"0\" font_size=\"24px\"]Related Posts[/fusion_title][fusion_post_cards post_card=\"23\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\"  out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"50\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" terms_by=\"category\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog Single Post (P)','','publish','closed','closed','','blog-single-post-p','','','2022-08-24 00:13:05','2022-08-24 00:13:05','',0,'https://test-site.wlvrotary.org/fusion_tb_section/blog-single-post-p/',0,'fusion_tb_section','',0),(35,1,'2022-08-24 00:13:05','2022-08-24 00:13:05','[fusion_builder_column type=\"1_1\" layout=\"1_1\" hide_on_mobile=\"small-visibility, medium-visibility, large-visibility\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"overlay\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"6\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 89%))\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"2\" margin_top=\"0px\" margin_bottom=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" element_content=\"\" dynamic_params=\"e30=\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"16-9\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"50% 52%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9LCJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9LCJjYXB0aW9uX3RleHQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsIiwibGluayI6Im5vIn19\" margin_bottom=\"25px\" caption_overlay_color=\"var(--awb-color8)\" caption_title_color=\"var(--awb-color1)\" caption_text=\"Continue Reading\" caption_text_color=\"var(--awb-color1)\" caption_title=\" \" caption_background_color=\"var(--awb-color5)\" /][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"10px\" margin_right=\"10px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsICIsImxpbmsiOiJ5ZXMifX0=\" fusion_font_variant_text_font=\"400\"]Your Content Goes Here[/fusion_text][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" size=\"5\" style_type=\"default\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" margin_top=\"0\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"2\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"0\" /][/fusion_builder_column]','Starter Blog Post Card 2255 (P)','','inherit','closed','closed','','27-revision-v1','','','2022-08-24 00:13:05','2022-08-24 00:13:05','',27,'https://test-site.wlvrotary.org/?p=35',0,'revision','',0),(36,1,'2022-08-24 00:13:05','2022-08-24 00:13:05','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" border_color=\"var(--awb-color3)\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"up\" animation_speed=\"0.8\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"no\" margin_bottom_small=\"0px\" padding_top_small=\"0px\" padding_top=\"20px\"][fusion_builder_row][fusion_builder_column type=\"23\" layout=\"16\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"23\" margin_top=\"0\" margin_bottom=\"20px\" spacing=\"4%\" animation_direction=\"left\" animation_speed=\"0.8\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" margin_bottom_small=\"0px\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"categories\" layout=\"stacked\" font_size=\"13px\" link_color=\"var(--awb-color1)\" text_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 23% ))\" border_color=\"var(--awb-color3)\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"81\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" border_bottom=\"0px\" border_left=\"0px\" border_right=\"0px\" border_top=\"0px\" read_time=\"200\" item_background_color=\"var(--awb-color5)\" item_border_color=\"var(--awb-color3)\" item_padding_bottom=\"13px\" item_padding_left=\"18px\" item_padding_top=\"13px\" item_margin_bottom=\"20px\" text_color=\"var(--awb-color1)\" item_padding_right=\"18px\" /][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"row\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"10px\" border_sizes_bottom=\"1px\" border_color=\"var(--awb-color3)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImF1dGhvcl9hdmF0YXIifSwibGluayI6eyJkYXRhIjoiYXV0aG9yX3VybCJ9fQ==\" max_width=\"30px\" borderradius=\"50%\" margin_left=\"0\" margin_right=\"10px\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImF1dGhvcl9uYW1lIn19\" font_size=\"14px\" line_height=\"27px\"]Your Content Goes Here[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" content_align=\"left\" margin_bottom=\"-10px\" margin_bottom_small=\"-10px\" margin_top=\"10px\" margin_top_small=\"0\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"div\" style_type=\"default\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" fusion_font_variant_title_font=\"400\"]\r\n<p>Share</p>\r\n[/fusion_title][fusion_sharing hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" description=\"Author Author Share The ultimate website builder Nam aliquet ante porta, gravida elit interdum, luctus porta sapien justo, at fringilla felis suscipit vestibulum volutpat metus.\" color_type=\"custom\" icon_colors=\"var(--awb-color8)\" box_colors=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 91% ),var(--awb-color8-a))\" icon_tagline_color=\"var(--awb-color6)\" icon_tagline_color_hover=\"var(--awb-color4)\" icon_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" link=\"https://avada.studio/fusion_tb_section/elegant-blog-content-01/?awb-studio-content=true\" tagline_color=\"var(--awb-color6)\" title=\"Elegant Blog Content 01\" tooltip_placement=\"top\" social_share_links=\"facebook,twitter,reddit,pinterest\" margin_top=\"10px\" margin_bottom=\"0\" margin_left=\"-13px\" margin_right=\"0\" tagline_visibility=\"show\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" alignment=\"flex-start\" alignment_small=\"flex-start\" stacked_align=\"flex-start\" stacked_align_small=\"center\" padding_bottom=\"0\" padding_left=\"0\" padding_right=\"0\" padding_top=\"0\" wrapper_padding_bottom=\"0\" wrapper_padding_left=\"0\" wrapper_padding_right=\"0\" wrapper_padding_top=\"0\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 80% ),var(--awb-color8-a))\" tagline_placement=\"after\" separator_border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 80% ),var(--awb-color8-a))\" separator_border_sizes=\"0\" layout=\"floated\" layout_small=\"stacked\" backgroundcolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" /][/fusion_builder_column][fusion_builder_column type=\"54\" layout=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"54\" margin_bottom=\"0px\" margin_bottom_small=\"0px\" spacing=\"4%\" spacing_left_small=\"0\" spacing_right_small=\"0\" padding_right_small=\"0px\" padding_left_small=\"0px\" animation_direction=\"up\" animation_speed=\"0.8\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" background_color=\"var(--awb-color1)\" padding_top_small=\"0px\" spacing_left=\"40px\" spacing_right=\"40px\" spacing_left_medium=\"20px\" spacing_right_medium=\"20px\" min_height=\"\" link=\"\"][fusion_imageframe hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9fQ==\" margin_bottom=\"50px\" aspect_ratio_position=\"51% 37%\" aspect_ratio=\"3-2\" /][fusion_tb_content hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" excerpt=\"no\" excerpt_length=\"55\" strip_html=\"yes\" text_color=\"var(--awb-color8)\" /][/fusion_builder_column][fusion_builder_column type=\"23\" layout=\"16\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"23\" margin_bottom=\"20px\" spacing=\"4%\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" element_content=\"\" margin_top=\"0\" min_height=\"\" link=\"\" spacing_left=\"2%\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"18px\" line_height=\"26px\" margin_bottom=\"30px\" margin_top=\"0\"]\r\n<p>Editor\'s Pick</p>\r\n[/fusion_title][fusion_post_cards post_card=\"27\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\"  out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" terms_by=\"category\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"no\" padding_bottom=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"1_1\" type_small=\"1_1\" margin_bottom=\"0px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"1\" order_small=\"2\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_pagination layout=\"text\" preview_position=\"bottom\" height=\"0\" same_term=\"no\" taxonomy=\"category\" inverse_post_order=\"no\" border_size=\"0\" preview_height=\"90\" preview_wrapper_width=\"500\" preview_width=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_right=\"0px\" margin_bottom=\"30px\" margin_left=\"0px\" /][fusion_separator hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" alignment=\"center\" border_size=\"1\" flex_grow=\"0\" icon_size=\"16\" icon_color=\"var(--awb-color3)\" icon_circle=\"1\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" style_type=\"single solid\" top_margin=\"0px\" bottom_margin=\"60px\" /][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"0px\" margin_top=\"0px\" margin_right=\"0px\" margin_left=\"0px\" font_size=\"24px\"]Leave A Comment[/fusion_title][fusion_tb_comments avatar=\"square\" headings=\"hide\" heading_size=\"2\" padding=\"40\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"15px\" /][fusion_separator hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" alignment=\"center\" border_size=\"1\" flex_grow=\"0\" icon_size=\"16\" icon_color=\"var(--awb-color3)\" icon_circle=\"1\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" style_type=\"single solid\" top_margin=\"50px\" bottom_margin=\"50px\" /][fusion_title content_align=\"left\" size=\"3\" style_type=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_bottom=\"30px\" margin_top=\"0\" font_size=\"24px\"]Related Posts[/fusion_title][fusion_post_cards post_card=\"23\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\"  out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"50\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" terms_by=\"category\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog Single Post (P)','','inherit','closed','closed','','34-revision-v1','','','2022-08-24 00:13:05','2022-08-24 00:13:05','',34,'https://test-site.wlvrotary.org/?p=36',0,'revision','',0),(37,1,'2022-08-24 00:13:06','2022-08-24 00:13:06','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"84\" gradient_end_position=\"62\" gradient_type=\"radial\" radial_direction=\"center bottom\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"no\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"20px\" padding_bottom=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"23\" post_card_list_view=\"0\" source=\"posts\" number_posts=\"8\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"4\" columns_small=\"1\" columns=\"4\" column_spacing=\"50\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\"]Nothing Found[/fusion_tb_post_card_archives][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog Archive (P)','','publish','closed','closed','','blog-archive-p','','','2022-08-24 00:13:06','2022-08-24 00:13:06','',0,'https://test-site.wlvrotary.org/fusion_tb_section/blog-archive-p/',0,'fusion_tb_section','',0),(38,1,'2022-08-24 00:13:06','2022-08-24 00:13:06','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"84\" gradient_end_position=\"62\" gradient_type=\"radial\" radial_direction=\"center bottom\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"no\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"20px\" padding_bottom=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"23\" post_card_list_view=\"0\" source=\"posts\" number_posts=\"8\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"4\" columns_small=\"1\" columns=\"4\" column_spacing=\"50\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\"]Nothing Found[/fusion_tb_post_card_archives][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog Archive (P)','','inherit','closed','closed','','37-revision-v1','','','2022-08-24 00:13:06','2022-08-24 00:13:06','',37,'https://test-site.wlvrotary.org/?p=38',0,'revision','',0),(39,1,'2022-08-24 00:13:06','2022-08-24 00:13:06','{\\\"conditions\\\":{\\\"singular_post\\\":{\\\"label\\\":\\\"All Posts\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_post\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":32,\\\"content\\\":34}}','Single Blog Post','','publish','closed','closed','','single-blog-post','','','2022-08-24 00:13:06','2022-08-24 00:13:06','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/single-blog-post/',0,'fusion_tb_layout','',0),(40,1,'2022-08-24 00:13:06','2022-08-24 00:13:06','{\\\"conditions\\\":{\\\"singular_post\\\":{\\\"label\\\":\\\"All Posts\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_post\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":32,\\\"content\\\":34}}','Single Blog Post','','inherit','closed','closed','','39-revision-v1','','','2022-08-24 00:13:06','2022-08-24 00:13:06','',39,'https://test-site.wlvrotary.org/?p=40',0,'revision','',0),(41,1,'2022-08-24 00:13:06','2022-08-24 00:13:06','{\\\"conditions\\\":{\\\"all_archives\\\":{\\\"label\\\":\\\"All Archives Pages\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"all_archives\\\"},\\\"archive_of_product\\\":{\\\"label\\\":\\\"Products Archive Types\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"archive_of_product\\\"},\\\"product_cat\\\":{\\\"label\\\":\\\"All Product categories\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"product_cat\\\"},\\\"product_tag\\\":{\\\"label\\\":\\\"All Product tags\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"product_tag\\\"},\\\"portfolio_category\\\":{\\\"label\\\":\\\"All Portfolio Categories\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"portfolio_category\\\"},\\\"portfolio_skills\\\":{\\\"label\\\":\\\"All Portfolio Skills\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"portfolio_skills\\\"},\\\"portfolio_tags\\\":{\\\"label\\\":\\\"All Portfolio Tags\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"portfolio_tags\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":33,\\\"content\\\":37}}','Blog Archive','','publish','closed','closed','','blog-archive','','','2022-08-24 00:13:06','2022-08-24 00:13:06','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/blog-archive/',0,'fusion_tb_layout','',0),(42,1,'2022-08-24 00:13:06','2022-08-24 00:13:06','{\\\"conditions\\\":{\\\"all_archives\\\":{\\\"label\\\":\\\"All Archives Pages\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"all_archives\\\"},\\\"archive_of_product\\\":{\\\"label\\\":\\\"Products Archive Types\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"archive_of_product\\\"},\\\"product_cat\\\":{\\\"label\\\":\\\"All Product categories\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"product_cat\\\"},\\\"product_tag\\\":{\\\"label\\\":\\\"All Product tags\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"product_tag\\\"},\\\"portfolio_category\\\":{\\\"label\\\":\\\"All Portfolio Categories\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"portfolio_category\\\"},\\\"portfolio_skills\\\":{\\\"label\\\":\\\"All Portfolio Skills\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"portfolio_skills\\\"},\\\"portfolio_tags\\\":{\\\"label\\\":\\\"All Portfolio Tags\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"exclude\\\",\\\"archives\\\":\\\"portfolio_tags\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":33,\\\"content\\\":37}}','Blog Archive','','inherit','closed','closed','','41-revision-v1','','','2022-08-24 00:13:06','2022-08-24 00:13:06','',41,'https://test-site.wlvrotary.org/?p=42',0,'revision','',0),(43,1,'2022-08-24 00:13:07','2022-08-24 00:13:07','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"60px\" padding_bottom=\"60px\" padding_bottom_medium=\"0px\" margin_top=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\" admin_toggled=\"yes\" flex_column_spacing=\"100px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"3_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 92% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"60\" box_shadow_spread=\"-8\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 88% ))\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"2.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" first=\"false\" last=\"true\" border_position=\"all\" box_shadow_vertical=\"32px\" box_shadow_horizontal=\"12px\" type_medium=\"1_2\" margin_bottom_small=\"30px\" margin_top_small=\"0px\" type_small=\"1_1\" margin_bottom=\"60px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\" margin_top=\"0\"]\r\n<p>Let\'s keep in touch</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"60px\"]Cras ultricies ligula sed magna dictum porta. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.[/fusion_text][fusion_form form_post_id=\"44\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"3_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 92% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"60\" box_shadow_spread=\"-8\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 88% ))\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"2.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" first=\"false\" last=\"true\" border_position=\"all\" box_shadow_vertical=\"32px\" box_shadow_horizontal=\"12px\" type_medium=\"1_2\" margin_bottom_small=\"30px\" margin_top_small=\"0px\" type_small=\"1_1\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"42\" aspect_ratio_position=\"49% 34%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"|full\" margin_bottom=\"0\"]data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22677%22%20height%3D%22693%22%20viewBox%3D%220%200%20677%20693%22%3E%3Crect%20fill%3D%22%23CFBDBB%22%20width%3D%22677%22%20height%3D%22693%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E677%C3%97693%3C%2Ftext%3E%3C%2Fsvg%3E[/fusion_imageframe][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 20%),var(--awb-color4-a))\" padding_top=\"70px\" padding_right=\"70px\" padding_bottom=\"70px\" padding_left=\"70px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" responsive_typography=\"true\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Working hours[/fusion_title][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"0\"]\r\n<p>Open - Mon-Fri 8-4<br />Closed - Sat-Sun and Public Holidays</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30px\" bottom_margin=\"30px\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" responsive_typography=\"true\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Our location[/fusion_title][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"0\"]3211 Avada Street<br />\r\nThemeFusion City<br />\r\n80111[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30px\" bottom_margin=\"30px\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" responsive_typography=\"true\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Social profiles[/fusion_title][fusion_social_links icon_colors=\"var(--awb-color8)\" icon_colors_hover=\"var(--awb-color5)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','publish','closed','closed','','contact','','','2022-08-24 00:13:08','2022-08-24 00:13:08','',0,'https://test-site.wlvrotary.org/contact/',0,'page','',0),(44,1,'2022-08-24 00:13:08','2022-08-24 00:13:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" admin_label=\"Form\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_form_notice success=\"Thank you for your message. It has been sent.\" error=\"There was an error trying to send your message. Please try again later.\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_form_text label=\"First name\" name=\"first_name\" required=\"yes\" placeholder=\"John\" minlength=\"0\" maxlength=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form_text label=\"Last name\" name=\"last_name\" required=\"yes\" placeholder=\"Doe\" minlength=\"0\" maxlength=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_form_email label=\"Email\" name=\"email\" required=\"yes\" placeholder=\"johndoe@company.com\" /][fusion_form_phone_number label=\"Phone number\" name=\"phone_number\" required=\"yes\" placeholder=\"e.g. (555) 802-1234\" /][fusion_form_textarea name=\"your_challenge\" required=\"no\" rows=\"4\" label=\"Your message\" /][fusion_form_submit alignment=\"center\" color=\"default\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\"]Send message[/fusion_form_submit][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Starter Contact Form 2282 (P)','','publish','closed','closed','','starter-contact-form-2282-p','','','2022-08-24 00:13:08','2022-08-24 00:13:08','',0,'https://test-site.wlvrotary.org/fusion_form/starter-contact-form-2282-p/',0,'fusion_form','',0),(45,1,'2022-08-24 00:13:08','2022-08-24 00:13:08','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"60px\" padding_bottom=\"60px\" padding_bottom_medium=\"0px\" margin_top=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\" admin_toggled=\"yes\" flex_column_spacing=\"100px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"3_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 92% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"60\" box_shadow_spread=\"-8\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 88% ))\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"2.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" first=\"false\" last=\"true\" border_position=\"all\" box_shadow_vertical=\"32px\" box_shadow_horizontal=\"12px\" type_medium=\"1_2\" margin_bottom_small=\"30px\" margin_top_small=\"0px\" type_small=\"1_1\" margin_bottom=\"60px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\" margin_top=\"0\"]\r\n<p>Let\'s keep in touch</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"60px\"]Cras ultricies ligula sed magna dictum porta. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.[/fusion_text][fusion_form form_post_id=\"44\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"3_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 92% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"60\" box_shadow_spread=\"-8\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 88% ))\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"2.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" first=\"false\" last=\"true\" border_position=\"all\" box_shadow_vertical=\"32px\" box_shadow_horizontal=\"12px\" type_medium=\"1_2\" margin_bottom_small=\"30px\" margin_top_small=\"0px\" type_small=\"1_1\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"42\" aspect_ratio_position=\"49% 34%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"|full\" margin_bottom=\"0\"]data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22677%22%20height%3D%22693%22%20viewBox%3D%220%200%20677%20693%22%3E%3Crect%20fill%3D%22%23CFBDBB%22%20width%3D%22677%22%20height%3D%22693%22%2F%3E%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2230%22%20dy%3D%2210.5%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E677%C3%97693%3C%2Ftext%3E%3C%2Fsvg%3E[/fusion_imageframe][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 20%),var(--awb-color4-a))\" padding_top=\"70px\" padding_right=\"70px\" padding_bottom=\"70px\" padding_left=\"70px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" responsive_typography=\"true\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Working hours[/fusion_title][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"0\"]\r\n<p>Open - Mon-Fri 8-4<br />Closed - Sat-Sun and Public Holidays</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30px\" bottom_margin=\"30px\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" responsive_typography=\"true\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Our location[/fusion_title][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"0\"]3211 Avada Street<br />\r\nThemeFusion City<br />\r\n80111[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30px\" bottom_margin=\"30px\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" responsive_typography=\"true\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Social profiles[/fusion_title][fusion_social_links icon_colors=\"var(--awb-color8)\" icon_colors_hover=\"var(--awb-color5)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','inherit','closed','closed','','43-revision-v1','','','2022-08-24 00:13:08','2022-08-24 00:13:08','',43,'https://test-site.wlvrotary.org/?p=45',0,'revision','',0),(46,1,'2022-08-24 00:13:08','2022-08-24 00:13:08',' ','','','publish','closed','closed','','46','','','2022-08-24 00:13:08','2022-08-24 00:13:08','',0,'https://test-site.wlvrotary.org/2022/08/24/46/',0,'nav_menu_item','',0),(48,1,'2022-08-24 00:13:08','2022-08-24 00:13:08',' ','','','publish','closed','closed','','48','','','2022-08-24 00:13:08','2022-08-24 00:13:08','',0,'https://test-site.wlvrotary.org/2022/08/24/48/',3,'nav_menu_item','',0),(49,1,'2022-08-24 00:13:11','2022-08-24 00:13:11','[fusion_builder_container admin_label=\"Secondary Top Header\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" flex_column_spacing=\"4%\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top=\"10px\" padding_right=\"30px\" padding_bottom=\"10px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 100%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color6)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" content_layout=\"row\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography4-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography4)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography4-font-size)\" line_height=\"var(--awb-typography4-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"20px\" icon=\"fa-phone-alt fas\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography4-letter-spacing)\" text_transform=\"var(--awb-typography4-text-transform)\"](555) 802-1234[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography4-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography4)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography4-font-size)\" line_height=\"var(--awb-typography4-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fa-envelope fas\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography4-letter-spacing)\" text_transform=\"var(--awb-typography4-text-transform)\"]info@company.com[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"#\" twitter=\"#\" youtube=\"#\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"flex-start\" flex_column_spacing=\"4%\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImJhY2tncm91bmRfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoiaGVhZGVyX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title font_size=\"36px\" margin_top=\"0px\" margin_bottom=\"0px\" content_align=\"none\" title_link=\"on\" text_color=\"var(--awb-color8)\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-color8)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InNpdGVfdGl0bGUifSwibGlua191cmwiOnsiZGF0YSI6InNpdGVfdXJsIn19\"]Rotary Club of Westlake Village Sunrisehttps://test-site.wlvrotary.org/wp-admin/admin.php?page=avada-setup#setup_type[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_menu menu=\"avada-setup-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" min_height=\"100px\" align_items=\"stretch\" justify_content=\"flex-end\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"48px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"center-vertical\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color8)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" icons_color=\"var(--awb-color8)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"2px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color6)\" icons_hover_color=\"var(--awb-color6)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"small\" custom_breakpoint=\"900\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_icon_close=\"fa-times fas\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color6)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Top Bar Header 496 (L)','','publish','closed','closed','','default-top-bar-header-496-l','','','2022-08-24 00:13:11','2022-08-24 00:13:11','',0,'https://test-site.wlvrotary.org/fusion_tb_section/default-top-bar-header-496-l/',0,'fusion_tb_section','',0),(50,1,'2022-08-24 00:13:11','2022-08-24 00:13:11','','logo-studio-default-3','','inherit','open','closed','','logo-studio-default-3','','','2022-08-24 00:13:11','2022-08-24 00:13:11','',49,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/logo-studio-default-3.png',0,'attachment','image/png',0),(51,1,'2022-08-24 00:13:12','2022-08-24 00:13:12','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\" line_height=\"22px\"]Rotary Club of Westlake <span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\"><br></span><span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]<p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 1.4em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">Rotary Club of Westlake Village Sunrise</span><br><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 1.4em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">PO Box 3846</span><span style=\"font-family: \'Open Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"><span style=\"line-height: 18px;\" data-fusion-font=\"true\"><br><span style=\"line-height: 1.4em;\" data-fusion-font=\"true\">Thousand Oaks, CA 91359</span><br></span></span><span style=\"line-height: 1.4em;\" data-fusion-font=\"true\">i</span><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 1.4em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">nfo@wlvrotary.org</span></p><p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.9em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"><br></span></p>\n<p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"> </span></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','publish','closed','closed','','starter-footer-2160-p','','','2023-01-10 04:25:25','2023-01-10 04:25:25','',0,'https://test-site.wlvrotary.org/fusion_tb_section/starter-footer-2160-p/',0,'fusion_tb_section','',0),(1815,1,'2022-09-20 03:23:14','2022-09-20 03:23:14','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"3\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake Village Sunrise\r\n[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"1.5px\"]\r\n\r\nFridays at 7:00 AM\r\n\r\nLos Robles Greens\r\n\r\n299 S. Moorpark Road\r\n\r\nThousand Oaks, CA 91362\r\n\r\nUnited States of America\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Site Menu\r\n[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"2px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"2px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us\r\n[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]Rotary Club of Westlake Village Sunrise\r\n123 Street Address\r\nPO BOX. ###\r\nCity, St. 00000\r\n\r\n555.555.5555\r\ninfo@wlvrotary.org[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" content_layout=\"row\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-mobile-alt fas\" icon_divider=\"no\" icon_position=\"left\" margin_right=\"24px\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"](555) 802-1234[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-envelope far\" icon_divider=\"no\" icon_position=\"left\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]info@company.com[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_5\" layout=\"1_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"16px\" spacing=\"4%\" spacing_left_medium=\"0%\" spacing_right_medium=\"0%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"1\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"18px\" icons_boxed=\"yes\" color_type=\"custom\" icon_colors=\"#ffffff\" box_colors=\"#212326\" show_custom=\"no\" alignment=\"center\" alignment_medium=\"left\" tooltip_placement=\"top\" facebook=\"#\" twitter=\"#\" instagram=\"#\" youtube=\"#\" icon_colors_hover=\"#198fd9\" box_colors_hover=\"#ffffff\" box_border_top=\"0px\" box_border_right=\"0px\" box_border_bottom=\"0px\" box_border_left=\"0px\" box_border_color=\"#141617\" box_border_color_hover=\"#198fd9\" margin_top=\"0px\" margin_right=\"0px\" margin_bottom=\"0px\" margin_left=\"0px\" animation_direction=\"left\" animation_offset=\"top-into-view\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n\r\n© 2021 - Avada Studio • Powered by WordPress\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2022-09-20 03:23:14','2022-09-20 03:23:14','',51,'https://test-site.wlvrotary.org/?p=1815',0,'revision','',0),(1814,1,'2022-09-20 03:22:58','2022-09-20 03:22:58','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"3\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake Village Sunrise<br>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"1.5px\"]<p> Fridays at 7:00 AM</p><p>Los Robles Greens</p><p>299 S. Moorpark Road</p><p>Thousand Oaks, CA 91362</p><p>United States of America</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Site Menu<br>[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"2px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"2px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us<br>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]Rotary Club of Westlake Village Sunrise\n123 Street Address\nPO BOX. ###\nCity, St. 00000\n\n555.555.5555\ninfo@wlvrotary.org[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" content_layout=\"row\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-mobile-alt fas\" icon_divider=\"no\" icon_position=\"left\" margin_right=\"24px\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"](555) 802-1234[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-envelope far\" icon_divider=\"no\" icon_position=\"left\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]info@company.com[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"16px\" spacing=\"4%\" spacing_left_medium=\"0%\" spacing_right_medium=\"0%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"1\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"18px\" icons_boxed=\"yes\" color_type=\"custom\" icon_colors=\"#ffffff\" box_colors=\"#212326\" show_custom=\"no\" alignment=\"center\" alignment_medium=\"left\" tooltip_placement=\"top\" facebook=\"#\" twitter=\"#\" instagram=\"#\" youtube=\"#\" icon_colors_hover=\"#198fd9\" box_colors_hover=\"#ffffff\" box_border_top=\"0px\" box_border_right=\"0px\" box_border_bottom=\"0px\" box_border_left=\"0px\" box_border_color=\"#141617\" box_border_color_hover=\"#198fd9\" margin_top=\"0px\" margin_right=\"0px\" margin_bottom=\"0px\" margin_left=\"0px\" animation_direction=\"left\" animation_offset=\"top-into-view\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p>© 2021 - Avada Studio • Powered by WordPress</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Starter Footer 2160 (P)','','inherit','closed','closed','','51-revision-v1','','','2022-09-20 03:22:58','2022-09-20 03:22:58','',51,'https://test-site.wlvrotary.org/?p=1814',0,'revision','',0),(52,1,'2022-08-24 00:13:12','2022-08-24 00:13:12','','Product','','publish','closed','closed','','product','','','2022-08-24 00:13:12','2022-08-24 00:13:12','',0,'https://test-site.wlvrotary.org/2022/08/24/product/',0,'nav_menu_item','',0),(53,1,'2022-08-24 00:13:12','2022-08-24 00:13:12','','Solutions','','publish','closed','closed','','solutions','','','2022-08-24 00:13:12','2022-08-24 00:13:12','',0,'https://test-site.wlvrotary.org/2022/08/24/solutions/',2,'nav_menu_item','',0),(54,1,'2022-08-24 00:13:12','2022-08-24 00:13:12','','Features','','publish','closed','closed','','features','','','2022-08-24 00:13:12','2022-08-24 00:13:12','',0,'https://test-site.wlvrotary.org/2022/08/24/features/',3,'nav_menu_item','',0),(55,1,'2022-08-24 00:13:12','2022-08-24 00:13:12','','Company','','publish','closed','closed','','company','','','2022-08-24 00:13:12','2022-08-24 00:13:12','',0,'https://test-site.wlvrotary.org/2022/08/24/company/',4,'nav_menu_item','',0),(56,1,'2022-08-24 00:13:12','2022-08-24 00:13:12','','Resources','','publish','closed','closed','','resources','','','2022-08-24 00:13:12','2022-08-24 00:13:12','',0,'https://test-site.wlvrotary.org/2022/08/24/resources/',5,'nav_menu_item','',0),(57,1,'2022-08-24 00:13:13','2022-08-24 00:13:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"84\" gradient_end_position=\"62\" gradient_type=\"radial\" radial_direction=\"center bottom\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_small=\"25px\" margin_top=\"0px\" flex_column_spacing=\"0\" margin_top_small=\"0px\" admin_toggled=\"yes\" background_color=\"#f9f9fb\" padding_top=\"100px\" padding_bottom=\"100px\" padding_top_small=\"60px\" padding_bottom_small=\"60px\" padding_top_medium=\"60px\" padding_bottom_medium=\"60px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"rgba(255,255,255,1)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"16\" gradient_end_position=\"55\" gradient_type=\"radial\" radial_direction=\"right top\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InJlcXVlc3RfcGFyYW1ldGVyIiwidHlwZSI6ImdldCIsIm5hbWUiOiJzIiwiYmVmb3JlIjoiU2VhcmNoIHJlc3VsdHMgZm9yIDogIn19\" margin_bottom=\"30px\"]\r\n<p>Search Results</p>\r\n[/fusion_title][fusion_search live_search=\"yes\" placeholder=\"What are you looking for?\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" design=\"clean\" animation_direction=\"left\" animation_speed=\"0.3\" input_height=\"66px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"e30=\" admin_label=\"PTB\" type=\"flex\" flex_justify_content=\"center\" background_color=\"#ffffff\" padding_top=\"80px\" padding_bottom=\"80px\" padding_top_small=\"60px\" padding_bottom_small=\"60px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"20px\" padding_bottom=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"58\" post_card_list_view=\"0\" source=\"posts\" number_posts=\"8\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"4\" column_spacing=\"50\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\"]Nothing Found[/fusion_tb_post_card_archives][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Search Page Content (P)','','publish','closed','closed','','search-page-content-p','','','2022-08-24 00:13:13','2022-08-24 00:13:13','',0,'https://test-site.wlvrotary.org/fusion_tb_section/search-page-content-p/',0,'fusion_tb_section','',0),(58,1,'2022-08-24 00:13:13','2022-08-24 00:13:13','[fusion_builder_column type=\"1_1\" layout=\"1_1\" hide_on_mobile=\"small-visibility, medium-visibility, large-visibility\" background_color=\"rgba(241,242,244,0.2)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"overlay\" border_position=\"all\" box_shadow=\"no\" box_shadow_blur=\"6\" box_shadow_color=\"rgba(19,21,22,0.11)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"2\" margin_top=\"0px\" margin_bottom=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"40px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" element_content=\"\" dynamic_params=\"e30=\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"2-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"49% 53%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9LCJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9LCJjYXB0aW9uX3RleHQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsIiwibGluayI6Im5vIn19\" margin_bottom=\"40px\" caption_overlay_color=\"#141617\" caption_title_color=\"#ffffff\" caption_text=\"Continue Reading\" caption_text_color=\"#ffffff\" caption_title=\" \" caption_background_color=\"#198fd9\" /][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" margin_bottom=\"0\" margin_left=\"30px\" margin_right=\"30px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGVybXMiLCJ0eXBlIjoiY2F0ZWdvcnkiLCJzZXBhcmF0b3IiOiIsICIsImxpbmsiOiJ5ZXMifX0=\" fusion_font_variant_text_font=\"400\"]Your Content Goes Here[/fusion_text][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"10px\" margin_top_small=\"10px\" margin_right=\"40px\" margin_right_small=\"30px\" margin_left=\"30px\" margin_left_small=\"30px\" size=\"5\" style_type=\"default\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\"]Your Content Goes Here[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"2\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"0\" /][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#198fd9\" accent_hover_color=\"rgba(25,142,215,0.8)\" color=\"custom\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color=\"rgba(255,255,255,0)\" icon_divider=\"no\" icon_position=\"left\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" text_transform=\"var(--awb-typography3-text-transform)\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"13px\" padding_right=\"29px\" padding_bottom=\"0\" padding_left=\"30px\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" fusion_font_family_button_font=\"var(--awb-typography3-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography3)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"4px\" border_radius_top_right=\"4px\" border_radius_bottom_right=\"4px\" border_radius_bottom_left=\"4px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_accent_color=\"#fcfcfc\" button_accent_hover_color=\"#fcfcfc\" button_bevel_color=\"#5db072\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" border_color=\"#198fd9\" border_hover_color=\"#9ee5b7\"]Continue reading[/fusion_button][/fusion_builder_column]','Starter Blog Post Card 2288 (P)','','publish','closed','closed','','starter-blog-post-card-2288-p-2','','','2022-08-24 00:13:13','2022-08-24 00:13:13','',0,'https://test-site.wlvrotary.org/fusion_element/starter-blog-post-card-2288-p-2/',0,'fusion_element','',0),(59,1,'2022-08-24 00:13:13','2022-08-24 00:13:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"84\" gradient_end_position=\"62\" gradient_type=\"radial\" radial_direction=\"center bottom\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_small=\"25px\" margin_top=\"0px\" flex_column_spacing=\"0\" margin_top_small=\"0px\" admin_toggled=\"yes\" background_color=\"#f9f9fb\" padding_top=\"100px\" padding_bottom=\"100px\" padding_top_small=\"60px\" padding_bottom_small=\"60px\" padding_top_medium=\"60px\" padding_bottom_medium=\"60px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"rgba(255,255,255,1)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"16\" gradient_end_position=\"55\" gradient_type=\"radial\" radial_direction=\"right top\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InJlcXVlc3RfcGFyYW1ldGVyIiwidHlwZSI6ImdldCIsIm5hbWUiOiJzIiwiYmVmb3JlIjoiU2VhcmNoIHJlc3VsdHMgZm9yIDogIn19\" margin_bottom=\"30px\"]\r\n<p>Search Results</p>\r\n[/fusion_title][fusion_search live_search=\"yes\" placeholder=\"What are you looking for?\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" design=\"clean\" animation_direction=\"left\" animation_speed=\"0.3\" input_height=\"66px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"e30=\" admin_label=\"PTB\" type=\"flex\" flex_justify_content=\"center\" background_color=\"#ffffff\" padding_top=\"80px\" padding_bottom=\"80px\" padding_top_small=\"60px\" padding_bottom_small=\"60px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"20px\" padding_bottom=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"58\" post_card_list_view=\"0\" source=\"posts\" number_posts=\"8\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"4\" column_spacing=\"50\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\"]Nothing Found[/fusion_tb_post_card_archives][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Search Page Content (P)','','inherit','closed','closed','','57-revision-v1','','','2022-08-24 00:13:13','2022-08-24 00:13:13','',57,'https://test-site.wlvrotary.org/?p=59',0,'revision','',0),(60,1,'2022-08-24 00:13:13','2022-08-24 00:13:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"15vh\" padding_bottom=\"15vh\" margin_bottom=\"0px\" background_color=\"#f9f9fb\"][fusion_builder_row][fusion_builder_column type=\"3_4\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_right=\"120px\" padding_left=\"120px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_left_small=\"0px\" padding_right_small=\"0px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" font_size=\"160px\"]404[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"28px\" margin_top=\"0\" margin_bottom=\"40px\"]\r\n<p>Page Not Found</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at quam eu diam volutpat vehicula gravida in velit. Suspendisse</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"3_4\" layout=\"1_1\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_right=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_left_small=\"0px\" padding_right_small=\"0px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button link=\"#\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"#9ee5b7\" button_gradient_bottom_color=\"#9ee5b7\" button_gradient_top_color_hover=\"#141617\" button_gradient_bottom_color_hover=\"#141617\" accent_color=\"#141617\" accent_hover_color=\"#ffffff\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"#141617\" border_hover_color=\"#ffffff\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImNvbG9yIjoiIn19\" margin_right=\"15px\" size=\"xlarge\"]Back To Homepage[/fusion_button][fusion_search animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_left=\"15px\" input_height=\"55px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','404 Page Content (P)','','publish','closed','closed','','404-page-content-p','','','2022-08-24 00:13:13','2022-08-24 00:13:13','',0,'https://test-site.wlvrotary.org/fusion_tb_section/404-page-content-p/',0,'fusion_tb_section','',0),(61,1,'2022-08-24 00:13:13','2022-08-24 00:13:13','{\\\"conditions\\\":{\\\"search_results\\\":{\\\"label\\\":\\\"Search Results\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"search_results\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"57\\\",\\\"footer\\\":\\\"51\\\",\\\"header\\\":\\\"690\\\"}}','Search Page','','publish','closed','closed','','search-page','','','2023-01-09 16:33:10','2023-01-09 16:33:10','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/search-page/',0,'fusion_tb_layout','',0),(62,1,'2022-08-24 00:13:13','2022-08-24 00:13:13','{\\\"conditions\\\":{\\\"search_results\\\":{\\\"label\\\":\\\"Search Results\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"search_results\\\"}},\\\"template_terms\\\":{\\\"content\\\":57}}','Search Page','','inherit','closed','closed','','61-revision-v1','','','2022-08-24 00:13:13','2022-08-24 00:13:13','',61,'https://test-site.wlvrotary.org/?p=62',0,'revision','',0),(63,1,'2022-08-24 00:13:14','2022-08-24 00:13:14','{\\\"conditions\\\":{\\\"not_found\\\":{\\\"label\\\":\\\"404 Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"not_found\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"60\\\",\\\"header\\\":\\\"690\\\",\\\"footer\\\":\\\"51\\\"}}','404 Page','','publish','closed','closed','','404-page','','','2023-01-09 16:32:58','2023-01-09 16:32:58','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/404-page/',0,'fusion_tb_layout','',0),(64,1,'2022-08-24 00:13:14','2022-08-24 00:13:14','{\\\"conditions\\\":{\\\"not_found\\\":{\\\"label\\\":\\\"404 Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"not_found\\\"}},\\\"template_terms\\\":{\\\"content\\\":60}}','404 Page','','inherit','closed','closed','','63-revision-v1','','','2022-08-24 00:13:14','2022-08-24 00:13:14','',63,'https://test-site.wlvrotary.org/?p=64',0,'revision','',0),(68,1,'2021-01-22 14:06:21','2021-01-22 14:06:21','','Avada Handyman','','inherit','open','closed','','handyman-logo1x','','','2021-01-22 14:06:21','2021-01-22 14:06:21','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/handyman-logo@1x.png',0,'attachment','image/png',0),(69,1,'2021-01-22 14:07:48','2021-01-22 14:07:48','','Avada Handyman','','inherit','open','closed','','handyman-logo2x','','','2021-01-22 14:07:48','2021-01-22 14:07:48','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/handyman-logo@2x.png',0,'attachment','image/png',0),(104,1,'2021-01-25 12:58:54','2021-01-25 12:58:54','','avada-handyman-v1.0','','inherit','open','closed','','avada-handyman-v1-0','','','2021-01-25 12:58:54','2021-01-25 12:58:54','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/avada-handyman-v1.0.zip',0,'attachment','application/zip',0),(505,1,'2021-04-01 13:43:33','2021-04-01 13:43:33','','Testimonial','','inherit','open','closed','','testimonial-1-female','','','2021-04-01 13:43:33','2021-04-01 13:43:33','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-1-female.jpeg',0,'attachment','image/jpeg',0),(541,1,'2021-04-02 09:16:45','2021-04-02 09:16:45','','Happy Male Customer','','inherit','open','closed','','testimonial-2-male','','','2021-04-02 09:16:45','2021-04-02 09:16:45','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-2-male.jpeg',0,'attachment','image/jpeg',0),(650,1,'2021-04-05 14:25:28','2021-04-05 14:25:28','','Happy Young Lady','','inherit','open','closed','','testimonial-3-female','','','2021-04-05 14:25:28','2021-04-05 14:25:28','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-3-female.jpeg',0,'attachment','image/jpeg',0),(657,1,'2021-04-05 14:32:37','2021-04-05 14:32:37','','Happy Customer','','inherit','open','closed','','testimonial-4-female','','','2021-04-05 14:32:37','2021-04-05 14:32:37','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-4-female.jpg',0,'attachment','image/jpeg',0),(658,1,'2021-04-05 14:33:08','2021-04-05 14:33:08','','Happy Client','','inherit','open','closed','','testimonial-5-male','','','2021-04-05 14:33:08','2021-04-05 14:33:08','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/testimonial-5-male.jpeg',0,'attachment','image/jpeg',0),(680,1,'2021-04-06 08:21:09','2021-04-06 08:21:09','','Favicon New','','inherit','open','closed','','favicon-new','','','2021-04-06 08:21:09','2021-04-06 08:21:09','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/04/favicon-new.png',0,'attachment','image/png',0),(697,1,'2021-10-12 14:17:12','2021-10-12 14:17:12','','Man working on roof','','inherit','open','closed','','banner-01','','','2021-10-12 14:17:12','2021-10-12 14:17:12','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-01.jpg',0,'attachment','image/jpeg',0),(716,1,'2021-10-12 14:52:16','2021-10-12 14:52:16','','Wood working','','inherit','open','closed','','service-01','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',714,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-01.jpg',0,'attachment','image/jpeg',0),(733,1,'2021-10-12 16:22:21','2021-10-12 16:22:21','','Painting wall','','inherit','open','closed','','service-02','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',732,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-02.jpg',0,'attachment','image/jpeg',0),(739,1,'2021-10-12 16:53:50','2021-10-12 16:53:50','','Plumber working','','inherit','open','closed','','service-03','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',738,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-03.jpg',0,'attachment','image/jpeg',0),(742,1,'2021-10-12 16:59:37','2021-10-12 16:59:37','','Man with tool belt','','inherit','open','closed','','service-04','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',741,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/service-04.jpg',0,'attachment','image/jpeg',0),(957,1,'2021-10-14 15:10:04','2021-10-14 15:10:04','','Woman answering phone call','','inherit','open','closed','','info-02','','','2021-10-14 15:10:04','2021-10-14 15:10:04','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-02.jpg',0,'attachment','image/jpeg',0),(987,1,'2021-10-14 16:31:12','2021-10-14 16:31:12','','Handyman with tools','','inherit','open','closed','','info-04','','','2021-10-14 16:31:12','2021-10-14 16:31:12','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-04.jpg',0,'attachment','image/jpeg',0),(989,1,'2021-10-14 16:34:33','2021-10-14 16:34:33','','Wood working','','inherit','open','closed','','info-05','','','2021-10-14 16:34:33','2021-10-14 16:34:33','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-05.jpg',0,'attachment','image/jpeg',0),(1151,1,'2021-10-18 17:29:47','2021-10-18 17:29:47','','Older man working','','inherit','open','closed','','banner-05','','','2021-10-18 17:29:47','2021-10-18 17:29:47','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/banner-05.jpg',0,'attachment','image/jpeg',0),(1161,1,'2021-10-18 17:47:28','2021-10-18 17:47:28','','Man grinding metal part','','inherit','open','closed','','info-06','','','2021-10-18 17:47:28','2021-10-18 17:47:28','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/info-06.jpg',0,'attachment','image/jpeg',0),(1325,1,'2021-10-19 18:17:18','2021-10-19 18:17:18','','Avatar','','inherit','open','closed','','avatar-01','','','2021-10-19 18:17:18','2021-10-19 18:17:18','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/avatar-01.jpg',0,'attachment','image/jpeg',0),(141,1,'2021-01-26 10:30:52','2021-01-26 10:30:52','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_right=\"0px\" padding_left=\"0px\" flex_column_spacing=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_text label=\"First Name:\" name=\"first_name\" required=\"no\" minlength=\"0\" maxlength=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_text label=\"Surname:\" name=\"surname\" required=\"no\" minlength=\"0\" maxlength=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_email label=\"Your Email:\" name=\"your_email\" required=\"no\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_phone_number label=\"Telephone:\" name=\"telephone\" required=\"no\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_textarea label=\"Your Message:\" name=\"your_message\" required=\"no\" rows=\"4\" class=\"textarea-form\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_submit color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"13px\"]Submit Your Quote Request[/fusion_form_submit][fusion_form_notice success=\"Thank you for your message. It has been sent.\" error=\"There was an error trying to send your message. Please try again later.\" margin_top=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Request A Quote','','publish','closed','closed','','request-a-quote','','','2021-01-26 10:30:52','2021-01-26 10:30:52','',0,'https://test-site.wlvrotary.org/fusion_form/request-a-quote/',0,'fusion_form','',0),(474,1,'2021-04-01 08:30:10','2021-04-01 08:30:10','[fusion_builder_column type=\"1_1\" type=\"1_1\" element_content=\"\" padding_top=\"35px\" padding_right=\"35px\" padding_bottom=\"35px\" padding_left=\"35px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 90% ),var(--awb-color8-a))\" border_style=\"solid\" last=\"no\" hover_type=\"none\" border_position=\"all\" background_color=\"var(--awb-color1)\" dynamic_params=\"e30=\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" show_title=\"yes\" show_cats=\"yes\" show_price=\"yes\" show_rating=\"yes\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"yes\" image_link=\"yes\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"20px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" margin_bottom=\"15px\" title_link=\"on\"]\n<p>Service 01</p>\n[/fusion_title][fusion_tb_meta layout=\"floated\" read_time=\"200\" alignment=\"center\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" meta=\"word_count,read_time\" margin_bottom=\"20px\" border_top=\"0px\" border_bottom=\"0px\" /][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"70px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\" margin_bottom=\"20px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/fusion_text][fusion_separator style_type=\"none\" flex_grow=\"1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_button target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" margin_top=\"10px\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More[/fusion_button][/fusion_builder_column]','Blog','','publish','closed','closed','','blog','','','2021-04-01 08:30:10','2021-04-01 08:30:10','',0,'https://test-site.wlvrotary.org/fusion_element/blog/',0,'fusion_element','',0),(714,1,'2021-10-12 14:40:27','2021-10-12 14:40:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]HIGHLY EXPERIENCED HANDYMEN[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]\r\n<p>Trusted &amp; Reliable</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"50px\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40px\"]\r\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Proin eget tortor risus.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/contact-us/\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color8)\"]Contact us for a free quote[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Carpentry','Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui vivamus.','publish','open','closed','','carpentry','','','2021-10-12 14:40:27','2021-10-12 14:40:27','',0,'https://test-site.wlvrotary.org/?post_type=avada_portfolio&amp;p=714',0,'avada_portfolio','',0),(718,1,'2021-10-12 14:57:15','2021-10-12 14:57:15','[fusion_builder_column type=\"1_1\" type=\"1_1\" element_content=\"\" padding_bottom=\"50px\" padding_top=\"40px\" padding_right=\"40px\" padding_left=\"40px\" last=\"no\" hover_type=\"none\" border_position=\"all\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 91% ),var(--awb-color8-a))\" border_style=\"solid\" background_color=\"var(--awb-color1)\" dynamic_params=\"e30=\" box_shadow=\"no\" box_shadow_vertical=\"2px\" box_shadow_horizontal=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" show_title=\"yes\" show_cats=\"yes\" show_price=\"yes\" show_rating=\"yes\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"yes\" image_link=\"yes\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"20px\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" title_link=\"on\"]\n<p>Service 01</p>\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\" margin_bottom=\"25px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/fusion_text][fusion_separator style_type=\"none\" flex_grow=\"1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_button link=\"#\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]Read More[/fusion_button][/fusion_builder_column]','Services','','publish','closed','closed','','services','','','2021-10-12 14:57:15','2021-10-12 14:57:15','',0,'https://test-site.wlvrotary.org/fusion_element/services/',0,'fusion_element','',0),(732,1,'2021-10-12 16:23:14','2021-10-12 16:23:14','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]HIGHLY EXPERIENCED HANDYMEN[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]\r\n<p>Best Services In Town</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"50px\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40px\"]\r\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Proin eget tortor risus.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/contact-us/\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color8)\"]Contact us for a free quote[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Decorating','Nulla porttitor accumsan tincidunt vivamus magna quis lorem ut libero.','publish','open','closed','','decorating','','','2021-10-12 16:23:14','2021-10-12 16:23:14','',0,'https://test-site.wlvrotary.org/?post_type=avada_portfolio&amp;p=732',0,'avada_portfolio','',0),(738,1,'2021-10-12 16:54:08','2021-10-12 16:54:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]HIGHLY EXPERIENCED HANDYMEN[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]\r\n<p>We’re Here To Help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"50px\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40px\"]\r\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Proin eget tortor risus.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/contact-us/\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color8)\"]Contact us for a free quote[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Plumbing','Donec rutrum congue leo eget malesuada praesent sed porttitor lectus leget tortor.','publish','open','closed','','plumbing','','','2021-10-12 16:54:08','2021-10-12 16:54:08','',0,'https://test-site.wlvrotary.org/?post_type=avada_portfolio&amp;p=738',0,'avada_portfolio','',0),(741,1,'2021-10-12 17:00:14','2021-10-12 17:00:14','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]HIGHLY EXPERIENCED HANDYMEN[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"50px\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40px\"]\r\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Proin eget tortor risus.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/contact-us/\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color8)\"]Contact us for a free quote[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Maintenance','Nulla quis lorem ut libero malesuada feugiat mauris blandit aliquet elit.','publish','open','closed','','maintenance','','','2021-10-12 17:00:14','2021-10-12 17:00:14','',0,'https://test-site.wlvrotary.org/?post_type=avada_portfolio&amp;p=741',0,'avada_portfolio','',0),(1068,1,'2021-10-18 14:30:56','2021-10-18 14:30:56','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" element_content=\"\" padding_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_left=\"0px\" last=\"true\" hover_type=\"none\" border_position=\"all\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 91% ),var(--awb-color8-a))\" border_style=\"solid\" background_color=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" box_shadow=\"no\" box_shadow_vertical=\"2px\" box_shadow_horizontal=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" show_title=\"yes\" show_cats=\"yes\" show_price=\"yes\" show_rating=\"yes\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"yes\" image_link=\"yes\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"30px\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"25px\"]\n<p>Service 01</p>\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\" margin_bottom=\"25px\" margin_right=\"15%\" margin_left=\"15%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/fusion_text][fusion_separator style_type=\"none\" flex_grow=\"1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_button link=\"#\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]Read More[/fusion_button][/fusion_builder_column]','Services 2','','publish','closed','closed','','services-2','','','2021-10-18 14:30:56','2021-10-18 14:30:56','',0,'https://test-site.wlvrotary.org/fusion_element/services-cloned/',0,'fusion_element','',0),(1260,1,'2021-10-19 16:50:21','2021-10-19 16:50:21','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" element_content=\"\" padding_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_left=\"0px\" last=\"true\" hover_type=\"none\" border_position=\"all\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 91% ),var(--awb-color8-a))\" border_style=\"solid\" background_color=\"var(--awb-color1)\" dynamic_params=\"e30=\" box_shadow=\"no\" box_shadow_vertical=\"2px\" box_shadow_horizontal=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" background_color=\"var(--awb-color2)\" padding_top=\"8vw\" padding_right=\"6vw\" padding_bottom=\"8vw\" padding_left=\"6vw\" spacing_left=\"0\" spacing_right=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" font_size=\"36px\" title_link=\"on\"]\n<p>Service 01</p>\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" top_margin=\"10px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\" margin_bottom=\"25px\" font_size=\"18px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/fusion_text][fusion_button link=\"#\" target=\"_self\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]Read More[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifSwibGluayI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" spacing_left=\"0\" spacing_right=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"none\" flex_grow=\"1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][/fusion_builder_column]','Services 3','','publish','closed','closed','','services-2-2','','','2021-10-19 16:50:21','2021-10-19 16:50:21','',0,'https://test-site.wlvrotary.org/fusion_element/services-2-cloned/',0,'fusion_element','',0),(1279,1,'2021-10-19 17:15:43','2021-10-19 17:15:43','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" element_content=\"\" padding_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_left=\"0px\" last=\"true\" hover_type=\"none\" border_position=\"all\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 91% ),var(--awb-color8-a))\" border_style=\"solid\" background_color=\"var(--awb-color1)\" dynamic_params=\"e30=\" box_shadow=\"no\" box_shadow_vertical=\"2px\" box_shadow_horizontal=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifSwibGluayI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" background_color=\"var(--awb-color2)\" padding_top=\"8vw\" padding_right=\"6vw\" padding_bottom=\"8vw\" padding_left=\"6vw\" spacing_left=\"0\" spacing_right=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" font_size=\"36px\" title_link=\"on\"]\n<p>Service 01</p>\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" top_margin=\"10px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\" margin_bottom=\"25px\" font_size=\"18px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/fusion_text][fusion_button link=\"#\" target=\"_self\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]Read More[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"none\" flex_grow=\"1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][/fusion_builder_column]','Services 4','','publish','closed','closed','','services-2-2-2','','','2021-10-19 17:15:43','2021-10-19 17:15:43','',0,'https://test-site.wlvrotary.org/fusion_element/services-3-cloned/',0,'fusion_element','',0),(1361,1,'2021-10-20 14:12:38','2021-10-20 14:12:38','','Floating shelves','','inherit','open','closed','','blog-01','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',251,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/blog-01.jpg',0,'attachment','image/jpeg',0),(1363,1,'2021-10-20 14:15:53','2021-10-20 14:15:53','','Floating shelves','','inherit','open','closed','','gallery-01','','','2021-10-20 14:15:53','2021-10-20 14:15:53','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/gallery-01.jpg',0,'attachment','image/jpeg',0),(1369,1,'2021-10-20 14:32:14','2021-10-20 14:32:14','','Exterior patio','','inherit','open','closed','','blog-02','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',253,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/blog-02.jpg',0,'attachment','image/jpeg',0),(1370,1,'2021-10-20 14:45:15','2021-10-20 14:45:15','','Bath filling up','','inherit','open','closed','','blog-03','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',249,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/blog-03.jpg',0,'attachment','image/jpeg',0),(1374,1,'2021-10-20 15:06:05','2021-10-20 15:06:05','','Office interior','','inherit','open','closed','','blog-04','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',131,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/blog-04.jpg',0,'attachment','image/jpeg',0),(1375,1,'2021-10-20 15:12:07','2021-10-20 15:12:07','','Man drilling wood','','inherit','open','closed','','gallery-03','','','2021-10-20 15:12:07','2021-10-20 15:12:07','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/gallery-03.jpg',0,'attachment','image/jpeg',0),(1379,1,'2021-10-20 15:23:11','2021-10-20 15:23:11','','Man planning construction','','inherit','open','closed','','gallery-04','','','2021-10-20 15:23:11','2021-10-20 15:23:11','',0,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/10/gallery-04.jpg',0,'attachment','image/jpeg',0),(1381,1,'2021-10-20 15:27:24','2021-10-20 15:27:24','','Man drilling wood','','inherit','open','closed','','blog-08','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',124,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/blog-08.jpg',0,'attachment','image/jpeg',0),(1382,1,'2021-10-20 15:27:48','2021-10-20 15:27:48','','Man planning construction','','inherit','open','closed','','blog-07','','','2022-08-24 00:33:36','2022-08-24 00:33:36','',124,'https://avada.theme-fusion.com/handyman/wp-content/uploads/sites/156/2021/01/blog-07.jpg',0,'attachment','image/jpeg',0),(1963,1,'2023-01-08 19:40:46','2023-01-08 19:40:46','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A 501 (c)3 Charitable Corporation<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>In 1991, the board of directors of the Rotary Club of Westlake Village Sunrise made the decision to establish a 501 (c)3 nonprofit foundation to manage all incoming and outgoing donations from our club.  As a Rotary club, we are a 501 (c)4 nonprofit organization.  For the purpose of accepting tax deductible donations, it was important to form the Sunrise Rotary Foundation.</p><p>On December 31, 1991, we received our notification from the IRS and the Sunrise Rotary Foundation was officially established.  Our FEIN number is 77-0253850.  The Foundation Board is made up of five Rotarians, and serves as a separate entity to manage all funding from club fundraisers and donations.  All donations are given exclusively to nonprofit organizations with a 501 (c)3 status.  </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p>\n<p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p>\n<p></p>\n<p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Don Martin for additional information.</p>\n<p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','inherit','closed','closed','','1847-revision-v1','','','2023-01-08 19:40:46','2023-01-08 19:40:46','',1847,'https://test-site.wlvrotary.org/?p=1963',0,'revision','',0),(1906,1,'2022-10-19 22:57:40','2022-10-19 22:57:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Secondary Tagline Here<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(188, 52, 37);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p>\n<p style=\"color: rgb(188, 52, 37);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p>\r\n<p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p>\r\n</p>\r\n<p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Randy Strong for additional information.</p>\r\n<p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','inherit','closed','closed','','1847-revision-v1','','','2022-10-19 22:57:40','2022-10-19 22:57:40','',1847,'https://test-site.wlvrotary.org/?p=1906',0,'revision','',0),(1549,1,'2021-01-22 11:02:02','2021-01-22 11:02:02','','','','publish','closed','closed','','33','','','2021-01-22 11:02:02','2021-01-22 11:02:02','',0,'https://test-site.wlvrotary.org/?p=33',3,'nav_menu_item','',0),(1550,1,'2021-01-22 11:08:51','2021-01-22 11:08:51','','Like Us On Facebook','','publish','closed','closed','','like-us-on-facebook','','','2021-01-22 11:08:51','2021-01-22 11:08:51','',0,'https://test-site.wlvrotary.org/?p=55',1,'nav_menu_item','',0),(1551,1,'2021-01-22 13:29:38','2021-01-22 13:29:38','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"32px\" padding_bottom=\"32px\" admin_label=\"Contact Bar\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align_small=\"center\" content_align=\"left\" size=\"2\" font_size=\"18px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color4)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Highly Qualified, Time Served Professional Handyman</p>\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\"][fusion_li_item icon=\"fa-phone-square fas\"]<span style=\"color: var(--awb-color1); letter-spacing: 2px; line-height: 27.2px; font-size: 12px; font-family: Poppins; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Poppins\" data-fusion-google-variant=\"600\">1-800-123-4567</span>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color4)\" padding_top=\"60px\" padding_bottom=\"60px\" admin_label=\"Call To Actions\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" padding_bottom_small=\"25px\" spacing_right_medium=\"0px\" type_medium=\"1_4\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"69|full\" max_width=\"190px\" hover_type=\"none\" align_medium=\"none\" align_small=\"center\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/01/handyman-logo@2x.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_4\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"false\" type_small=\"1_1\" margin_bottom_small=\"20px\" type_medium=\"3_4\" min_height=\"\" link=\"\"][fusion_button link=\"http://bit.ly/2Y2KxDI\" target=\"_self\" alignment=\"right\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"custom\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" border_radius_top_left=\"48px\" border_radius_top_right=\"48px\" border_radius_bottom_right=\"48px\" border_radius_bottom_left=\"48px\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" margin_right=\"20px\"]Chat Directly With Us[/fusion_button][fusion_button link=\"https://test-site.wlvrotary.org/contact-us/\" target=\"_self\" alignment=\"right\" color=\"custom\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_radius_top_left=\"48px\" border_radius_top_right=\"48px\" border_radius_bottom_right=\"48px\" border_radius_bottom_left=\"48px\" border_hover_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\"]Book An Appointment[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"false\" type_small=\"1_1\" margin_bottom_small=\"0px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_button link=\"http://bit.ly/2Y2KxDI\" target=\"_self\" alignment=\"right\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"custom\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" border_radius_top_left=\"48px\" border_radius_top_right=\"48px\" border_radius_bottom_right=\"48px\" border_radius_bottom_left=\"48px\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" alignment_small=\"center\" margin_bottom=\"20px\"]Chat Directly With Us[/fusion_button][fusion_button link=\"https://test-site.wlvrotary.org/contact-us/\" target=\"_self\" alignment=\"right\" color=\"custom\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_radius_top_left=\"48px\" border_radius_top_right=\"48px\" border_radius_bottom_right=\"48px\" border_radius_bottom_left=\"48px\" border_hover_color=\"var(--awb-color8)\" alignment_small=\"center\"]Book An Appointment[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"60px\" admin_label=\"Footer\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_3\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu menu=\"handyman-footer-left-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"column\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"15px\" text_transform=\"none\" main_justify_content=\"left\" gap=\"14px\" transition_type=\"fade\" icons_position=\"left\" icons_size=\"16\" active_color=\"var(--awb-color4)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" submenu_text_transform=\"none\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_icon_close=\"fa-times fas\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_items_height=\"65\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" animation_direction=\"left\" animation_speed=\"0.3\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_3\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_menu menu=\"handyman-footer-middle-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"column\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"15px\" text_transform=\"none\" main_justify_content=\"left\" gap=\"14px\" transition_type=\"fade\" icons_position=\"left\" icons_size=\"16\" active_color=\"var(--awb-color4)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" submenu_text_transform=\"none\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_icon_close=\"fa-times fas\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_items_height=\"65\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" animation_direction=\"left\" animation_speed=\"0.3\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_3\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_menu menu=\"handyman-footer-right-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"column\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"flex-start\" text_transform=\"none\" main_justify_content=\"left\" gap=\"14px\" transition_type=\"fade\" icons_position=\"left\" icons_size=\"16\" active_color=\"var(--awb-color4)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" submenu_text_transform=\"none\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_icon_close=\"fa-times fas\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_items_height=\"65\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" animation_direction=\"left\" animation_speed=\"0.3\" font_size=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_menu menu=\"handyman-footer-social\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"column\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"15px\" text_transform=\"none\" main_justify_content=\"right\" gap=\"9px\" transition_type=\"fade\" icons_position=\"right\" icons_size=\"16\" active_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" submenu_text_transform=\"none\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_icon_close=\"fa-times fas\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_items_height=\"65\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" animation_direction=\"left\" animation_speed=\"0.3\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"60px\" padding_top=\"30px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 60% ),calc( var(--awb-color8-a) - 72% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"1\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" content_alignment_small=\"center\" content_alignment=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgQ29weXJpZ2h0IDIwMTIgLSAiLCJhZnRlciI6IiB8ICAgQXZhZGEgVGhlbWUgYnkgPGEgaHJlZj0naHR0cDovL3RoZW1lLWZ1c2lvbi5jb20nIHRhcmdldD0nX2JsYW5rJz5UaGVtZUZ1c2lvbjwvYT4gICAgIHwgICBBbGwgUmlnaHRzIFJlc2VydmVkICAgfCAgIFBvd2VyZWQgYnkgPGEgaHJlZj0naHR0cDovL3dvcmRwcmVzcy5vcmcnIHRhcmdldD0nX2JsYW5rJz5Xb3JkUHJlc3M8L2E+In19\" font_size=\"14px\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Footer Design','','publish','closed','closed','','custom-footer-design','','','2021-01-22 13:29:38','2021-01-22 13:29:38','',0,'https://test-site.wlvrotary.org/fusion_tb_section/custom-footer-design/',0,'fusion_tb_section','',0),(103,1,'2021-01-25 12:58:46','2021-01-25 12:58:46','','Avada Handyman','','publish','closed','closed','','avada-handyman','','','2021-01-25 12:58:46','2021-01-25 12:58:46','',0,'https://test-site.wlvrotary.org/?fusion_icons=avada-handyman',0,'fusion_icons','',0),(144,1,'2021-01-26 11:32:23','2021-01-26 11:32:23','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','publish','closed','closed','','custom-global-header','','','2022-09-27 00:34:01','2022-09-27 00:34:01','',0,'https://test-site.wlvrotary.org/fusion_tb_section/custom-global-header/',0,'fusion_tb_section','',0),(1832,1,'2022-09-27 00:34:01','2022-09-27 00:34:01','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-09-27 00:34:01','2022-09-27 00:34:01','',144,'https://test-site.wlvrotary.org/?p=1832',0,'revision','',0),(229,1,'2021-01-27 15:28:36','2021-01-27 15:28:36','{\\\"conditions\\\":{\\\"singular_post\\\":{\\\"label\\\":\\\"All Posts\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_post\\\"}},\\\"template_terms\\\":{\\\"header\\\":1341,\\\"content\\\":\\\"239\\\"}}','Custom Blog Post','','publish','closed','closed','','custom-blog-post','','','2021-01-27 15:28:36','2021-01-27 15:28:36','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/custom-blog-post/',0,'fusion_tb_layout','',0),(239,1,'2021-01-28 09:49:44','2021-01-28 09:49:44','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" padding_top_small=\"40px\" padding_bottom_small=\"0px\" admin_label=\"Single Post Content\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_top_small=\"-80px\" margin_bottom=\"70px\" min_height=\"\" link=\"\"][fusion_imageframe hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_top=\"0px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_tb_content hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"90px\" padding_bottom=\"90px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" admin_label=\"Single Post Related Posts\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>continue reading</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" letter_spacing=\"-1px\"]\r\n<p>Related Posts</p>\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"70px\" last=\"no\" border_position=\"all\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"related\" post_type=\"post\" terms_by=\"category\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Blog Content','','publish','closed','closed','','custom-blog-content','','','2021-01-28 09:49:44','2021-01-28 09:49:44','',0,'https://test-site.wlvrotary.org/fusion_tb_section/custom-blog-content/',0,'fusion_tb_section','',0),(336,1,'2021-01-29 11:19:07','2021-01-29 11:19:07','{\\\"conditions\\\":{\\\"not_found\\\":{\\\"label\\\":\\\"404 Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"not_found\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\",\\\"content\\\":\\\"340\\\"}}','Custom 404','','publish','closed','closed','','custom-404','','','2021-01-29 11:19:07','2021-01-29 11:19:07','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/custom-404/',0,'fusion_tb_layout','',0),(340,1,'2021-01-29 11:20:28','2021-01-29 11:20:28','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"90px\" padding_bottom=\"0px\" margin_bottom=\"0px\" admin_label=\"404 Content\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_right=\"120px\" padding_left=\"120px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_left_small=\"0px\" padding_right_small=\"0px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>you\'Ve taken a wrong turn</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"100px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-10px\"]\r\n<p>404</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at quam eu diam volutpat vehicula gravida in velit. Suspendisse</p>\r\n[/fusion_text][fusion_button link=\"https://test-site.wlvrotary.org/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Back To Homepage[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 81% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" element_content=\"\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"80px\" bottom_margin=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Latest News\" admin_toggled=\"no\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>articles from the workshop</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom 404 Content','','publish','closed','closed','','custom-404-content','','','2021-01-29 11:20:28','2021-01-29 11:20:28','',0,'https://test-site.wlvrotary.org/fusion_tb_section/custom-404-content/',0,'fusion_tb_section','',0),(573,1,'2021-04-02 12:57:14','2021-04-02 12:57:14','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"32px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>How Can We Help You?</p>\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_select name=\"enquiry_type\" required=\"yes\" options=\"W1swLCJJIGhhdmUgYW4gZW5xdWlyeSIsIiJdLFsxLCJJIHdvdWxkIGxpa2UgYSBxdW90ZSIsIiJdXQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_text label=\"Your Name:\" name=\"your_name\" required=\"no\" disabled=\"no\" minlength=\"0\" maxlength=\"0\" logics=\"W3sib3BlcmF0b3IiOiJvciIsImNvbXBhcmlzb24iOiJjb250YWlucyIsImZpZWxkIjoiZW5xdWlyeV90eXBlIiwidmFsdWUiOiJlbnF1aXJ5In0seyJvcGVyYXRvciI6ImFuZCIsImNvbXBhcmlzb24iOiJjb250YWlucyIsImZpZWxkIjoiZW5xdWlyeV90eXBlIiwidmFsdWUiOiJxdW90ZSJ9XQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_email label=\"Your Email Address:\" name=\"your_email_address\" required=\"no\" logics=\"W3sib3BlcmF0b3IiOiJvciIsImNvbXBhcmlzb24iOiJjb250YWlucyIsImZpZWxkIjoiZW5xdWlyeV90eXBlIiwidmFsdWUiOiJlbnF1aXJ5In0seyJvcGVyYXRvciI6ImFuZCIsImNvbXBhcmlzb24iOiJjb250YWlucyIsImZpZWxkIjoiZW5xdWlyeV90eXBlIiwidmFsdWUiOiJxdW90ZSJ9XQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_checkbox name=\"Newsletter\" required=\"no\" options=\"W1swLCJTaWduIG1lIHVwIHRvIHRoZSBtb250aGx5IG5ld3NsZXR0ZXIgZm9yIHRoZSBsYXRlc3QgdXBkYXRlcyIsIiJdXQ==\" form_field_layout=\"stacked\" logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJ5b3VyX2VtYWlsX2FkZHJlc3MiLCJ2YWx1ZSI6IiJ9XQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_text label=\"Your ZIP Code:\" name=\"your_zip_code\" required=\"no\" disabled=\"no\" minlength=\"0\" maxlength=\"0\" logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiY29udGFpbnMiLCJmaWVsZCI6ImVucXVpcnlfdHlwZSIsInZhbHVlIjoicXVvdGUifV0=\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"W10=\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_phone_number label=\"Your Telephone Number:\" name=\"your_telephone_number\" required=\"no\" input_field_icon=\"fa-phone-square-alt fas\" logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiY29udGFpbnMiLCJmaWVsZCI6ImVucXVpcnlfdHlwZSIsInZhbHVlIjoicXVvdGUifV0=\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_range label=\"Rate Your Urgency (0 being not urgent / 10 being an emergency)\" name=\"urgency\" required=\"no\" min=\"0\" max=\"10\" step=\"1\" value=\"0\" logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiY29udGFpbnMiLCJmaWVsZCI6ImVucXVpcnlfdHlwZSIsInZhbHVlIjoicXVvdGUifV0=\" /][fusion_form_checkbox name=\"charge\" required=\"no\" options=\"W1swLCJJIGFja25vd2xlZGdlIHRoYXQgdGhlcmUgaXMgYW4gZW1lcmdlbmN5IGNhbGxvdXQgY2hhcmdlIG9mICQyMDAgYW5kIGFtIGhhcHB5IHRvIHBheSB0aGlzIG9uIGFycml2YWwiLCIiXV0=\" form_field_layout=\"floated\" logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZ3JlYXRlci10aGFuIiwiZmllbGQiOiJ1cmdlbmN5IiwidmFsdWUiOiI4In1d\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_radio label=\"What Services Are You Interested In?\" name=\"what_services_are_you_interested_in\" required=\"no\" options=\"W1swLCJDYXJwZW50cnkiLCIiXSxbMCwiUGx1bWJpbmciLCIiXSxbMCwiRGVjb3JhdGluZyIsIiJdLFswLCJNYWludGVuYW5jZSIsIiJdXQ==\" form_field_layout=\"floated\" logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiY29udGFpbnMiLCJmaWVsZCI6ImVucXVpcnlfdHlwZSIsInZhbHVlIjoicXVvdGUifV0=\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_textarea label=\"Your Message:\" name=\"your_message\" required=\"no\" disabled=\"no\" rows=\"4\" logics=\"W3sib3BlcmF0b3IiOiJvciIsImNvbXBhcmlzb24iOiJjb250YWlucyIsImZpZWxkIjoiZW5xdWlyeV90eXBlIiwidmFsdWUiOiJlbnF1aXJ5In0seyJvcGVyYXRvciI6ImFuZCIsImNvbXBhcmlzb24iOiJjb250YWlucyIsImZpZWxkIjoiZW5xdWlyeV90eXBlIiwidmFsdWUiOiJxdW90ZSJ9XQ==\" /][fusion_form_submit color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"13px\"]Submit Your Enquiry[/fusion_form_submit][fusion_form_notice success=\"Thank you for your message. It has been sent.\" error=\"There was an error trying to send your message. Please try again later.\" margin_top=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact Us / Quote','','publish','closed','closed','','request-a-quote-2','','','2021-04-02 12:57:14','2021-04-02 12:57:14','',0,'https://test-site.wlvrotary.org/fusion_form/request-a-quote-cloned/',0,'fusion_form','',0),(689,1,'2021-10-12 14:03:26','2021-10-12 14:03:26','{\\\"conditions\\\":{\\\"specific_page|1700\\\":{\\\"label\\\":\\\"Home - Rotary Test\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1700\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\"}}','Homepage','','publish','closed','closed','','homepage','','','2022-08-24 01:52:19','2022-08-24 01:52:19','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/homepage/',0,'fusion_tb_layout','',0),(1706,1,'2022-08-24 01:52:01','2022-08-24 01:52:01','{\\\"conditions\\\":[],\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\"}}','Homepage','','inherit','closed','closed','','689-revision-v1','','','2022-08-24 01:52:01','2022-08-24 01:52:01','',689,'https://test-site.wlvrotary.org/?p=1706',0,'revision','',0),(690,1,'2021-10-12 14:03:38','2021-10-12 14:03:38','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\" flex_column_spacing=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"14\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"https://www.facebook.com/rotarywestlakesunrise\" instagram=\"https://www.instagram.com/westlakevillagesunriserotary\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" email=\"info@wlvrotary.org\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','publish','closed','closed','','homepage-header','','','2023-01-10 05:22:39','2023-01-10 05:22:39','',0,'https://test-site.wlvrotary.org/fusion_tb_section/homepage-header/',0,'fusion_tb_section','',0),(1710,1,'2022-08-24 01:58:05','2022-08-24 01:58:05','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"#\" instagram=\"#\" email=\"#\" phone=\"#\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 01:58:05','2022-08-24 01:58:05','',690,'https://test-site.wlvrotary.org/?p=1710',0,'revision','',0),(1341,1,'2021-10-19 19:10:44','2021-10-19 19:10:44','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color7)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-footer-right-menu\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 22% ))\" active_color=\"var(--awb-color1)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"69|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/01/handyman-logo@2x.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color8)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-color1)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"-120px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"70px\" padding_bottom=\"147px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"50px\" padding_bottom_small=\"165px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Single Post Header','','publish','closed','closed','','single-post-header','','','2021-10-19 19:10:44','2021-10-19 19:10:44','',0,'https://test-site.wlvrotary.org/fusion_tb_section/single-post-header/',0,'fusion_tb_section','',0),(1403,1,'2021-10-20 16:39:04','2021-10-20 16:39:04','{\\\"conditions\\\":{\\\"singular_avada_portfolio\\\":{\\\"label\\\":\\\"All Portfolio\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_avada_portfolio\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"1404\\\"}}','Services','','publish','closed','closed','','services','','','2021-10-20 16:39:04','2021-10-20 16:39:04','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/services/',0,'fusion_tb_layout','',0),(1404,1,'2021-10-20 16:39:14','2021-10-20 16:39:14','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" padding_bottom=\"90px\" padding_top_small=\"0px\" admin_label=\"Service Content\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"up\" animation_speed=\"1.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_tb_content excerpt=\"no\" excerpt_length=\"55\" strip_html=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Services Content','','publish','closed','closed','','services-content','','','2021-10-20 16:39:14','2021-10-20 16:39:14','',0,'https://test-site.wlvrotary.org/fusion_tb_section/services-content/',0,'fusion_tb_section','',0),(1442,1,'2021-10-20 18:11:41','2021-10-20 18:11:41','{\\\"conditions\\\":{\\\"all_archives\\\":{\\\"label\\\":\\\"All Archives Pages\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"all_archives\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"1443\\\"}}','Post Archives','','publish','closed','closed','','post-archives','','','2021-10-20 18:11:41','2021-10-20 18:11:41','',0,'https://test-site.wlvrotary.org/fusion_tb_layout/post-archives/',0,'fusion_tb_layout','',0),(1443,1,'2021-10-20 18:12:27','2021-10-20 18:12:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"yes\" admin_label=\"Archives\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"474\" post_card_list_view=\"0\" number_posts=\"0\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" columns=\"3\" column_spacing=\"60\" row_spacing=\"60\" source=\"posts\"]Nothing Found[/fusion_tb_post_card_archives][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Post Archives Content','','publish','closed','closed','','post-archives-content','','','2021-10-20 18:12:27','2021-10-20 18:12:27','',0,'https://test-site.wlvrotary.org/fusion_tb_section/post-archives-content/',0,'fusion_tb_section','',0),(1552,1,'2021-12-07 19:29:17','2021-12-07 19:29:17','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_right=\"0px\" padding_left=\"0px\" flex_column_spacing=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form_text name=\"first_name\" required=\"no\" minlength=\"0\" maxlength=\"0\" disabled=\"no\" placeholder=\"Your name\" /][fusion_form_phone_number name=\"telephone\" required=\"yes\" placeholder=\"Your phone number\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_submit color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\"]Request a callback[/fusion_form_submit][fusion_form_notice success=\"VGhhbmsgeW91LCB3ZSB3aWxsIGNhbGwgeW91IGJhY2sgc2hvcnRseSE=\" error=\"There was an error trying to send your message. Please try again later.\" margin_top=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Callback','','publish','closed','closed','','request-a-quote-3','','','2021-12-07 19:29:17','2021-12-07 19:29:17','',0,'https://test-site.wlvrotary.org/fusion_form/request-a-quote-cloned/',0,'fusion_form','',0),(1561,1,'2021-01-22 11:08:51','2021-01-22 11:08:51','','Follow Us On Twitter','','publish','closed','closed','','follow-us-on-twitter','','','2021-01-22 11:08:51','2021-01-22 11:08:51','',0,'https://test-site.wlvrotary.org/?p=56',2,'nav_menu_item','',0),(1562,1,'2021-01-22 11:08:51','2021-01-22 11:08:51','','Follow Us On Instagram','','publish','closed','closed','','follow-us-on-instagram','','','2021-01-22 11:08:51','2021-01-22 11:08:51','',0,'https://test-site.wlvrotary.org/?p=57',3,'nav_menu_item','',0),(1563,1,'2021-01-22 11:08:51','2021-01-22 11:08:51','','Follow Us On LinkedIn','','publish','closed','closed','','follow-us-on-linkedin','','','2021-01-22 11:08:51','2021-01-22 11:08:51','',0,'https://test-site.wlvrotary.org/?p=58',4,'nav_menu_item','',0),(1434,1,'2021-10-20 17:59:25','2021-10-20 17:59:25','','Maintenance','','publish','closed','closed','','maintenance','','','2021-10-20 17:59:25','2021-10-20 17:59:25','',0,'https://test-site.wlvrotary.org/?p=1434',3,'nav_menu_item','',0),(1435,1,'2021-10-20 17:59:25','2021-10-20 17:59:25','','Plumbing','','publish','closed','closed','','plumbing','','','2021-10-20 17:59:25','2021-10-20 17:59:25','',0,'https://test-site.wlvrotary.org/?p=1435',4,'nav_menu_item','',0),(1436,1,'2021-10-20 17:59:25','2021-10-20 17:59:25','','Decorating','','publish','closed','closed','','decorating','','','2021-10-20 17:59:25','2021-10-20 17:59:25','',0,'https://test-site.wlvrotary.org/?p=1436',5,'nav_menu_item','',0),(1437,1,'2021-10-20 17:59:25','2021-10-20 17:59:25','','Carpentry','','publish','closed','closed','','carpentry','','','2021-10-20 17:59:25','2021-10-20 17:59:25','',0,'https://test-site.wlvrotary.org/?p=1437',6,'nav_menu_item','',0),(1438,1,'2021-10-20 18:03:13','2021-10-20 18:03:10','','Carpentry','','publish','closed','closed','','carpentry-2','','','2021-10-20 18:03:13','2021-10-20 18:03:10','',0,'https://test-site.wlvrotary.org/?p=1438',1,'nav_menu_item','',0),(1439,1,'2021-10-20 18:03:13','2021-10-20 18:03:10','','Maintenance','','publish','closed','closed','','maintenance-2','','','2021-10-20 18:03:13','2021-10-20 18:03:10','',0,'https://test-site.wlvrotary.org/?p=1439',2,'nav_menu_item','',0),(1440,1,'2021-10-20 18:03:13','2021-10-20 18:03:10','','Decorating','','publish','closed','closed','','decorating-2','','','2021-10-20 18:03:13','2021-10-20 18:03:10','',0,'https://test-site.wlvrotary.org/?p=1440',3,'nav_menu_item','',0),(1441,1,'2021-10-20 18:03:13','2021-10-20 18:03:10','','Plumbing','','publish','closed','closed','','plumbing-2','','','2021-10-20 18:03:13','2021-10-20 18:03:10','',0,'https://test-site.wlvrotary.org/?p=1441',4,'nav_menu_item','',0),(1916,1,'2022-12-28 20:50:12','2022-12-28 20:50:12','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span><br></p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span><br></p><br>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-12-28 20:50:12','2022-12-28 20:50:12','',1700,'https://test-site.wlvrotary.org/?p=1916',0,'revision','',0),(1913,0,'2022-12-11 09:51:36','0000-00-00 00:00:00','','Executive Board Lunch','','draft','open','closed','','executive-board-lunch','','','2022-12-11 09:51:36','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1913',0,'ajde_events','',0),(1959,1,'2023-01-08 18:58:53','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-01-08 18:58:53','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?p=1959',0,'post','',0),(1915,1,'2022-12-28 20:37:53','2022-12-28 20:37:53','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. <br></p><p style=\"color: rgb(193, 0, 0);\"></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color6);\">We are motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-12-28 20:37:53','2022-12-28 20:37:53','',1700,'https://test-site.wlvrotary.org/?p=1915',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1929,1,'2023-01-04 23:14:42','2023-01-04 23:14:42','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:14:42','2023-01-04 23:14:42','',1700,'https://test-site.wlvrotary.org/?p=1929',0,'revision','',0),(1568,1,'2021-01-22 10:57:27','2021-01-22 10:57:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50px\" padding_bottom=\"0px\" admin_label=\"Contact Form\" padding_top_small=\"0px\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" last=\"false\" border_position=\"all\" first=\"true\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"742|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" background_color=\"var(--awb-color8)\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]Call us[/fusion_title][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>24/7 emergency callout</p>\r\n[/fusion_text][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-phone fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\" textcolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 28% ))\"][fusion_li_item]1-800-123-6789[/fusion_li_item][fusion_li_item]\r\n<p>1-800-123-9874</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"573\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Safety First\" padding_top=\"70px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"50px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"50px\" padding_right_small=\"50px\" padding_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" line_height=\"var(--awb-typography2-line-height)\" margin_bottom=\"25px\"]HIGHLY EXPERIENCED HANDYMEN[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\" margin_top_small=\"0\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact Us','','publish','closed','closed','','contact-us','','','2021-01-22 10:57:27','2021-01-22 10:57:27','',0,'https://test-site.wlvrotary.org/?page_id=18',0,'page','',0),(1917,1,'2022-12-28 20:51:58','2022-12-28 20:51:58','','e00f5922-442b-44a2-acef-4f7b4b7bea9b','','inherit','open','closed','','e00f5922-442b-44a2-acef-4f7b4b7bea9b','','','2022-12-28 20:51:58','2022-12-28 20:51:58','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg',0,'attachment','image/jpeg',0),(1919,1,'2022-12-28 21:04:40','2022-12-28 21:04:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-12-28 21:04:40','2022-12-28 21:04:40','',1700,'https://test-site.wlvrotary.org/?p=1919',0,'revision','',0),(1918,1,'2022-12-28 21:03:06','2022-12-28 21:03:06','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-12-28 21:03:06','2022-12-28 21:03:06','',1700,'https://test-site.wlvrotary.org/?p=1918',0,'revision','',0),(1571,1,'2021-01-22 10:58:18','2021-01-22 10:58:18','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" padding_bottom=\"90px\" admin_label=\"Privacy Policy\" padding_top_small=\"0px\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" type_medium=\"2_3\" type_small=\"5_6\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]\r\n<p>Avada Handyman Privacy Policy</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas hendrerit viverra risus. Curabitur ut tristique nisi. Sed finibus lorem odio, id blandit nulla lacinia sed. Nullam interdum lacinia dolor, a volutpat sem tempor ut. Fusce pellentesque eu ante sed scelerisque. Sed dignissim vitae libero eu vestibulum. Ut ultricies maximus nunc id efficitur. Integer erat justo, tristique at eleifend at, fermentum a turpis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Curabitur sollicitudin, mi sed mattis eleifend, nisi justo semper enim, sit amet consequat.</p>\r\n<p>Mauris vitae lorem suscipit, pharetra ex et, commodo diam. Maecenas convallis nibh quis ex fringilla, tincidunt hendrerit nisi ornare. Morbi volutpat viverra nibh vitae rutrum. Nunc in risus egestas, ultricies nulla vel, ullamcorper nisl. Maecenas luctus, risus id ornare pellentesque, nunc purus porta tortor, quis fermentum velit tellus eu leo. Pellentesque et turpis sed massa lacinia efficitur sed ornare dolor. Donec laoreet vehicula nibh vitae ultricies. Ut ac posuere justo. Morbi porta mi eu dui auctor, eget dapibus urna bibendum. Ut libero dolor, tempus ut rhoncus rhoncus, consectetur et nunc. Etiam viverra et nulla quis commodo. Sed in sem vestibulum mi egestas sagittis. Sed nec ex suscipit, molestie quam sit amet, aliquam purus. In ut leo id ligula malesuada malesuada. Interdum et malesuada fames ac ante ipsum primis in faucibus.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Privacy Policy','','publish','closed','closed','','privacy-policy-2','','','2021-01-22 10:58:18','2021-01-22 10:58:18','',0,'https://test-site.wlvrotary.org/?page_id=24',0,'page','',0),(1572,1,'2021-10-20 18:05:11','2021-01-22 11:07:16','','','','publish','closed','closed','','51','','','2021-10-20 18:05:11','2021-01-22 11:07:16','',0,'https://test-site.wlvrotary.org/?p=51',4,'nav_menu_item','',0),(1574,1,'2021-10-20 18:05:11','2021-01-22 11:07:16','','','','publish','closed','closed','','53','','','2021-10-20 18:05:11','2021-01-22 11:07:16','',0,'https://test-site.wlvrotary.org/?p=53',3,'nav_menu_item','',0),(124,1,'2021-01-26 09:07:28','2021-01-26 09:07:28','[fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" flex_column_spacing=\"0px\" type=\"flex\" admin_label=\"Content\" flex_justify_content=\"center\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>get to know us</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\" letter_spacing=\"-1px\"]\r\n<p>Honesty, integrity &amp; experience</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" spacing_right=\"10px\" spacing_left=\"10px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" min_height=\"\" link=\"\"][fusion_gallery lightbox=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" caption_style=\"resa\" caption_title_size=\"17px\" caption_text_color=\"var(--awb-color1)\" caption_title_color=\"var(--awb-color1)\" caption_title_transform=\"none\" caption_overlay_color=\"var(--awb-color8)\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-01.jpg\" image_id=\"1363\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-04.jpg\" image_id=\"1379\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-03.jpg\" image_id=\"1375\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Quisque velit nisi, pretium ut lacinia in, elementum id enim.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]\r\n<p>Nulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Sed porttitor lectus nibh. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Sed porttitor lectus nibh. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Planning The Perfect Patio','Curabitur aliquet quam id dui posuere blandit mauris blandit aliquet elit.','publish','open','open','','planning-the-perfect-patio','','','2021-01-26 09:07:28','2021-01-26 09:07:28','',0,'https://test-site.wlvrotary.org/?p=124',0,'post','',0),(128,1,'2021-01-26 09:43:23','2021-01-26 09:43:23','[fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" flex_column_spacing=\"0px\" type=\"flex\" admin_label=\"Content\" flex_justify_content=\"center\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>get to know us</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\" letter_spacing=\"-1px\"]\r\n<p>Honesty, integrity &amp; experience</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" spacing_right=\"10px\" spacing_left=\"10px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" min_height=\"\" link=\"\"][fusion_gallery lightbox=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" caption_style=\"resa\" caption_title_size=\"17px\" caption_text_color=\"var(--awb-color1)\" caption_title_color=\"var(--awb-color1)\" caption_title_transform=\"none\" caption_overlay_color=\"var(--awb-color8)\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-01.jpg\" image_id=\"1363\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-04.jpg\" image_id=\"1379\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-03.jpg\" image_id=\"1375\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Quisque velit nisi, pretium ut lacinia in, elementum id enim.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]\r\n<p>Nulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Sed porttitor lectus nibh. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Sed porttitor lectus nibh. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Maths & Measurements','Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a pellentesque in.','publish','open','open','','maths-measurements','','','2021-01-26 09:43:23','2021-01-26 09:43:23','',0,'https://test-site.wlvrotary.org/?p=128',0,'post','',0),(131,1,'2021-01-26 09:47:22','2021-01-26 09:47:22','[fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" flex_column_spacing=\"0px\" type=\"flex\" admin_label=\"Content\" flex_justify_content=\"center\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>get to know us</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\" letter_spacing=\"-1px\"]\r\n<p>Honesty, integrity &amp; experience</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" spacing_right=\"10px\" spacing_left=\"10px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" min_height=\"\" link=\"\"][fusion_gallery lightbox=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" caption_style=\"resa\" caption_title_size=\"17px\" caption_text_color=\"var(--awb-color1)\" caption_title_color=\"var(--awb-color1)\" caption_title_transform=\"none\" caption_overlay_color=\"var(--awb-color8)\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-01.jpg\" image_id=\"1363\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-04.jpg\" image_id=\"1379\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-03.jpg\" image_id=\"1375\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Quisque velit nisi, pretium ut lacinia in, elementum id enim.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]\r\n<p>Nulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Sed porttitor lectus nibh. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Sed porttitor lectus nibh. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home Office Decor','Donec rutrum congue leo eget malesuada. Vivamus suscipit tortor.','publish','open','open','','home-office-decor','','','2021-01-26 09:47:22','2021-01-26 09:47:22','',0,'https://test-site.wlvrotary.org/?p=131',0,'post','',0),(249,1,'2021-01-28 11:54:23','2021-01-28 11:54:23','[fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" flex_column_spacing=\"0px\" type=\"flex\" admin_label=\"Content\" flex_justify_content=\"center\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>get to know us</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\" letter_spacing=\"-1px\"]\r\n<p>Honesty, integrity &amp; experience</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" spacing_right=\"10px\" spacing_left=\"10px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" min_height=\"\" link=\"\"][fusion_gallery lightbox=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" caption_style=\"resa\" caption_title_size=\"17px\" caption_text_color=\"var(--awb-color1)\" caption_title_color=\"var(--awb-color1)\" caption_title_transform=\"none\" caption_overlay_color=\"var(--awb-color8)\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-01.jpg\" image_id=\"1363\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-04.jpg\" image_id=\"1379\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-03.jpg\" image_id=\"1375\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Quisque velit nisi, pretium ut lacinia in, elementum id enim.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]\r\n<p>Nulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Sed porttitor lectus nibh. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Sed porttitor lectus nibh. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Plumbing Certification','Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.','publish','open','open','','plumbing-certification','','','2021-01-28 11:54:23','2021-01-28 11:54:23','',0,'https://test-site.wlvrotary.org/?p=249',0,'post','',0),(251,1,'2021-01-28 11:54:55','2021-01-28 11:54:55','[fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" flex_column_spacing=\"0px\" type=\"flex\" admin_label=\"Content\" flex_justify_content=\"center\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>get to know us</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\" letter_spacing=\"-1px\"]\r\n<p>Honesty, integrity &amp; experience</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" spacing_right=\"10px\" spacing_left=\"10px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" min_height=\"\" link=\"\"][fusion_gallery lightbox=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" caption_style=\"resa\" caption_title_size=\"17px\" caption_text_color=\"var(--awb-color1)\" caption_title_color=\"var(--awb-color1)\" caption_title_transform=\"none\" caption_overlay_color=\"var(--awb-color8)\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-01.jpg\" image_id=\"1363\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-04.jpg\" image_id=\"1379\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-03.jpg\" image_id=\"1375\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Quisque velit nisi, pretium ut lacinia in, elementum id enim.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]\r\n<p>Nulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Sed porttitor lectus nibh. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Sed porttitor lectus nibh. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','The Best Floating Shelves','Curabitur non nulla sit amet nisl tempus convallis quis ac lectus mauris.','publish','open','open','','the-best-floating-shelves','','','2021-01-28 11:54:55','2021-01-28 11:54:55','',0,'https://test-site.wlvrotary.org/?p=251',0,'post','',0),(1684,1,'2022-08-24 01:07:26','2022-08-24 01:07:26','','wlvrotary-logo2x','','inherit','open','closed','','wlvrotary-logo2x','','','2022-08-24 01:07:26','2022-08-24 01:07:26','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png',0,'attachment','image/png',0),(1682,1,'2022-02-22 08:01:39','0000-00-00 00:00:00','','Draft Post','','draft','open','open','','','','','2022-02-22 08:01:39','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?p=1682',0,'post','',0),(253,1,'2021-01-28 11:55:20','2021-01-28 11:55:20','[fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" flex_column_spacing=\"0px\" type=\"flex\" admin_label=\"Content\" flex_justify_content=\"center\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" content_alignment=\"center\" line_height=\"var(--awb-typography2-line-height)\"]\r\n\r\nget to know us\r\n\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\" letter_spacing=\"-1px\"]\r\n\r\nHonesty, integrity &amp; experience\r\n\r\n[/fusion_title][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" spacing_right=\"10px\" spacing_left=\"10px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"80px\" min_height=\"\" link=\"\"][fusion_gallery lightbox=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" caption_style=\"resa\" caption_title_size=\"17px\" caption_text_color=\"var(--awb-color1)\" caption_title_color=\"var(--awb-color1)\" caption_title_transform=\"none\" caption_overlay_color=\"var(--awb-color8)\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-01.jpg\" image_id=\"1363\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-04.jpg\" image_id=\"1379\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/gallery-03.jpg\" image_id=\"1375\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Donec rutrum congue leo eget malesuada. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Quisque velit nisi, pretium ut lacinia in, elementum id enim.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"4_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom=\"0px\" margin_bottom_medium=\"70px\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" content_alignment=\"center\" margin_right=\"10%\" margin_left=\"10%\" columns=\"1\"]\r\n\r\nNulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Sed porttitor lectus nibh. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Sed porttitor lectus nibh. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Quisque velit nisi, pretium ut lacinia in, elementum id enim.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Staining Your Decking','Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.','publish','open','open','','staining-your-decking','','','2021-01-28 11:55:20','2021-01-28 11:55:20','',0,'https://test-site.wlvrotary.org/?p=253',0,'post','',0),(1685,1,'2022-08-24 01:07:28','2022-08-24 01:07:28','','wlvrotary-logo1x','','inherit','open','closed','','wlvrotary-logo1x','','','2022-08-24 01:07:28','2022-08-24 01:07:28','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo1x.png',0,'attachment','image/png',0),(1687,1,'2022-08-24 01:13:13','2022-08-24 01:13:13','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-custom_color_1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-footer-right-menu\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 22% ))\" active_color=\"var(--awb-color1)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"69|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/01/handyman-logo@2x.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color8)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-color1)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-08-24 01:13:13','2022-08-24 01:13:13','',144,'https://test-site.wlvrotary.org/?p=1687',0,'revision','',0),(1688,1,'2022-08-24 01:15:29','2022-08-24 01:15:29','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-footer-right-menu\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 22% ))\" active_color=\"var(--awb-color1)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"69|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/01/handyman-logo@2x.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color8)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-color1)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-08-24 01:15:29','2022-08-24 01:15:29','',144,'https://test-site.wlvrotary.org/?p=1688',0,'revision','',0),(1831,1,'2022-09-27 00:33:53','2022-09-27 00:33:53','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-09-27 00:33:53','2022-09-27 00:33:53','',144,'https://test-site.wlvrotary.org/?p=1831',0,'revision','',0),(1689,1,'2022-08-24 01:18:00','2022-08-24 01:18:00','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-footer-right-menu\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"69|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/01/handyman-logo@2x.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-08-24 01:18:00','2022-08-24 01:18:00','',144,'https://test-site.wlvrotary.org/?p=1689',0,'revision','',0),(1693,1,'2022-08-24 01:22:13','2022-08-24 01:22:13','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-08-24 01:22:13','2022-08-24 01:22:13','',144,'https://test-site.wlvrotary.org/?p=1693',0,'revision','',0),(1690,1,'2022-08-24 01:18:19','2022-08-24 01:18:19','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-footer-right-menu\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"handyman-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-08-24 01:18:19','2022-08-24 01:18:19','',144,'https://test-site.wlvrotary.org/?p=1690',0,'revision','',0),(1691,1,'2023-01-10 04:27:54','2022-08-24 01:21:09','','Member Login','','publish','closed','closed','','member-login','','','2023-01-10 04:27:54','2023-01-10 04:27:54','',0,'https://test-site.wlvrotary.org/?p=1691',1,'nav_menu_item','',0),(2124,1,'2023-01-09 16:32:52','2023-01-09 16:32:52','{\\\"conditions\\\":{\\\"not_found\\\":{\\\"label\\\":\\\"404 Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"not_found\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"60\\\",\\\"header\\\":\\\"690\\\"}}','404 Page','','inherit','closed','closed','','63-revision-v1','','','2023-01-09 16:32:52','2023-01-09 16:32:52','',63,'https://test-site.wlvrotary.org/?p=2124',0,'revision','',0),(1896,1,'2022-10-04 20:22:38','2022-10-04 20:22:38','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: #c10000;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(193, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(193, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(226, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adip</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Photos of our Sunrise Rotarians in the Community</p>[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(255, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-10-04 20:22:38','2022-10-04 20:22:38','',1700,'https://test-site.wlvrotary.org/?p=1896',0,'revision','',0),(1699,1,'2022-08-24 01:30:29','2022-08-24 01:30:29','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Custom Global Header','','inherit','closed','closed','','144-revision-v1','','','2022-08-24 01:30:29','2022-08-24 01:30:29','',144,'https://test-site.wlvrotary.org/?p=1699',0,'revision','',0),(1700,1,'2022-08-24 01:34:34','2022-08-24 01:34:34','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Recent &amp; Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg\" image_id=\"2036\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8-scaled.jpg\" image_id=\"2035\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg\" image_id=\"2034\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg\" image_id=\"2033\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg\" image_id=\"2032\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg\" image_id=\"2031\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg\" image_id=\"2030\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg\" image_id=\"2029\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg\" image_id=\"2028\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg\" image_id=\"2027\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg\" image_id=\"2026\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg\" image_id=\"2025\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg\" image_id=\"2024\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg\" image_id=\"2023\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg\" image_id=\"2022\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg\" image_id=\"2021\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg\" image_id=\"2020\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg\" image_id=\"2019\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg\" image_id=\"2018\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg\" image_id=\"2017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg\" image_id=\"2016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg\" image_id=\"2015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg\" image_id=\"2014\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg\" image_id=\"2002\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','publish','closed','closed','','home-rotary-test','','','2023-01-10 05:19:57','2023-01-10 05:19:57','',0,'https://test-site.wlvrotary.org/?page_id=1700',0,'page','',0),(1806,1,'2022-09-19 00:27:04','2022-09-19 00:27:04','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-19 00:27:04','2022-09-19 00:27:04','',1700,'https://test-site.wlvrotary.org/?p=1806',0,'revision','',0),(1800,1,'2022-09-18 23:51:39','2022-09-18 23:51:39','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbW9udGhfaW5jcmU9Ii0yIiBzaG93X3VwY29taW5nPSIxIiBudW1iZXJfb2ZfbW9udGhzPSIyIiBoaWRlX2VtcHR5X21vbnRocz0ieWVzIl0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:51:39','2022-09-18 23:51:39','',1700,'https://test-site.wlvrotary.org/?p=1800',0,'revision','',0),(1701,1,'2022-08-24 01:34:34','2022-08-24 01:34:34','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"yes\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/banner-01.jpg\" padding_top=\"125px\" padding_bottom=\"180px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" border_color=\"var(--awb-color1)\" padding_right=\"6vw\" padding_left=\"6vw\" padding_top_medium=\"105px\" padding_bottom_medium=\"160px\" padding_top_small=\"75px\" padding_bottom_small=\"130px\" admin_label=\"Homepage Intro\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"1.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" font_size=\"20px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"uppercase\"]Trusted handyman services[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\"]Trusted &amp; reliable handyman services[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"60px\"]\r\n\r\nTrusted handyman services\r\n\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"100px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_right=\"9vw\" margin_left=\"3px\" margin_bottom=\"0\" font_size=\"21px\"]\r\n\r\nPellentesque in ipsum id orci porta dapibus. Donec rutrum congue leo eget malesuada praesent sapien masse.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"-70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"718\" post_card_list_view=\"0\" source=\"posts\" post_type=\"avada_portfolio\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" columns=\"3\" column_spacing=\"5\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n\r\nHighly experienced handymen\r\n\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n\r\nDonec rutrum congue leo eget malesuada.\r\n\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n\r\nEgestas non nisi donec sollicitudin molestie.\r\n\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n\r\nHighly experienced handymen\r\n\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n\r\nMauris blandit aliquet elit\r\n\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n\r\nNulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n\r\nHighly experienced handymen\r\n\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n\r\nWe\'re here to help\r\n\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n\r\nWe’re fully protected with the correct equipment\r\n\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n\r\nWe have all of the regulatory safety certificates\r\n\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n\r\nGet in touch today\r\n\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nVestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n\r\nShona Jones\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-08-24 01:34:34','2022-08-24 01:34:34','',1700,'https://test-site.wlvrotary.org/?p=1701',0,'revision','',0),(1703,1,'2022-08-24 01:42:30','2022-08-24 01:42:30','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 01:42:30','2022-08-24 01:42:30','',690,'https://test-site.wlvrotary.org/?p=1703',0,'revision','',0),(1702,1,'2022-08-24 01:41:46','2022-08-24 01:41:46','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"http://bit.ly/2Y2KxDI\" twitter=\"http://bit.ly/2Y2KxDI\" instagram=\"http://bit.ly/2Y2KxDI\" youtube=\"http://bit.ly/2Y2KxDI\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"40px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"45px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" background_color=\"var(--awb-color4)\" admin_label=\"Header\" padding_bottom=\"0px\" margin_bottom=\"45px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"menu-underlay\" order_medium=\"2\" order_small=\"2\" padding_top=\"59px\" padding_bottom=\"40px\" hover_type=\"none\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 83% ))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" border_sizes_top=\"1\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" font_size=\"54px\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color8)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"-5px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"3\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_section_separator divider_type=\"paper\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"left\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color1)\" divider_height=\"30px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 01:41:46','2022-08-24 01:41:46','',690,'https://test-site.wlvrotary.org/?p=1702',0,'revision','',0),(1705,1,'2022-08-24 01:51:59','2022-08-24 01:51:59','{\\\"conditions\\\":{\\\"specific_page|683\\\":{\\\"label\\\":\\\"Handyman Home\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|683\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\"}}','Homepage','','inherit','closed','closed','','689-revision-v1','','','2022-08-24 01:51:59','2022-08-24 01:51:59','',689,'https://test-site.wlvrotary.org/?p=1705',0,'revision','',0),(1704,1,'2022-08-24 01:51:54','2022-08-24 01:51:54','{\\\"conditions\\\":{\\\"specific_page|683\\\":{\\\"label\\\":\\\"Handyman Home\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|683\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"front_page\\\":{\\\"label\\\":\\\"Front Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"front_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\"}}','Homepage','','inherit','closed','closed','','689-revision-v1','','','2022-08-24 01:51:54','2022-08-24 01:51:54','',689,'https://test-site.wlvrotary.org/?p=1704',0,'revision','',0),(1707,1,'2022-08-24 01:52:02','2022-08-24 01:52:02','{\\\"conditions\\\":{\\\"front_page\\\":{\\\"label\\\":\\\"Front Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"front_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\"}}','Homepage','','inherit','closed','closed','','689-revision-v1','','','2022-08-24 01:52:02','2022-08-24 01:52:02','',689,'https://test-site.wlvrotary.org/?p=1707',0,'revision','',0),(1709,1,'2022-08-24 01:52:19','2022-08-24 01:52:19','{\\\"conditions\\\":{\\\"specific_page|1700\\\":{\\\"label\\\":\\\"Home - Rotary Test\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1700\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\"}}','Homepage','','inherit','closed','closed','','689-revision-v1','','','2022-08-24 01:52:19','2022-08-24 01:52:19','',689,'https://test-site.wlvrotary.org/?p=1709',0,'revision','',0),(1708,1,'2022-08-24 01:52:15','2022-08-24 01:52:15','{\\\"conditions\\\":{\\\"front_page\\\":{\\\"label\\\":\\\"Front Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"front_page\\\"},\\\"specific_page|1700\\\":{\\\"label\\\":\\\"Home - Rotary Test\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1700\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"690\\\"}}','Homepage','','inherit','closed','closed','','689-revision-v1','','','2022-08-24 01:52:15','2022-08-24 01:52:15','',689,'https://test-site.wlvrotary.org/?p=1708',0,'revision','',0),(1711,1,'2022-08-24 01:59:13','2022-08-24 01:59:13','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"#\" instagram=\"#\" email=\"#\" phone=\"#\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 01:59:13','2022-08-24 01:59:13','',690,'https://test-site.wlvrotary.org/?p=1711',0,'revision','',0),(1712,1,'2022-08-24 02:00:15','2022-08-24 02:00:15','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"#\" instagram=\"#\" email=\"#\" phone=\"#\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:00:15','2022-08-24 02:00:15','',690,'https://test-site.wlvrotary.org/?p=1712',0,'revision','',0),(1714,1,'2022-08-24 02:04:53','2022-08-24 02:04:53','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"#\" instagram=\"#\" email=\"#\" phone=\"#\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:04:53','2022-08-24 02:04:53','',690,'https://test-site.wlvrotary.org/?p=1714',0,'revision','',0),(1713,1,'2022-08-24 02:03:58','2022-08-24 02:03:58','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"#\" instagram=\"#\" email=\"#\" phone=\"#\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" border_sizes_top=\"2px\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:03:58','2022-08-24 02:03:58','',690,'https://test-site.wlvrotary.org/?p=1713',0,'revision','',0),(1716,1,'2022-08-24 02:07:48','2022-08-24 02:07:48','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:07:48','2022-08-24 02:07:48','',690,'https://test-site.wlvrotary.org/?p=1716',0,'revision','',0),(1715,1,'2022-08-24 02:05:08','2022-08-24 02:05:08','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"16px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" color_type=\"custom\" icon_colors=\"var(--awb-color1)\" box_colors=\"var(--awb-color3)\" show_custom=\"no\" tooltip_placement=\"bottom\" facebook=\"#\" instagram=\"#\" email=\"#\" phone=\"#\" /][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"50px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:05:08','2022-08-24 02:05:08','',690,'https://test-site.wlvrotary.org/?p=1715',0,'revision','',0),(1723,1,'2022-08-24 03:20:58','2022-08-24 03:20:58','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"14\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" phone=\"X\" email=\"X\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 03:20:58','2022-08-24 03:20:58','',690,'https://test-site.wlvrotary.org/?p=1723',0,'revision','',0),(1717,1,'2022-08-24 02:13:31','2022-08-24 02:13:31','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:13:31','2022-08-24 02:13:31','',690,'https://test-site.wlvrotary.org/?p=1717',0,'revision','',0),(1718,1,'2022-08-24 02:15:40','2022-08-24 02:15:40','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_social_links margin_medium=\"\" margin_small=\"\" icon_colors=\"\" icon_colors_hover=\"\" box_colors=\"\" box_colors_hover=\"\" box_border_color=\"\" box_border_color_hover=\"\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" phone=\"X\" email=\"X\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:15:40','2022-08-24 02:15:40','',690,'https://test-site.wlvrotary.org/?p=1718',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1721,1,'2022-08-24 02:22:34','2022-08-24 02:22:34','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"3_4\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"3_4\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top=\"14\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_social_links margin_medium=\"\" margin_small=\"\" icon_colors=\"\" icon_colors_hover=\"\" box_colors=\"\" box_colors_hover=\"\" box_border_color=\"\" box_border_color_hover=\"\" facebook=\"#\" instagram=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" phone=\"X\" email=\"X\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:22:34','2022-08-24 02:22:34','',690,'https://test-site.wlvrotary.org/?p=1721',0,'revision','',0),(1719,1,'2022-08-24 02:18:48','2022-08-24 02:18:48','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top=\"14\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_social_links margin_medium=\"\" margin_small=\"\" icon_colors=\"\" icon_colors_hover=\"\" box_colors=\"\" box_colors_hover=\"\" box_border_color=\"\" box_border_color_hover=\"\" facebook=\"#\" instagram=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" phone=\"X\" email=\"X\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:18:48','2022-08-24 02:18:48','',690,'https://test-site.wlvrotary.org/?p=1719',0,'revision','',0),(1720,1,'2022-08-24 02:19:44','2022-08-24 02:19:44','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_5\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" type_medium=\"1_3\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top=\"14\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_social_links margin_medium=\"\" margin_small=\"\" icon_colors=\"\" icon_colors_hover=\"\" box_colors=\"\" box_colors_hover=\"\" box_border_color=\"\" box_border_color_hover=\"\" facebook=\"#\" instagram=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" phone=\"X\" email=\"X\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"30\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"70\" type=\"70\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-08-24 02:19:44','2022-08-24 02:19:44','',690,'https://test-site.wlvrotary.org/?p=1720',0,'revision','',0),(1724,1,'2022-08-24 03:26:33','2022-08-24 03:26:33','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"yes\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/banner-01.jpg\" padding_top=\"125px\" padding_bottom=\"180px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" border_color=\"var(--awb-color1)\" padding_right=\"6vw\" padding_left=\"6vw\" padding_top_medium=\"105px\" padding_bottom_medium=\"160px\" padding_top_small=\"75px\" padding_bottom_small=\"130px\" admin_label=\"Homepage Intro\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"1.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" font_size=\"20px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"uppercase\"]<p>SERVICE ABOVE SELF<br></p>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"55px\"]Welcome to the Rotary Club  of Westlake Village[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"60px\"]\r\n<p>Trusted handyman services</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"100px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_right=\"9vw\" margin_left=\"3px\" margin_bottom=\"0\" font_size=\"21px\"]\r\n<p>Pellentesque in ipsum id orci porta dapibus. Donec rutrum congue leo eget malesuada praesent sapien masse.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"-70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"718\" post_card_list_view=\"0\" source=\"posts\" post_type=\"avada_portfolio\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" columns=\"3\" column_spacing=\"5\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-08-24 03:26:33','2022-08-24 03:26:33','',1700,'https://test-site.wlvrotary.org/?p=1724',0,'revision','',0),(1725,1,'2022-08-24 04:31:39','2022-08-24 04:31:39','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p>\r\n<p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”. </p>\r\n<p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p>\r\n</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2036|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Recent Events<br>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2052|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"30% 50%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318792128_10159617131168983_807962145973987535_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured News &amp; Events<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise Rotary Celebrates Teacher Appreciation Week[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Sunrise Rotarians gathered together at the beginning of their Rotary meeting at Los Robles Greens and assembled over 353 Teacher Appreciation bags filled with goodies and sweets to thank the teachers for their hard work during this COVID-challenged school year. Our President Elect and Community Service Chair, Michelle Ramsey, supervised the assembly process and helped us assemble the bags.</p>\r\n<p>Once the bags were assembled, WLV Sunrise Rotarians delivered them to a number of schools in the Conejo Valley and surrounding area. We delivered these packages to Westlake High School; Oak Park High School; Westlake Elementary School and Westlake Hills Elementary School.</p>\r\n<p>We thank the teachers and administrators for their hard work and dedication to our kids!</p>\r\n<p>The two pictures reflect the great experience and good will that came out of this project ( both Rotarians and School Staff) . In one picture, President Jim Wisdom is with Lauri Looker of Westlake High School. Lauri has been instrumental in helping the WLV Sunrise Rotary Club find potential RYLA students for the District 5240 RYLA program for many years.[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_youtube autoplay=\"false\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" structured_data=\"off\" id=\"https://youtu.be/pErn6Q4rkEc\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Holidays in the Village[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotarians are asked to serve their communities using their skills, strengths, and talents. Westlake Village Noon wanted to create Holidays In the Village (HITV), a European style Christmas Market, as an annual community event in early December that was family friendly. It was too big a challenge and needed more skills than they had in their Club. Solution – partner with Westlake Village Sunrise and the City of Westlake Village!</p>\r\n<p>We pulled it off! On Sunday, December 12, 2021, HITV was an amazing success with thousands of attendees! The overwhelming feedback from attendees: We had a wonderful time! Please tell us you are doing it again next year! Well – we are! The second annual HITV will be on December 4, 2022.</p>\r\n<p>Success required months of planning, organizing, designing, procuring,  prepping, and promoting. It required follow through and last-minute problem solving the weekend of the event to make it happen. It took over 250 volunteers from our two clubs and the community. The skills, strengths, and talents needed included: leadership, project management, logistics, budgeting, construction, carpentry, scenic art, entertainment, food service, purchasing, communication (PR, social media, and print), printing, fund raising, vendor support, legal services, insurance and risk management, health and food safety, traffic and security. Whew! Ultimately, we succeeded through trust, commitment, and service above self!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1899|fusion-400\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master-400x340.png[/fusion_imageframe][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','publish','closed','closed','','event-directory','','','2023-01-09 04:49:31','2023-01-09 04:49:31','',0,'https://test-site.wlvrotary.org/event-directory/',0,'page','',0),(1727,1,'2022-08-24 04:35:49','2022-08-24 04:35:49','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-avada-child-theme','','','2022-08-24 04:35:49','2022-08-24 04:35:49','',0,'https://test-site.wlvrotary.org/2022/08/24/wp-global-styles-avada-child-theme/',0,'wp_global_styles','',0),(1740,1,'2022-09-18 21:42:05','2022-09-18 21:42:05','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\" flex_column_spacing=\"0px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"14\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" phone=\"X\" email=\"X\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2022-09-18 21:42:05','2022-09-18 21:42:05','',690,'https://test-site.wlvrotary.org/?p=1740',0,'revision','',0),(1829,1,'2022-09-27 00:31:57','2022-09-27 00:31:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise has established a set of governing documents.</p>\r\n<ul>\r\n<li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-by-laws.pdf\"><b>Rotary Club of Westlake Village Sunrise By-Laws</b></a></li>\r\n<li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-continuing-resolutions.pdf\"><b>Rotary Club of Westlake Village Sunrise Resolutions</b></a></li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','publish','closed','closed','','about-us','','','2023-01-10 04:41:16','2023-01-10 04:41:16','',0,'https://test-site.wlvrotary.org/?page_id=1829',0,'page','',0),(1739,1,'2023-01-10 04:27:54','2022-09-18 21:40:07','','Donate','','publish','closed','closed','','donate','','','2023-01-10 04:27:54','2023-01-10 04:27:54','',0,'https://test-site.wlvrotary.org/?p=1739',2,'nav_menu_item','',0),(1735,1,'2022-08-24 05:02:21','2022-08-24 05:02:21','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"yes\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/banner-01.jpg\" padding_top=\"125px\" padding_bottom=\"180px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" border_color=\"var(--awb-color1)\" padding_right=\"6vw\" padding_left=\"6vw\" padding_top_medium=\"105px\" padding_bottom_medium=\"160px\" padding_top_small=\"75px\" padding_bottom_small=\"130px\" admin_label=\"Homepage Intro\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"1.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" font_size=\"20px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"uppercase\"]\r\n<p>SERVICE ABOVE SELF</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"55px\"]Welcome to the Rotary Club  of Westlake Village[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"60px\"]\r\n<p>Trusted handyman services</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"100px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_right=\"9vw\" margin_left=\"3px\" margin_bottom=\"0\" font_size=\"21px\"]\r\n<p>Pellentesque in ipsum id orci porta dapibus. Donec rutrum congue leo eget malesuada praesent sapien masse.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"-70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"718\" post_card_list_view=\"0\" source=\"posts\" post_type=\"avada_portfolio\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" columns=\"3\" column_spacing=\"5\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-08-24 05:02:21','2022-08-24 05:02:21','',1700,'https://test-site.wlvrotary.org/?p=1735',0,'revision','',0),(1734,1,'2022-08-24 04:59:53','2022-08-24 04:59:53','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"yes\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/banner-01.jpg\" padding_top=\"125px\" padding_bottom=\"180px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" border_color=\"var(--awb-color1)\" padding_right=\"6vw\" padding_left=\"6vw\" padding_top_medium=\"105px\" padding_bottom_medium=\"160px\" padding_top_small=\"75px\" padding_bottom_small=\"130px\" admin_label=\"Homepage Intro\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"1.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" font_size=\"20px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"uppercase\"]\r\n<p>SERVICE ABOVE SELF</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"55px\"]Welcome to the Rotary Club  of Westlake Village[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"60px\"]\r\n<p>Trusted handyman services</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"100px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_right=\"9vw\" margin_left=\"3px\" margin_bottom=\"0\" font_size=\"21px\"]\r\n<p>Pellentesque in ipsum id orci porta dapibus. Donec rutrum congue leo eget malesuada praesent sapien masse.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"-70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"718\" post_card_list_view=\"0\" source=\"posts\" post_type=\"avada_portfolio\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" columns=\"3\" column_spacing=\"5\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3Rd[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-08-24 04:59:53','2022-08-24 04:59:53','',1700,'https://test-site.wlvrotary.org/?p=1734',0,'revision','',0),(1744,1,'2022-09-18 21:54:29','2022-09-18 21:54:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"50\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\" padding_top=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-top\" columns=\"3\" heading_size=\"2\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_area=\"link-icon\" title_color=\"var(--awb-custom_color_2)\" backgroundcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-custom_color_1)\" icon_size=\"40\" icon=\"fa-fist-raised fas\"][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" title=\"About Us\" icon=\"fa-cog fas\"]The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Community Focus\" icon=\"fa-people-carry fas\"]The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley.[/fusion_content_box][fusion_content_box title=\"Get Involved\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p></p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 21:54:29','2022-09-18 21:54:29','',1700,'https://test-site.wlvrotary.org/?p=1744',0,'revision','',0),(1736,1,'2022-08-30 00:24:36','2022-08-30 00:24:36','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"yes\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/banner-01.jpg\" padding_top=\"100px\" padding_bottom=\"100px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" border_color=\"var(--awb-color4)\" padding_right=\"6vw\" padding_left=\"6vw\" padding_top_medium=\"105px\" padding_bottom_medium=\"160px\" padding_top_small=\"75px\" padding_bottom_small=\"130px\" admin_label=\"Homepage Intro\" border_sizes_bottom=\"2px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"1.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" font_size=\"20px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"uppercase\"]\r\n<p>SERVICE ABOVE SELF</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"55px\"]Welcome to the Rotary Club  of Westlake Village[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"60px\"]\r\n<p>Trusted handyman services</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"100px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_right=\"9vw\" margin_left=\"3px\" margin_bottom=\"0\" font_size=\"21px\"]\r\n<p>Pellentesque in ipsum id orci porta dapibus. Donec rutrum congue leo eget malesuada praesent sapien masse.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"50\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\" padding_top=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes layout=\"icon-on-top\" columns=\"3\" heading_size=\"2\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_area=\"link-icon\" title_color=\"var(--awb-custom_color_2)\" backgroundcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-custom_color_1)\" icon_size=\"40\" icon=\"fa-fist-raised fas\"][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" title=\"About Us\" icon=\"fa-cog fas\"]The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Community Focus\" icon=\"fa-people-carry fas\"]The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley.[/fusion_content_box][fusion_content_box title=\"Get Involved\" animation_direction=\"left\" animation_speed=\"0.3\"]<p><br></p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-08-30 00:24:36','2022-08-30 00:24:36','',1700,'https://test-site.wlvrotary.org/?p=1736',0,'revision','',0),(1737,1,'2022-08-30 00:25:47','2022-08-30 00:25:47','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_toggled=\"yes\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/banner-01.jpg\" padding_top=\"100px\" padding_bottom=\"100px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 9% ),calc( var(--awb-color8-a) - 65% ))\" border_color=\"var(--awb-color4)\" padding_right=\"6vw\" padding_left=\"6vw\" padding_top_medium=\"105px\" padding_bottom_medium=\"160px\" padding_top_small=\"75px\" padding_bottom_small=\"130px\" admin_label=\"Homepage Intro\" border_sizes_bottom=\"3px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"1.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" font_size=\"20px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"uppercase\"]\r\n<p>SERVICE ABOVE SELF</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"55px\"]Welcome to the Rotary Club  of Westlake Village[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"30px\" font_size=\"60px\"]\r\n<p>Trusted handyman services</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"100px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_right=\"9vw\" margin_left=\"3px\" margin_bottom=\"0\" font_size=\"21px\"]\r\n<p>Pellentesque in ipsum id orci porta dapibus. Donec rutrum congue leo eget malesuada praesent sapien masse.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"50\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\" padding_top=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes layout=\"icon-on-top\" columns=\"3\" heading_size=\"2\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_area=\"link-icon\" title_color=\"var(--awb-custom_color_2)\" backgroundcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-custom_color_1)\" icon_size=\"40\" icon=\"fa-fist-raised fas\"][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" title=\"About Us\" icon=\"fa-cog fas\"]The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Community Focus\" icon=\"fa-people-carry fas\"]The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley.[/fusion_content_box][fusion_content_box title=\"Get Involved\" animation_direction=\"left\" animation_speed=\"0.3\"]<p><br></p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-08-30 00:25:47','2022-08-30 00:25:47','',1700,'https://test-site.wlvrotary.org/?p=1737',0,'revision','',0),(1904,0,'2022-10-17 06:43:17','0000-00-00 00:00:00','','District Governor Scott Philips Attends','','draft','open','closed','','district-governor-scott-philips-attends','','','2022-10-17 06:43:17','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1904',0,'ajde_events','',0),(1742,1,'2022-09-18 21:52:04','2022-09-18 21:52:04','','wlvsunrise-hero','','inherit','open','closed','','wlvsunrise-hero','','','2022-09-18 21:52:04','2022-09-18 21:52:04','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/wlvsunrise-hero.jpg',0,'attachment','image/jpeg',0),(1743,1,'2022-09-18 21:53:28','2022-09-18 21:53:28','','Service Above Self','','publish','closed','closed','','service-above-self','','','2023-01-04 22:35:50','2023-01-04 22:35:50','',0,'https://test-site.wlvrotary.org/?post_type=slide&#038;p=1743',0,'slide','',0),(1745,1,'2022-09-18 22:05:01','2022-09-18 22:05:01','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"50\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\" padding_top=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-top\" columns=\"3\" heading_size=\"2\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_area=\"link-icon\" title_color=\"var(--awb-custom_color_2)\" backgroundcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-custom_color_1)\" icon_size=\"40\" icon=\"fa-fist-raised fas\"][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" title=\"About Us\" icon=\"fa-cog fas\"]The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Community Focus\" icon=\"fa-people-carry fas\"]The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley.[/fusion_content_box][fusion_content_box title=\"Get Involved\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Your Content Goes Here[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Your Content Goes Here[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 22:05:01','2022-09-18 22:05:01','',1700,'https://test-site.wlvrotary.org/?p=1745',0,'revision','',0),(1799,1,'2022-09-18 23:42:24','2022-09-18 23:42:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:42:24','2022-09-18 23:42:24','',1700,'https://test-site.wlvrotary.org/?p=1799',0,'revision','',0),(1747,1,'2022-09-18 22:12:14','2022-09-18 22:12:14','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"var(--awb-color2)\" padding_bottom=\"50\" border_color=\"var(--awb-color1)\" padding_bottom_medium=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Services Cards\" padding_top=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-top\" columns=\"3\" heading_size=\"2\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_area=\"link-icon\" title_color=\"var(--awb-custom_color_2)\" backgroundcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-custom_color_1)\" icon_size=\"40\" icon=\"fa-fist-raised fas\"][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" title=\"About Us\" icon=\"fa-cog fas\"]The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Community Focus\" icon=\"fa-people-carry fas\"]The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley.[/fusion_content_box][fusion_content_box title=\"Get Involved\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"6\" border_radius_top_right=\"6\" border_radius_bottom_right=\"6\" border_radius_bottom_left=\"6\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Te aliquam noluisse his. Et vel epicuri detracto.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 22:12:14','2022-09-18 22:12:14','',1700,'https://test-site.wlvrotary.org/?p=1747',0,'revision','',0),(1789,1,'2022-09-18 23:05:24','2022-09-18 23:05:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:05:24','2022-09-18 23:05:24','',1700,'https://test-site.wlvrotary.org/?p=1789',0,'revision','',0),(1748,1,'2022-09-18 22:19:09','2022-09-18 22:19:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Get Involved</p>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 22:19:09','2022-09-18 22:19:09','',1700,'https://test-site.wlvrotary.org/?p=1748',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1749,1,'2022-09-18 22:19:47','2022-09-18 22:19:47','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Get Involved</p>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 22:19:47','2022-09-18 22:19:47','',1700,'https://test-site.wlvrotary.org/?p=1749',0,'revision','',0),(1750,1,'2022-09-18 22:24:34','2022-09-18 22:24:34','','square-image','','inherit','open','closed','','square-image','','','2022-09-18 22:24:34','2022-09-18 22:24:34','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png',0,'attachment','image/png',0),(1752,1,'2022-09-18 22:33:55','2022-09-18 22:33:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Get Involved</p>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br>[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 22:33:55','2022-09-18 22:33:55','',1700,'https://test-site.wlvrotary.org/?p=1752',0,'revision','',0),(1751,1,'2022-09-18 22:26:29','2022-09-18 22:26:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Get Involved</p>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br>[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" padding_bottom=\"100px\" border_color=\"var(--awb-color1)\" padding_top=\"100px\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"70px\" admin_toggled=\"yes\" admin_label=\"Homepage Information\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"80px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" spacing_right=\"80px\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Ready &amp; Waiting To Assist[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" size=\"18px\"][fusion_li_item]Pellentesque in ipsum id orci porta dapibus.[/fusion_li_item][fusion_li_item]\r\n<p>Donec rutrum congue leo eget malesuada.</p>\r\n[/fusion_li_item][fusion_li_item]Praesent sapien massa, convallis a pellentesque.[/fusion_li_item][fusion_li_item]\r\n<p>Egestas non nisi donec sollicitudin molestie.</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"80px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left=\"40px\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"987|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"2\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"989|full\" hover_type=\"none\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" padding_top_small=\"41px\" spacing_left=\"80px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Best services in town[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn more about us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 22:26:29','2022-09-18 22:26:29','',1700,'https://test-site.wlvrotary.org/?p=1751',0,'revision','',0),(1757,1,'2022-09-18 23:11:49','2022-09-18 23:11:49','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-7','','','2023-01-09 06:01:58','2023-01-09 06:01:58','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1757',0,'ajde_events','',0),(1758,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','Board Meeting (September)','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-8','','','2023-01-09 06:06:11','2023-01-09 06:06:11','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1758',0,'ajde_events','',0),(1759,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','General Meeting - WLV Sunrise Rotary','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-9','','','2022-09-18 23:18:04','2022-09-18 23:18:04','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1759',0,'ajde_events','',0),(1760,1,'2022-09-18 23:11:49','2022-09-18 23:11:49','','Sunrise at Sunset - WLV Sunrise Rotary','','publish','open','closed','','sunrise-at-sunset-wlv-sunrise-rotary-5','','','2022-09-18 23:11:49','2022-09-18 23:11:49','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1760',0,'ajde_events','',0),(1764,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','Board Meeting (November)','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-9','','','2023-01-09 06:14:11','2023-01-09 06:14:11','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1764',0,'ajde_events','',0),(1765,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-10','','','2023-01-09 06:13:28','2023-01-09 06:13:28','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1765',0,'ajde_events','',0),(1766,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-11','','','2023-01-09 06:13:13','2023-01-09 06:13:13','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1766',0,'ajde_events','',0),(1767,1,'2022-09-18 23:11:49','2022-09-18 23:11:49','','General Meeting - WLV Sunrise Rotary','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-8','','','2022-09-18 23:11:49','2022-09-18 23:11:49','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1767',0,'ajde_events','',0),(1768,1,'2022-09-18 23:11:49','2022-09-18 23:11:49','','Board Meeting (December)','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-7','','','2023-01-09 06:14:25','2023-01-09 06:14:25','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1768',0,'ajde_events','',0),(1769,1,'2022-09-18 23:11:49','2022-09-18 23:11:49','','Goebal Center holiday Breakfast - WLV Sunrise Rotary','','publish','open','closed','','goebal-center-holiday-breakfast-wlv-sunrise-rotary','','','2022-09-18 23:11:49','2022-09-18 23:11:49','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1769',0,'ajde_events','',0),(1770,1,'2022-09-18 23:11:49','2022-09-18 23:11:49','','Board Meeting (January)','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-6','','','2023-01-09 06:13:49','2023-01-09 06:13:49','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1770',0,'ajde_events','',0),(1771,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-12','','','2023-01-09 06:02:59','2023-01-09 06:02:59','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1771',0,'ajde_events','',0),(1772,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-13','','','2023-01-09 06:06:37','2023-01-09 06:06:37','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1772',0,'ajde_events','',0),(1773,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','Sunrise at Sunset Meeting (January)','','publish','open','closed','','sunrise-at-sunset-wlv-sunrise-rotary','','','2023-01-09 06:09:22','2023-01-09 06:09:22','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1773',0,'ajde_events','',0),(1774,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','Board Meeting - WLV Sunrise Rotary','','publish','open','closed','','board-meeting-wlv-sunrise-rotary','','','2022-09-18 23:18:04','2022-09-18 23:18:04','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1774',0,'ajde_events','',0),(1775,1,'2022-09-18 23:18:04','2022-09-18 23:18:04','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary','','','2023-01-09 06:06:47','2023-01-09 06:06:47','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1775',0,'ajde_events','',0),(1776,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-2','','','2023-01-09 06:07:06','2023-01-09 06:07:06','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1776',0,'ajde_events','',0),(1777,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Sunrise at Sunset (February)','','publish','open','closed','','sunrise-at-sunset-wlv-sunrise-rotary-2','','','2023-01-09 06:12:11','2023-01-09 06:12:11','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1777',0,'ajde_events','',0),(1778,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Board Meeting - WLV Sunrise Rotary','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-5','','','2022-09-18 23:11:48','2022-09-18 23:11:48','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1778',0,'ajde_events','',0),(1779,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','General Meeting - WLV Sunrise Rotary','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-5','','','2022-09-18 23:11:48','2022-09-18 23:11:48','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1779',0,'ajde_events','',0),(1780,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','General Meeting - WLV Sunrise Rotary','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-4','','','2022-09-18 23:11:48','2022-09-18 23:11:48','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1780',0,'ajde_events','',0),(1781,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Sunrise at Sunset (March)','','publish','open','closed','','sunrise-at-sunset-wlv-sunrise-rotary-4','','','2023-01-09 06:08:39','2023-01-09 06:08:39','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1781',0,'ajde_events','',0),(1782,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Moorpark Teaching Zoo- WLV Sunrise Rotary','','publish','open','closed','','moorpark-teaching-zoo-wlv-sunrise-rotary','','','2022-09-18 23:11:48','2022-09-18 23:11:48','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1782',0,'ajde_events','',0),(1783,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Board Meeting - WLV Sunrise Rotary','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-4','','','2022-09-18 23:11:48','2022-09-18 23:11:48','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1783',0,'ajde_events','',0),(1784,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Sunrise at Sunset (April)','','publish','open','closed','','sunrise-at-sunset-wlv-sunrise-rotary-3','','','2023-01-09 06:11:32','2023-01-09 06:11:32','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1784',0,'ajde_events','',0),(1785,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Board Meeting - WLV Sunrise Rotary','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-3','','','2022-09-18 23:11:48','2022-09-18 23:11:48','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1785',0,'ajde_events','',0),(1786,1,'2022-09-18 23:11:49','2022-09-18 23:11:49','','General Meeting - WLV Sunrise Rotary','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-6','','','2022-09-18 23:11:49','2022-09-18 23:11:49','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1786',0,'ajde_events','',0),(1787,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-3','','','2023-01-09 06:12:47','2023-01-09 06:12:47','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1787',0,'ajde_events','',0),(1788,1,'2022-09-18 23:11:48','2022-09-18 23:11:48','','Board Meeting - WLV Sunrise Rotary','','publish','open','closed','','board-meeting-wlv-sunrise-rotary-2','','','2022-09-18 23:11:48','2022-09-18 23:11:48','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1788',0,'ajde_events','',0),(1798,1,'2022-09-18 23:41:50','2022-09-18 23:41:50','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:41:50','2022-09-18 23:41:50','',1700,'https://test-site.wlvrotary.org/?p=1798',0,'revision','',0),(1791,1,'2022-09-18 23:23:38','2022-09-18 23:23:38','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIG1vbnRoX2luY3JlPSIrMiI=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:23:38','2022-09-18 23:23:38','',1700,'https://test-site.wlvrotary.org/?p=1791',0,'revision','',0),(1792,1,'2022-09-18 23:24:26','2022-09-18 23:24:26','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIG1vbnRoX2luY3JlPSIrMiJd[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:24:26','2022-09-18 23:24:26','',1700,'https://test-site.wlvrotary.org/?p=1792',0,'revision','',0),(1793,1,'2022-09-18 23:25:32','2022-09-18 23:25:32','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIG1vbnRoX2luY3JlPSIrMSJd[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:25:32','2022-09-18 23:25:32','',1700,'https://test-site.wlvrotary.org/?p=1793',0,'revision','',0),(1796,1,'2022-09-18 23:39:46','2022-09-18 23:39:46','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIG1vbnRoX2luY3JlPSIwKzEiXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:39:46','2022-09-18 23:39:46','',1700,'https://test-site.wlvrotary.org/?p=1796',0,'revision','',0),(1797,1,'2022-09-18 23:40:20','2022-09-18 23:40:20','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIG1vbnRoX2luY3JlPSIyIl0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"140px\" padding_bottom=\"130px\" admin_label=\"Homepage Services Grid\" admin_toggled=\"yes\" flex_column_spacing=\"20px\" padding_top_medium=\"100px\" padding_bottom_medium=\"90px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"70px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"41px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" text_color=\"var(--awb-color1)\" font_size=\"45px\" margin_bottom_small=\"30px\"]\r\n<p>Mauris blandit aliquet elit</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"30px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 20% ))\" content_alignment=\"center\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/decorating/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"20px\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"57\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" last=\"false\" border_position=\"all\" first=\"true\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-decorating\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Decorating[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/carpentry/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"20px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-carpentry\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Carpentry[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/maintenance/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-maintenance\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" font_size=\"24px\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]Maintenance[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" link=\"https://test-site.wlvrotary.org/services/plumbing/\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 28% ),var(--awb-color8-a))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" padding_top=\"90px\" padding_right=\"50px\" padding_bottom=\"90px\" padding_left=\"50px\" margin_bottom=\"10px\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_1\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 5% ),calc( var(--awb-color8-a) - 10% ))\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\" min_height=\"\"][fusion_fontawesome icon=\"fusion-prefix-handymanhandyman-plumbing\" size=\"70\" spin=\"no\" linktarget=\"_self\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"var(--awb-color4)\" circle=\"no\" bg_size=\"-1\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_color=\"var(--awb-color1)\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" font_size=\"24px\"]Plumbing[/fusion_title][fusion_text rule_style=\"default\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 30% ))\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0px\" margin_right=\"10%\" margin_left=\"10%\"]Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh praesent sapien massa.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Homepage Safety First\" padding_top=\"100px\" padding_bottom=\"100px\" admin_toggled=\"yes\" flex_column_spacing=\"0\" padding_top_medium=\"70px\" padding_bottom_medium=\"70px\" padding_top_small=\"50px\" padding_bottom_small=\"50px\"][fusion_builder_row][fusion_builder_column type=\"55.00\" type=\"55.00\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"30px\" background_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" padding_top=\"80px\" padding_right=\"80px\" padding_bottom=\"80px\" padding_left=\"80px\" padding_left_small=\"30px\" padding_right_small=\"30px\" padding_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"25px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Highly experienced handymen</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_top=\"-10px\" margin_bottom_small=\"30px\"]\r\n<p>We\'re here to help</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"50px\" /][fusion_text rule_style=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\"]Nulla porttitor accumsan tincidunt. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Donec sollicitudin molestie.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom=\"0px\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-hard-hat fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We’re fully protected with the correct equipment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color1)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"2\" border_sizes_right=\"2\" border_sizes_bottom=\"2\" border_sizes_left=\"2\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"15px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-award fas\" circle=\"no\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]\r\n<p>We have all of the regulatory safety certificates</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"136\" background_image=\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-02.jpg\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"50vh\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"0px\" padding_bottom=\"90px\" admin_label=\"Homepage Latest News\" admin_toggled=\"yes\" padding_bottom_medium=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]Articles from the workshop[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Latest handyman news[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" margin_bottom_small=\"0px\" margin_bottom=\"0px\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_button link=\"https://test-site.wlvrotary.org/news/\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\"]Read More News[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"474\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" out_of_stock=\"include\" show_hidden=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_term=\"name\" order=\"DESC\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"30\" row_spacing=\"50\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" slider_animation=\"fade\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.6\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"90px\" admin_label=\"Homepage Request A Quote\" background_color=\"var(--awb-color2)\" padding_top=\"90px\" admin_toggled=\"yes\" padding_top_medium=\"70px\" padding_bottom_medium=\"0px\" padding_top_small=\"50px\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"static\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"50px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"var(--awb-typography2-font-size)\" text_transform=\"var(--awb-typography2-text-transform)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" margin_bottom=\"10px\" line_height=\"var(--awb-typography2-line-height)\"]\r\n<p>Get in touch today</p>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"left\" size=\"2\" letter_spacing=\"-1px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"30px\" margin_bottom_small=\"30px\"]Receive your free quote[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"80px\" border_size=\"3\" sep_color=\"var(--awb-color4)\" bottom_margin=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color2)\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"141\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"1_2\" order_medium=\"1\" order_small=\"0\" margin_bottom=\"80px\" padding_top=\"40px\" padding_right=\"40px\" padding_bottom=\"30px\" padding_left=\"40px\" hover_type=\"none\" border_color=\"var(--awb-color4)\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_sizes_top=\"4\" border_sizes_right=\"4\" border_sizes_bottom=\"4\" border_sizes_left=\"4\" last=\"true\" border_position=\"all\" first=\"false\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_imageframe image_id=\"505|full\" max_width=\"80px\" hover_type=\"none\" borderradius=\"50%\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"15px\"]https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"2\" font_size=\"22px\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\"Outstanding Work\"[/fusion_title][fusion_star_rating maximum_rating=\"5\" rating=\"5\" display_empty_rating=\"show\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fa-star fas\" display_rating_text=\"yes\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" margin_bottom=\"20px\" /][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Vestibulum luctus blandit ante vel fermentum. Aenean vel malesuada ante. Etiam pharetra metus a facilisis aliquet. Proin et interdum nisi, vel rhoncus dolor. Etiam erat ex, ultricies et justo vitae, luctus malesuada felis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" font_size=\"var(--awb-typography3-font-size)\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>Shona Jones</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbnVtYmVyX29mX21vbnRocz0iNSIgaGlkZV9lbXB0eV9tb250aHM9InllcyIgXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:40:20','2022-09-18 23:40:20','',1700,'https://test-site.wlvrotary.org/?p=1797',0,'revision','',0),(1801,1,'2022-09-18 23:54:03','2022-09-18 23:54:03','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uX2xpc3QgbW9udGhfaW5jcmU9Ii0zIiBzaG93X3VwY29taW5nPSIyIiBudW1iZXJfb2ZfbW9udGhzPSIyIiBoaWRlX2VtcHR5X21vbnRocz0ieWVzIl0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:54:03','2022-09-18 23:54:03','',1700,'https://test-site.wlvrotary.org/?p=1801',0,'revision','',0),(1802,1,'2022-09-18 23:54:37','2022-09-18 23:54:37','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIG1vbnRoX2luY3JlPSItMyIgc2hvd191cGNvbWluZz0iMiIgbnVtYmVyX29mX21vbnRocz0iMiIgaGlkZV9lbXB0eV9tb250aHM9InllcyJd[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:54:37','2022-09-18 23:54:37','',1700,'https://test-site.wlvrotary.org/?p=1802',0,'revision','',0),(1803,1,'2022-09-18 23:55:32','2022-09-18 23:55:32','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIHNob3dfdXBjb21pbmc9IjIiIG51bWJlcl9vZl9tb250aHM9IjIiIGhpZGVfZW1wdHlfbW9udGhzPSJ5ZXMiXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-18 23:55:32','2022-09-18 23:55:32','',1700,'https://test-site.wlvrotary.org/?p=1803',0,'revision','',0),(1804,1,'2022-09-19 00:16:10','2022-09-19 00:16:10','<!-- wp:pattern {\"slug\":\"ajde_events/blocks\"} /-->','September Sunrise at Sunset','','publish','closed','closed','','1804','','','2022-09-19 00:37:06','2022-09-19 00:37:06','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1804',0,'ajde_events','',0),(1805,1,'2022-09-19 00:14:01','2022-09-19 00:14:01','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIHNob3dfdXBjb21pbmc9IisyIiBudW1iZXJfb2ZfbW9udGhzPSIyIiBoaWRlX2VtcHR5X21vbnRocz0ieWVzIl0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-19 00:14:01','2022-09-19 00:14:01','',1700,'https://test-site.wlvrotary.org/?p=1805',0,'revision','',0),(1807,1,'2022-09-19 00:30:19','2022-09-19 00:30:19','<!-- wp:pattern {\"slug\":\"ajde_events/blocks\"} /-->','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-14','','','2023-01-09 06:00:58','2023-01-09 06:00:58','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1807',0,'ajde_events','',0),(1808,1,'2022-09-19 00:31:56','2022-09-19 00:31:56','<!-- wp:pattern {\"slug\":\"ajde_events/blocks\"} /-->','General Club Meeting','','publish','open','closed','','general-meeting-wlv-sunrise-rotary-15','','','2023-01-09 06:01:43','2023-01-09 06:01:43','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&#038;p=1808',0,'ajde_events','',0),(1809,1,'2022-09-19 00:48:56','2022-09-19 00:48:56','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br>[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-19 00:48:56','2022-09-19 00:48:56','',1700,'https://test-site.wlvrotary.org/?p=1809',0,'revision','',0),(1813,1,'2022-09-20 03:12:20','2022-09-20 03:12:20','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Sunrise Rotary Foundation</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-20 03:12:20','2022-09-20 03:12:20','',1700,'https://test-site.wlvrotary.org/?p=1813',0,'revision','',0),(1810,1,'2022-09-19 00:55:29','2022-09-19 00:55:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br>[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_5\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor </p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"2_5\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"2_5\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-19 00:55:29','2022-09-19 00:55:29','',1700,'https://test-site.wlvrotary.org/?p=1810',0,'revision','',0),(1912,0,'2022-11-06 21:14:05','0000-00-00 00:00:00','','New Member Social','','draft','open','closed','','new-member-social','','','2022-11-06 21:14:05','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1912',0,'ajde_events','',0),(1909,0,'2022-10-24 05:05:51','0000-00-00 00:00:00','','Rotary Clubs of Westlake Village Meeting','','draft','open','closed','','rotary-clubs-of-westlake-village-meeting','','','2022-10-24 05:05:51','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1909',0,'ajde_events','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1826,1,'2022-09-20 03:50:06','2022-09-20 03:50:06','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"3\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"1.5px\"]\r\n<p>Fridays at 7:00 AM</p>\r\n<p>Los Robles Greens</p>\r\n<p>299 S. Moorpark Road</p>\r\n<p>Thousand Oaks, CA 91362</p>\r\n<p>United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"2px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"2px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]Rotary Club of Westlake Village Sunrise<br />\r\n123 Street Address<br />\r\nPO BOX. ###<br />\r\nCity, St. 00000</p>\r\n<p>555.555.5555<br />\r\ninfo@wlvrotary.org[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners<br></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2022-09-20 03:50:06','2022-09-20 03:50:06','',51,'https://test-site.wlvrotary.org/?p=1826',0,'revision','',0),(1816,1,'2022-09-20 03:26:03','2022-09-20 03:26:03','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"3\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"1.5px\"]\r\n<p>Fridays at 7:00 AM</p>\r\n<p>Los Robles Greens</p>\r\n<p>299 S. Moorpark Road</p>\r\n<p>Thousand Oaks, CA 91362</p>\r\n<p>United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Site Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"2px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"2px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]Rotary Club of Westlake Village Sunrise<br />\r\n123 Street Address<br />\r\nPO BOX. ###<br />\r\nCity, St. 00000</p>\r\n<p>555.555.5555<br />\r\ninfo@wlvrotary.org[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" content_layout=\"row\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-mobile-alt fas\" icon_divider=\"no\" icon_position=\"left\" margin_right=\"24px\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"](555) 802-1234[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-envelope far\" icon_divider=\"no\" icon_position=\"left\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]info@company.com[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"16px\" spacing=\"4%\" spacing_left_medium=\"0%\" spacing_right_medium=\"0%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"1\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"18px\" icons_boxed=\"yes\" color_type=\"custom\" icon_colors=\"#ffffff\" box_colors=\"#212326\" show_custom=\"no\" alignment=\"center\" alignment_medium=\"left\" tooltip_placement=\"top\" facebook=\"#\" twitter=\"#\" instagram=\"#\" youtube=\"#\" icon_colors_hover=\"#198fd9\" box_colors_hover=\"#ffffff\" box_border_top=\"0px\" box_border_right=\"0px\" box_border_bottom=\"0px\" box_border_left=\"0px\" box_border_color=\"#141617\" box_border_color_hover=\"#198fd9\" margin_top=\"0px\" margin_right=\"0px\" margin_bottom=\"0px\" margin_left=\"0px\" animation_direction=\"left\" animation_offset=\"top-into-view\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p>© 2021 - Avada Studio • Powered by WordPress</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2022-09-20 03:26:03','2022-09-20 03:26:03','',51,'https://test-site.wlvrotary.org/?p=1816',0,'revision','',0),(1817,1,'2022-09-20 03:26:13','2022-09-20 03:26:13','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"3\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"1.5px\"]\r\n<p>Fridays at 7:00 AM</p>\r\n<p>Los Robles Greens</p>\r\n<p>299 S. Moorpark Road</p>\r\n<p>Thousand Oaks, CA 91362</p>\r\n<p>United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"2px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"2px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]Rotary Club of Westlake Village Sunrise<br />\r\n123 Street Address<br />\r\nPO BOX. ###<br />\r\nCity, St. 00000</p>\r\n<p>555.555.5555<br />\r\ninfo@wlvrotary.org[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" content_layout=\"row\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-mobile-alt fas\" icon_divider=\"no\" icon_position=\"left\" margin_right=\"24px\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"](555) 802-1234[/fusion_button][fusion_button button_el_type=\"link\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"#9ee5b7\" bevel_color_hover=\"#9ee5b7\" border_hover_color=\"#ffffff\" color=\"custom\" icon=\"fa-envelope far\" icon_divider=\"no\" icon_position=\"left\" stretch=\"default\" default_stretch_value=\"no\" target=\"_self\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"6px\" padding_right=\"0px\" padding_bottom=\"6px\" padding_left=\"0px\" fusion_font_variant_button_font=\"400\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"2px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"rgba(19,21,22,0)\" button_gradient_top_color_hover=\"rgba(19,21,22,0)\" button_accent_color=\"#ffffff\" button_accent_hover_color=\"#ffffff\" button_bevel_color=\"#9ee5b7\" button_gradient_top_color=\"rgba(158,229,183,0)\" button_gradient_bottom_color=\"rgba(158,229,183,0)\" border_color=\"rgba(255,255,255,0)\" fusion_font_family_button_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]info@company.com[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"16px\" spacing=\"4%\" spacing_left_medium=\"0%\" spacing_right_medium=\"0%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"1\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_social_links hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"18px\" icons_boxed=\"yes\" color_type=\"custom\" icon_colors=\"#ffffff\" box_colors=\"#212326\" show_custom=\"no\" alignment=\"center\" alignment_medium=\"left\" tooltip_placement=\"top\" facebook=\"#\" twitter=\"#\" instagram=\"#\" youtube=\"#\" icon_colors_hover=\"#198fd9\" box_colors_hover=\"#ffffff\" box_border_top=\"0px\" box_border_right=\"0px\" box_border_bottom=\"0px\" box_border_left=\"0px\" box_border_color=\"#141617\" box_border_color_hover=\"#198fd9\" margin_top=\"0px\" margin_right=\"0px\" margin_bottom=\"0px\" margin_left=\"0px\" animation_direction=\"left\" animation_offset=\"top-into-view\" /][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p>© 2021 - Avada Studio • Powered by WordPress</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2022-09-20 03:26:13','2022-09-20 03:26:13','',51,'https://test-site.wlvrotary.org/?p=1817',0,'revision','',0),(1818,1,'2022-09-20 03:31:58','2022-09-20 03:31:58','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_text required=\"yes\" disabled=\"no\" minlength=\"0\" maxlength=\"0\" label=\"Name:\" name=\"name\" /][fusion_form_email required=\"yes\" label=\"Email:\" name=\"email\" /][fusion_form_select required=\"yes\" options=\"W1swLCJMZWFybmluZyBNb3JlIiwiIl0sWzAsIk1lbWJlcnNoaXAiLCIiXSxbMCwiVm9sdW50ZWVyaW5nIiwiIl0sWzAsIlBhcnRuZXJzaGlwcyIsIiJdXQ==\" logics=\"\" name=\"interest\" label=\"I&#x27;m Interested In: \" /][fusion_form_checkbox required=\"no\" min_required=\"0\" max_required=\"0\" options=\"W1swLCJTaWduIG1lIHVwIGZvciB0aGUgTmV3c2xldHRlciEiLCIiXV0=\" form_field_layout=\"stacked\" logics=\"\" name=\"newsletter\" /][fusion_form_notice success=\"Thank you for your message. It has been sent.\" error=\"There was an error trying to send your message. Please try again later.\" /][fusion_form_submit color=\"default\" gradient_end_position=\"100\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\"]Submit[/fusion_form_submit][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Newsletter Inquiry','','publish','closed','closed','','newsletter-inquiry','','','2023-01-10 05:15:06','2023-01-10 05:15:06','',0,'https://test-site.wlvrotary.org/fusion_form/newsletter-inquiry/',0,'fusion_form','',0),(2152,1,'2023-01-10 05:19:57','2023-01-10 05:19:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Recent &amp; Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg\" image_id=\"2036\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8-scaled.jpg\" image_id=\"2035\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg\" image_id=\"2034\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg\" image_id=\"2033\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg\" image_id=\"2032\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg\" image_id=\"2031\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg\" image_id=\"2030\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg\" image_id=\"2029\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg\" image_id=\"2028\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg\" image_id=\"2027\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg\" image_id=\"2026\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg\" image_id=\"2025\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg\" image_id=\"2024\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg\" image_id=\"2023\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg\" image_id=\"2022\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg\" image_id=\"2021\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg\" image_id=\"2020\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg\" image_id=\"2019\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg\" image_id=\"2018\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg\" image_id=\"2017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg\" image_id=\"2016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg\" image_id=\"2015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg\" image_id=\"2014\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg\" image_id=\"2002\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-10 05:19:57','2023-01-10 05:19:57','',1700,'https://test-site.wlvrotary.org/?p=2152',0,'revision','',0),(1820,1,'2022-09-20 03:36:09','2022-09-20 03:36:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-20 03:36:09','2022-09-20 03:36:09','',1700,'https://test-site.wlvrotary.org/?p=1820',0,'revision','',0),(1819,1,'2022-09-20 03:34:13','2022-09-20 03:34:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adip<br></p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>[/fusion_text][fusion_social_links margin_medium=\"\" margin_small=\"\" icon_colors=\"var(--awb-custom_color_2)\" icon_colors_hover=\"\" box_colors=\"\" box_colors_hover=\"\" box_border_color=\"\" box_border_color_hover=\"\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_form form_post_id=\"44\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-20 03:34:13','2022-09-20 03:34:13','',1700,'https://test-site.wlvrotary.org/?p=1819',0,'revision','',0),(1821,1,'2022-09-20 03:38:40','2022-09-20 03:38:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-20 03:38:40','2022-09-20 03:38:40','',1700,'https://test-site.wlvrotary.org/?p=1821',0,'revision','',0),(1822,1,'2022-09-20 03:42:29','2022-09-20 03:42:29','','vertical-image','','inherit','open','closed','','vertical-image','','','2022-09-20 03:42:29','2022-09-20 03:42:29','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg',0,'attachment','image/jpeg',0),(1823,1,'2022-09-20 03:42:31','2022-09-20 03:42:31','','rectangle-image','','inherit','open','closed','','rectangle-image','','','2022-09-20 03:42:31','2022-09-20 03:42:31','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg',0,'attachment','image/jpeg',0),(1824,1,'2022-09-20 03:43:24','2022-09-20 03:43:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_gallery order_by=\"desc\" load_more_btn_text=\"\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" picture_size=\"\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-20 03:43:24','2022-09-20 03:43:24','',1700,'https://test-site.wlvrotary.org/?p=1824',0,'revision','',0),(1863,1,'2022-09-27 02:41:06','2022-09-27 02:41:06','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-27 02:41:06','2022-09-27 02:41:06','',1700,'https://test-site.wlvrotary.org/?p=1863',0,'revision','',0),(1825,1,'2022-09-20 03:43:51','2022-09-20 03:43:51','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adip</p>[/fusion_text][fusion_gallery order_by=\"desc\" load_more_btn_text=\"\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" picture_size=\"\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-20 03:43:51','2022-09-20 03:43:51','',1700,'https://test-site.wlvrotary.org/?p=1825',0,'revision','',0),(1827,0,'2022-09-21 04:28:18','0000-00-00 00:00:00','','10/28/2022','','draft','open','closed','','10-28-2022','','','2022-09-21 04:28:18','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1827',0,'ajde_events','',0),(1830,1,'2022-09-27 00:31:57','2022-09-27 00:31:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\" first=\"true\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\" first=\"false\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\" first=\"false\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" min_height=\"\" link=\"\" first=\"false\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nGet Involved\r\n\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\" first=\"false\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers\r\n[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" layout=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adip\r\n\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nSunrise Rotary Foundation\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"true\" link=\"\" border_position=\"all\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adip\r\n\r\n[/fusion_text][fusion_gallery order_by=\"desc\" load_more_btn_text=\"\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" picture_size=\"\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 00:31:57','2022-09-27 00:31:57','',1829,'https://test-site.wlvrotary.org/?p=1830',0,'revision','',0),(1835,1,'2022-09-27 01:04:54','2022-09-27 01:04:54','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]<p>Getting to Know the Rotary Club of Westlake Village Sunrise</p>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div><div><p><br></p></div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div><div><p><br></p></div><div><p><br></p></div><div><p><br></p></div><p> </p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b>\nMichelle Ramsey\n\n<b>President-Elect</b>\nMatt Midura\n\n<b>Past President</b>\nJim Wisdom\n\n<b>Secretary</b>\nMarissa Hesler\n\n<b>Treasurer</b>\nMarilyn Lippiatt\n\n<b>Club Service</b>\nMatt Midura\n\n<b>Youth Service</b>\nJohn Thevenot\n\n<b>Community Service</b>\nTerry Moerler\n\n<b>The Rotary Foundation</b>\nNick Frankle\n\n<b>International Service</b>\nJon Morse\n\n<b>Club Fundraising</b>\nLaura (Paine) Willis\n\n<b>Vocational Service</b>\nJoe Pickard\n\n<b>Member Retention</b>\nRagnar Storm-Larsen\n\n<b>Sunrise Foundation President</b>\nDon Martin\n\n<b>Sunrise Foundation Treasurer</b>\nRon Yamashiro\n\n<b>Sunrise Foundation Member</b>\nLaura (Paine) Willis\n\n<b>Member Recruitment</b>\nRagnar Storm-Larsen\n\n<b>Public Relations</b>\nRandy Strong\n\n<b>Fundraising Co-chair</b>\nRandy Strong\n\n<b>Programs</b>\nRandy Strong\n\n<b>Photographer</b>\nMichael Zapf\n\n<b>Environment</b>\nGregory Patterson\n\n<b>Awards</b>\nMichael Zapf\n\nMeals on Wheels\nMichelle Ramsey\n\n<b>Programs</b>\nMike Willis\n\n<b>Youth Service</b>\nJohn Thevenot\n\n<b>Club Bulletin Editor</b>\nMichael Zapf\n\n<b>Editor</b>\nRandy Strong\n\n<b>Family of Rotary</b>\nJim Wisdom\n\n<b>Programs</b>\nLaura (Paine) Willis\n\n<b>Interact Advisor</b>\nJohn Thevenot\n\n<b>RYLA Coordinator</b>\nJohn Thevenot\n\n<b>Rotaract Advisor</b>\nJohn Thevenot\n\n<b>Website</b>\nMatt Midura\n\n<b>Sgt-At-Arms</b>\nDaniel Harutunian\n\n<b>Peace Chair</b>\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"2_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p><p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p><p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p><p></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 01:04:54','2022-09-27 01:04:54','',1829,'https://test-site.wlvrotary.org/?p=1835',0,'revision','',0),(1834,1,'2022-09-27 01:01:49','2022-09-27 01:01:49','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]<p>Getting to Know the Rotary Club of Westlake Village Sunrise</p>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div><div><p><br></p></div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div><div><p><br></p></div><div><p><br></p></div><div><p><br></p></div><p> </p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<p><b>President</b><br>Michelle Ramsey</p>\n<p><b>President-Elect</b><br>Matt Midura</p>\n<p><b>Past President</b><br>Jim Wisdom</p>\n<p><b>Secretary</b><br>Marissa Hesler\n</p><p><b>Treasurer</b><br>Marilyn Lippiatt\n</p><p><b>Club Service</b><br>Matt Midura\n</p><p><b>Youth Service</b><br>John Thevenot\n</p><p><b>Community Service</b><br>Terry Moerler\n</p><p><b>The Rotary Foundation</b><br>Nick Frankle\n</p><p><b>International Service</b><br>Jon Morse\n</p><p><b>Club Fundraising</b><br>Laura (Paine) Willis\n</p><p><b>Vocational Service</b><br>Joe Pickard\n</p><p><b>Member Retention</b><br>Ragnar Storm-Larsen\n</p><p><b>Sunrise Foundation President</b><br>Don Martin\n</p><p><b>Sunrise Foundation Treasurer</b><br>Ron Yamashiro\n</p><p><b>Sunrise Foundation Member</b><br>Laura (Paine) Willis\n</p><p><b>Member Recruitment</b><br>Ragnar Storm-Larsen\n</p><p><b>Public Relations</b><br>Randy Strong\n</p><p><b>Fundraising Co-chair</b><br>Randy Strong\n</p><p><b>Programs</b><br>Randy Strong\n</p><p><b>Photographer</b><br>Michael Zapf\n</p><p><b>Environment</b><br>Gregory Patterson\n</p><p><b>Awards</b><br>Michael Zapf\n</p><p>Meals on Wheels<br>Michelle Ramsey\n</p><p><b>Programs</b><br>Mike Willis\n</p><p><b>Youth Service</b><br>John Thevenot\n</p><p><b>Club Bulletin Editor</b><br>Michael Zapf\n</p><p><b>Editor</b><br>Randy Strong\n</p><p><b>Family of Rotary</b><br>Jim Wisdom\n</p><p><b>Programs</b><br>Laura (Paine) Willis\n</p><p><b>Interact Advisor</b><br>John Thevenot\n</p><p><b>RYLA Coordinator</b><br>John Thevenot\n</p><p><b>Rotaract Advisor</b><br>John Thevenot\n</p><p><b>Website</b><br>Matt Midura\n<br></p><p><b>Sgt-At-Arms</b><br>Daniel Harutunian\n</p><p><b>Peace Chair</b><br>Jim Wisdom\n\n	</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 01:01:49','2022-09-27 01:01:49','',1829,'https://test-site.wlvrotary.org/?p=1834',0,'revision','',0),(1833,1,'2022-09-27 00:49:56','2022-09-27 00:49:56','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]About Us<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<h1 class=\"title-heading-left fusion-live-editable medium-editor-element\" role=\"textbox\" contenteditable=\"true\" spellcheck=\"true\" data-inline-parent-cid=\"4\" data-inline-override-color=\"text_color\" data-inline-override-font-size=\"font_size\" data-inline-override-line-height=\"line_height\" data-inline-override-letter-spacing=\"letter_spacing\" data-inline-override-tag=\"size\" data-toolbar=\"full\" data-param=\"element_content\" data-medium-editor-element=\"true\" aria-multiline=\"true\" data-medium-editor-editor-index=\"9\" data-placeholder=\"Your Content Goes Here\" data-medium-focused=\"true\">Getting to Know the Rotary Club of Westlake Village Sunrise</h1>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\n<ul><li>Promote Peace</li><li>Fight Disease</li><li>Provide Resources for Those in Need</li><li>Support Children &amp; Education</li><li>Grow Local Economies</li><li>Protect the Environment</li></ul>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club works to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:\n<ul>\n 	<li>America Supporting Americans (ASA)</li>\n 	<li>Art Trek</li>\n 	<li>Big Brothers/Big Sisters</li>\n 	<li>Boys and Girls Club of Conejo Valley</li>\n 	<li>Disaster Communications</li>\n 	<li>For the Troops</li>\n 	<li>Harbor House</li>\n 	<li>James Storehouse</li>\n 	<li>KCLU</li>\n 	<li>Manna</li>\n 	<li>Many Mansions</li>\n 	<li>Safe Passage</li>\n 	<li>Senior Concerns</li>\n 	<li>Yarrow Family YMCA</li>\n</ul>\n&nbsp;[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 00:49:56','2022-09-27 00:49:56','',1829,'https://test-site.wlvrotary.org/?p=1833',0,'revision','',0),(1837,1,'2022-09-27 01:05:36','2022-09-27 01:05:36','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n\r\nGetting to Know the Rotary Club of Westlake Village Sunrise\r\n\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nThe Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves\r\n\r\nFor nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:\r\n<ul>\r\n 	<li>Promote Peace</li>\r\n 	<li>Fight Disease</li>\r\n 	<li>Provide Resources for Those in Need</li>\r\n 	<li>Support Children &amp; Education</li>\r\n 	<li>Grow Local Economies</li>\r\n 	<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b>\r\nMichelle Ramsey\r\n\r\n<b>President-Elect</b>\r\nMatt Midura\r\n\r\n<b>Past President</b>\r\nJim Wisdom\r\n\r\n<b>Secretary</b>\r\nMarissa Hesler\r\n\r\n<b>Treasurer</b>\r\nMarilyn Lippiatt\r\n\r\n<b>Club Service</b>\r\nMatt Midura\r\n\r\n<b>Youth Service</b>\r\nJohn Thevenot\r\n\r\n<b>Community Service</b>\r\nTerry Moerler\r\n\r\n<b>The Rotary Foundation</b>\r\nNick Frankle\r\n\r\n<b>International Service</b>\r\nJon Morse\r\n\r\n<b>Club Fundraising</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Vocational Service</b>\r\nJoe Pickard\r\n\r\n<b>Member Retention</b>\r\nRagnar Storm-Larsen\r\n\r\n<b>Sunrise Foundation President</b>\r\nDon Martin\r\n\r\n<b>Sunrise Foundation Treasurer</b>\r\nRon Yamashiro\r\n\r\n<b>Sunrise Foundation Member</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Member Recruitment</b>\r\nRagnar Storm-Larsen\r\n\r\n<b>Public Relations</b>\r\nRandy Strong\r\n\r\n<b>Fundraising Co-chair</b>\r\nRandy Strong\r\n\r\n<b>Programs</b>\r\nRandy Strong\r\n\r\n<b>Photographer</b>\r\nMichael Zapf\r\n\r\n<b>Environment</b>\r\nGregory Patterson\r\n\r\n<b>Awards</b>\r\nMichael Zapf\r\n\r\nMeals on Wheels\r\nMichelle Ramsey\r\n\r\n<b>Programs</b>\r\nMike Willis\r\n\r\n<b>Youth Service</b>\r\nJohn Thevenot\r\n\r\n<b>Club Bulletin Editor</b>\r\nMichael Zapf\r\n\r\n<b>Editor</b>\r\nRandy Strong\r\n\r\n<b>Family of Rotary</b>\r\nJim Wisdom\r\n\r\n<b>Programs</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Interact Advisor</b>\r\nJohn Thevenot\r\n\r\n<b>RYLA Coordinator</b>\r\nJohn Thevenot\r\n\r\n<b>Rotaract Advisor</b>\r\nJohn Thevenot\r\n\r\n<b>Website</b>\r\nMatt Midura\r\n\r\n<b>Sgt-At-Arms</b>\r\nDaniel Harutunian\r\n\r\n<b>Peace Chair</b>\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"true\" link=\"\" border_position=\"all\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n<b>Rotary Club of Westlake Village Sunrise By-Laws</b>\r\n\r\n<b>Rotary Club of Westlake Village Sunrise Resolutions</b>\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 01:05:36','2022-09-27 01:05:36','',1829,'https://test-site.wlvrotary.org/?p=1837',0,'revision','',0),(1838,1,'2022-09-27 02:59:03','2022-09-27 01:06:02',' ','','','publish','closed','closed','','1838','','','2022-09-27 02:59:03','2022-09-27 02:59:03','',0,'https://test-site.wlvrotary.org/?p=1838',1,'nav_menu_item','',0),(1839,1,'2022-09-27 01:13:09','2022-09-27 01:13:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>Getting to Know the Rotary Club of Westlake Village Sunrise</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n<div>\r\n<p>&nbsp;</p>\r\n</div>\r\n<div>\r\n<p>&nbsp;</p>\r\n</div>\r\n<div>\r\n<p>&nbsp;</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div><p><b>Fellowship</b>: We build lifelong relationships.</p><p><b>Integrity</b>: We honor our commitments.</p><p><b>Diversity</b>: We connect diverse perspectives.</p><p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p></div>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b><br />\r\nMichelle Ramsey</p>\r\n<p><b>President-Elect</b><br />\r\nMatt Midura</p>\r\n<p><b>Past President</b><br />\r\nJim Wisdom</p>\r\n<p><b>Secretary</b><br />\r\nMarissa Hesler</p>\r\n<p><b>Treasurer</b><br />\r\nMarilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />\r\nMatt Midura</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Community Service</b><br />\r\nTerry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />\r\nNick Frankle</p>\r\n<p><b>International Service</b><br />\r\nJon Morse</p>\r\n<p><b>Club Fundraising</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />\r\nJoe Pickard</p>\r\n<p><b>Member Retention</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />\r\nDon Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />\r\nRon Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Public Relations</b><br />\r\nRandy Strong</p>\r\n<p><b>Fundraising Co-chair</b><br />\r\nRandy Strong</p>\r\n<p><b>Programs</b><br />\r\nRandy Strong</p>\r\n<p><b>Photographer</b><br />\r\nMichael Zapf</p>\r\n<p><b>Environment</b><br />\r\nGregory Patterson</p>\r\n<p><b>Awards</b><br />\r\nMichael Zapf</p>\r\n<p>Meals on Wheels<br />\r\nMichelle Ramsey</p>\r\n<p><b>Programs</b><br />\r\nMike Willis</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Club Bulletin Editor</b><br />\r\nMichael Zapf</p>\r\n<p><b>Editor</b><br />\r\nRandy Strong</p>\r\n<p><b>Family of Rotary</b><br />\r\nJim Wisdom</p>\r\n<p><b>Programs</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Interact Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>RYLA Coordinator</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Rotaract Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Website</b><br />\r\nMatt Midura</p>\r\n<p><b>Sgt-At-Arms</b><br />\r\nDaniel Harutunian</p>\r\n<p><b>Peace Chair</b><br />\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 01:13:09','2022-09-27 01:13:09','',1829,'https://test-site.wlvrotary.org/?p=1839',0,'revision','',0),(1840,1,'2022-09-27 01:23:12','2022-09-27 01:23:12','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"25\" padding_bottom=\"25\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25 \" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"125\" aspect_ratio_position=\"49% 41%\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Nearly 6 million children under the age of five die each year because of malnutrition, poor health care, and inadequate sanitation. We expand access to quality care, so mothers and their children can live and grow stronger.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','publish','closed','closed','','our-causes','','','2023-01-10 04:52:19','2023-01-10 04:52:19','',0,'https://test-site.wlvrotary.org/?page_id=1840',0,'page','',0),(1841,1,'2022-09-27 01:23:12','2022-09-27 01:23:12','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n\r\nGetting to Know the Rotary Club of Westlake Village Sunrise\r\n\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nThe Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves\r\n\r\nFor nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:\r\n<ul>\r\n 	<li>Promote Peace</li>\r\n 	<li>Fight Disease</li>\r\n 	<li>Provide Resources for Those in Need</li>\r\n 	<li>Support Children &amp; Education</li>\r\n 	<li>Grow Local Economies</li>\r\n 	<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\n<b>Fellowship</b>: We build lifelong relationships.\r\n\r\n<b>Integrity</b>: We honor our commitments.\r\n\r\n<b>Diversity</b>: We connect diverse perspectives.\r\n\r\n<b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.\r\n\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b>\r\nMichelle Ramsey\r\n\r\n<b>President-Elect</b>\r\nMatt Midura\r\n\r\n<b>Past President</b>\r\nJim Wisdom\r\n\r\n<b>Secretary</b>\r\nMarissa Hesler\r\n\r\n<b>Treasurer</b>\r\nMarilyn Lippiatt\r\n\r\n<b>Club Service</b>\r\nMatt Midura\r\n\r\n<b>Youth Service</b>\r\nJohn Thevenot\r\n\r\n<b>Community Service</b>\r\nTerry Moerler\r\n\r\n<b>The Rotary Foundation</b>\r\nNick Frankle\r\n\r\n<b>International Service</b>\r\nJon Morse\r\n\r\n<b>Club Fundraising</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Vocational Service</b>\r\nJoe Pickard\r\n\r\n<b>Member Retention</b>\r\nRagnar Storm-Larsen\r\n\r\n<b>Sunrise Foundation President</b>\r\nDon Martin\r\n\r\n<b>Sunrise Foundation Treasurer</b>\r\nRon Yamashiro\r\n\r\n<b>Sunrise Foundation Member</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Member Recruitment</b>\r\nRagnar Storm-Larsen\r\n\r\n<b>Public Relations</b>\r\nRandy Strong\r\n\r\n<b>Fundraising Co-chair</b>\r\nRandy Strong\r\n\r\n<b>Programs</b>\r\nRandy Strong\r\n\r\n<b>Photographer</b>\r\nMichael Zapf\r\n\r\n<b>Environment</b>\r\nGregory Patterson\r\n\r\n<b>Awards</b>\r\nMichael Zapf\r\n\r\nMeals on Wheels\r\nMichelle Ramsey\r\n\r\n<b>Programs</b>\r\nMike Willis\r\n\r\n<b>Youth Service</b>\r\nJohn Thevenot\r\n\r\n<b>Club Bulletin Editor</b>\r\nMichael Zapf\r\n\r\n<b>Editor</b>\r\nRandy Strong\r\n\r\n<b>Family of Rotary</b>\r\nJim Wisdom\r\n\r\n<b>Programs</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Interact Advisor</b>\r\nJohn Thevenot\r\n\r\n<b>RYLA Coordinator</b>\r\nJohn Thevenot\r\n\r\n<b>Rotaract Advisor</b>\r\nJohn Thevenot\r\n\r\n<b>Website</b>\r\nMatt Midura\r\n\r\n<b>Sgt-At-Arms</b>\r\nDaniel Harutunian\r\n\r\n<b>Peace Chair</b>\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n<b>Rotary Club of Westlake Village Sunrise By-Laws</b>\r\n\r\n<b>Rotary Club of Westlake Village Sunrise Resolutions</b>\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes - Why Rotary','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 01:23:12','2022-09-27 01:23:12','',1840,'https://test-site.wlvrotary.org/?p=1841',0,'revision','',0),(1842,1,'2022-09-27 01:42:10','2022-09-27 01:42:10','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]<p>Our Causes</p>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco <br></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div><p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p></div>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<ul><li>America Supporting Americans (ASA)</li><li>Art Trek</li><li>Big Brothers/Big Sisters</li><li>Boys and Girls Club of Conejo Valley</li><li>Disaster Communications</li><li>For the Troops</li><li>Harbor House</li><li>James Storehouse</li><li>KCLU</li><li>Manna</li><li>Many Mansions</li><li>Safe Passage</li><li>Senior Concerns</li><li>Yarrow Family YMCA</li></ul><p></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<br><p><br></p></div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes - Why Rotary','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 01:42:10','2022-09-27 01:42:10','',1840,'https://test-site.wlvrotary.org/?p=1842',0,'revision','',0),(1843,1,'2022-09-27 01:43:00','2022-09-27 01:43:00','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]<p>Our Causes</p>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco <br></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div><p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p></div>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<ul>\n 	<li>America Supporting Americans (ASA)</li>\n 	<li>Art Trek</li>\n 	<li>Big Brothers/Big Sisters</li>\n 	<li>Boys and Girls Club of Conejo Valley</li>\n 	<li>Disaster Communications</li>\n 	<li>For the Troops</li>\n 	<li>Harbor House</li>\n 	<li>James Storehouse</li>\n 	<li>KCLU</li>\n 	<li>Manna</li>\n 	<li>Many Mansions</li>\n 	<li>Safe Passage</li>\n 	<li>Senior Concerns</li>\n 	<li>Yarrow Family YMCA</li>\n</ul>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<br><p><br></p></div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes - Why Rotary','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 01:43:00','2022-09-27 01:43:00','',1840,'https://test-site.wlvrotary.org/?p=1843',0,'revision','',0),(1844,1,'2022-09-27 02:59:03','2022-09-27 01:45:49',' ','','','publish','closed','closed','','our-causes','','','2022-09-27 02:59:03','2022-09-27 02:59:03','',0,'https://test-site.wlvrotary.org/?p=1844',2,'nav_menu_item','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1845,1,'2022-09-27 01:47:43','2022-09-27 01:47:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>Getting to Know the Rotary Club of Westlake Village Sunrise</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div><p>In addition to our regular meetings, the Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p><p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion.\"<br></p><p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test.  (Or something like this)</p></div>\n<div>\n<p> </p>\n</div>\n<div>\n<p> </p>\n</div>\n<div>\n<p> </p>\n</div>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b><br />\r\nMichelle Ramsey</p>\r\n<p><b>President-Elect</b><br />\r\nMatt Midura</p>\r\n<p><b>Past President</b><br />\r\nJim Wisdom</p>\r\n<p><b>Secretary</b><br />\r\nMarissa Hesler</p>\r\n<p><b>Treasurer</b><br />\r\nMarilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />\r\nMatt Midura</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Community Service</b><br />\r\nTerry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />\r\nNick Frankle</p>\r\n<p><b>International Service</b><br />\r\nJon Morse</p>\r\n<p><b>Club Fundraising</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />\r\nJoe Pickard</p>\r\n<p><b>Member Retention</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />\r\nDon Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />\r\nRon Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Public Relations</b><br />\r\nRandy Strong</p>\r\n<p><b>Fundraising Co-chair</b><br />\r\nRandy Strong</p>\r\n<p><b>Programs</b><br />\r\nRandy Strong</p>\r\n<p><b>Photographer</b><br />\r\nMichael Zapf</p>\r\n<p><b>Environment</b><br />\r\nGregory Patterson</p>\r\n<p><b>Awards</b><br />\r\nMichael Zapf</p>\r\n<p>Meals on Wheels<br />\r\nMichelle Ramsey</p>\r\n<p><b>Programs</b><br />\r\nMike Willis</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Club Bulletin Editor</b><br />\r\nMichael Zapf</p>\r\n<p><b>Editor</b><br />\r\nRandy Strong</p>\r\n<p><b>Family of Rotary</b><br />\r\nJim Wisdom</p>\r\n<p><b>Programs</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Interact Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>RYLA Coordinator</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Rotaract Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Website</b><br />\r\nMatt Midura</p>\r\n<p><b>Sgt-At-Arms</b><br />\r\nDaniel Harutunian</p>\r\n<p><b>Peace Chair</b><br />\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 01:47:43','2022-09-27 01:47:43','',1829,'https://test-site.wlvrotary.org/?p=1845',0,'revision','',0),(1846,1,'2022-09-27 01:49:43','2022-09-27 01:49:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco </p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b> </p><p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p><p>Food drives in conjunction with our youth arm of Rotary</p><p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p><p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p><p>Literacy projects and book drives</p><p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p><p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n<p></p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes - Why Rotary','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 01:49:43','2022-09-27 01:49:43','',1840,'https://test-site.wlvrotary.org/?p=1846',0,'revision','',0),(1847,1,'2022-09-27 01:50:56','2022-09-27 01:50:56','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A 501 (c)3 Charitable Corporation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>In 1991, the board of directors of the Rotary Club of Westlake Village Sunrise made the decision to establish a 501 (c)3 nonprofit foundation to manage all incoming and outgoing donations from our club.  As a Rotary club, we are a 501 (c)4 nonprofit organization.  For the purpose of accepting tax deductible donations, it was important to form the Sunrise Rotary Foundation.</p>\r\n<p>On December 31, 1991, we received our notification from the IRS and the Sunrise Rotary Foundation was officially established.  Our FEIN number is 77-0253850.  The Foundation Board is made up of five Rotarians, and serves as a separate entity to manage all funding from club fundraisers and donations.  All donations are given exclusively to nonprofit organizations with a 501 (c)3 status.  </p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2016|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2069|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p>\r\n<p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p>\r\n</p>\r\n<p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Don Martin for additional information.</p>\r\n<p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','publish','closed','closed','','sunrise-rotary-foundation','','','2023-01-09 05:13:57','2023-01-09 05:13:57','',0,'https://test-site.wlvrotary.org/?page_id=1847',0,'page','',0),(1849,1,'2022-09-27 01:55:13','2022-09-27 01:55:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Secondary Tagline Here<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. <br></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p><p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p><p> </p><p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Randy Strong for additional information.</p><p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the [/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','inherit','closed','closed','','1847-revision-v1','','','2022-09-27 01:55:13','2022-09-27 01:55:13','',1847,'https://test-site.wlvrotary.org/?p=1849',0,'revision','',0),(1850,1,'2022-09-27 01:55:28','2022-09-27 01:55:28','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Secondary Tagline Here<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. <br></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p><p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p><p> </p><p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Randy Strong for additional information.</p><p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','inherit','closed','closed','','1847-revision-v1','','','2022-09-27 01:55:28','2022-09-27 01:55:28','',1847,'https://test-site.wlvrotary.org/?p=1850',0,'revision','',0),(1848,1,'2022-09-27 01:50:56','2022-09-27 01:50:56','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n\r\nGetting to Know the Rotary Club of Westlake Village Sunrise\r\n\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nThe Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves\r\n\r\nFor nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:\r\n<ul>\r\n 	<li>Promote Peace</li>\r\n 	<li>Fight Disease</li>\r\n 	<li>Provide Resources for Those in Need</li>\r\n 	<li>Support Children &amp; Education</li>\r\n 	<li>Grow Local Economies</li>\r\n 	<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\nIn addition to our regular meetings, the Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley.\r\n\r\nAll of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion.\"\r\n\r\nThese meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. (Or something like this)\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\n<b>Fellowship</b>: We build lifelong relationships.\r\n\r\n<b>Integrity</b>: We honor our commitments.\r\n\r\n<b>Diversity</b>: We connect diverse perspectives.\r\n\r\n<b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.\r\n\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b>\r\nMichelle Ramsey\r\n\r\n<b>President-Elect</b>\r\nMatt Midura\r\n\r\n<b>Past President</b>\r\nJim Wisdom\r\n\r\n<b>Secretary</b>\r\nMarissa Hesler\r\n\r\n<b>Treasurer</b>\r\nMarilyn Lippiatt\r\n\r\n<b>Club Service</b>\r\nMatt Midura\r\n\r\n<b>Youth Service</b>\r\nJohn Thevenot\r\n\r\n<b>Community Service</b>\r\nTerry Moerler\r\n\r\n<b>The Rotary Foundation</b>\r\nNick Frankle\r\n\r\n<b>International Service</b>\r\nJon Morse\r\n\r\n<b>Club Fundraising</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Vocational Service</b>\r\nJoe Pickard\r\n\r\n<b>Member Retention</b>\r\nRagnar Storm-Larsen\r\n\r\n<b>Sunrise Foundation President</b>\r\nDon Martin\r\n\r\n<b>Sunrise Foundation Treasurer</b>\r\nRon Yamashiro\r\n\r\n<b>Sunrise Foundation Member</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Member Recruitment</b>\r\nRagnar Storm-Larsen\r\n\r\n<b>Public Relations</b>\r\nRandy Strong\r\n\r\n<b>Fundraising Co-chair</b>\r\nRandy Strong\r\n\r\n<b>Programs</b>\r\nRandy Strong\r\n\r\n<b>Photographer</b>\r\nMichael Zapf\r\n\r\n<b>Environment</b>\r\nGregory Patterson\r\n\r\n<b>Awards</b>\r\nMichael Zapf\r\n\r\nMeals on Wheels\r\nMichelle Ramsey\r\n\r\n<b>Programs</b>\r\nMike Willis\r\n\r\n<b>Youth Service</b>\r\nJohn Thevenot\r\n\r\n<b>Club Bulletin Editor</b>\r\nMichael Zapf\r\n\r\n<b>Editor</b>\r\nRandy Strong\r\n\r\n<b>Family of Rotary</b>\r\nJim Wisdom\r\n\r\n<b>Programs</b>\r\nLaura (Paine) Willis\r\n\r\n<b>Interact Advisor</b>\r\nJohn Thevenot\r\n\r\n<b>RYLA Coordinator</b>\r\nJohn Thevenot\r\n\r\n<b>Rotaract Advisor</b>\r\nJohn Thevenot\r\n\r\n<b>Website</b>\r\nMatt Midura\r\n\r\n<b>Sgt-At-Arms</b>\r\nDaniel Harutunian\r\n\r\n<b>Peace Chair</b>\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n<b>Rotary Club of Westlake Village Sunrise By-Laws</b>\r\n\r\n<b>Rotary Club of Westlake Village Sunrise Resolutions</b>\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','inherit','closed','closed','','1847-revision-v1','','','2022-09-27 01:50:56','2022-09-27 01:50:56','',1847,'https://test-site.wlvrotary.org/?p=1848',0,'revision','',0),(1851,1,'2022-09-27 01:57:48','2022-09-27 01:57:48','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2034|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"82% 63%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">We would be happy to talk with you further or email you some additional information about the Rotary Club of Westlake Village Sunrise!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">If you are interested in joining Rotary, we’d love to hear from you!  Please begin by filling out our membership application below.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Interested in volunteering on a community project?  We’d love to hear from you!  We can provide you with upcoming opportunities.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','publish','closed','closed','','get-involved','','','2023-01-09 04:54:01','2023-01-09 04:54:01','',0,'https://test-site.wlvrotary.org/?page_id=1851',0,'page','',0),(1852,1,'2022-09-27 01:57:48','2022-09-27 01:57:48','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Secondary Tagline Here\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nThrough the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.\r\n\r\nYour gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.\r\n\r\nIf you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Randy Strong for additional information.\r\n\r\nThe members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!\r\n\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2022-09-27 01:57:48','2022-09-27 01:57:48','',1851,'https://test-site.wlvrotary.org/?p=1852',0,'revision','',0),(1854,1,'2022-09-27 02:01:07','2022-09-27 02:01:07','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p><p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p><p>To join Westlake Village Sunrise Rotary, you must be:</p><ul><li>A leading representative of your business or profession.</li><li>Interested in networking with the most influential leaders in business and civic communities.</li><li>Willing to participate in and/or support projects that enhance our community.</li><li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li></ul><p></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2022-09-27 02:01:07','2022-09-27 02:01:07','',1851,'https://test-site.wlvrotary.org/?p=1854',0,'revision','',0),(1853,1,'2022-09-27 01:59:34','2022-09-27 01:59:34','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p>\r\n<p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p>\r\n<p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Randy Strong for additional information.</p>\r\n<p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2022-09-27 01:59:34','2022-09-27 01:59:34','',1851,'https://test-site.wlvrotary.org/?p=1853',0,'revision','',0),(1855,1,'2022-09-27 02:59:03','2022-09-27 02:26:53',' ','','','publish','closed','closed','','1855','','','2022-09-27 02:59:03','2022-09-27 02:59:03','',0,'https://test-site.wlvrotary.org/?p=1855',3,'nav_menu_item','',0),(1856,1,'2022-09-27 02:59:03','2022-09-27 02:26:53',' ','','','publish','closed','closed','','1856','','','2022-09-27 02:59:03','2022-09-27 02:59:03','',0,'https://test-site.wlvrotary.org/?p=1856',5,'nav_menu_item','',0),(1857,1,'2022-09-27 02:29:33','2022-09-27 02:29:33','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco </p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b> </p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div><p><strong>Networking</strong></p><div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</div><div> </div><div><strong>Community Service</strong></div><div> </div><div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</div><div> </div><div><strong>Friendship</strong></div><div> </div><div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</div><div><br /><strong>Family</strong></div><div> </div><div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</div><div> </div><div><strong>Ethics</strong></div><div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div><div> </div><div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div><div><br />Of the things we think, say or do</div><ol><li>Is it the TRUTH?</li><li>Is it FAIR to all concerned?</li><li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li><li>Will it be BENEFICIAL to all concerned?</li></ol><div><strong>Leadership</strong></div><div> </div><div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div></div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes - Why Rotary','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 02:29:33','2022-09-27 02:29:33','',1840,'https://test-site.wlvrotary.org/?p=1857',0,'revision','',0),(1858,1,'2022-09-27 02:41:22','2022-09-27 02:41:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong><br />\r\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</div>\r\n<div>\r\n<p><strong>Family</strong></p>\r\n</div>\r\n<div></div>\r\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n<div>\r\n<p></p>\r\n</div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Don\'t miss out<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region. </div>\r\n<div></div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','publish','closed','closed','','why-rotary','','','2023-01-10 05:03:48','2023-01-10 05:03:48','',0,'https://test-site.wlvrotary.org/?page_id=1858',0,'page','',0),(2143,1,'2023-01-10 04:47:28','2023-01-10 04:47:28','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong><br>\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\n</div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\n</div>\n<div>\n<p><strong>Family</strong></p>\n</div>\n<div></div>\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\n<div></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?</li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div><div><p><br></p></div>\n</div>[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Make A Difference<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region.<br></div>\n<div></div>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p><br></p><p><br></p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 04:47:28','2023-01-10 04:47:28','',1858,'https://test-site.wlvrotary.org/?p=2143',0,'revision','',0),(1859,1,'2022-09-27 02:34:29','2022-09-27 02:34:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong><br>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.<br></p>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.<br><br></div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.<br><p><br></p></div><div><p><strong>Family</strong></p><p>\n</p></div><div></div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.<br><div><p><br></p></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?</li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\n</div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Frequently Asked Questions[/fusion_title][fusion_accordion border_size=\"3\" title_tag=\"h4\" icon_size=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"no\"][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2022-09-27 02:34:29','2022-09-27 02:34:29','',1858,'https://test-site.wlvrotary.org/?p=1859',0,'revision','',0),(2142,1,'2023-01-10 04:46:56','2023-01-10 04:46:56','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong><br>\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\n</div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\n</div>\n<div>\n<p><strong>Family</strong></p>\n</div>\n<div></div>\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\n<div></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?</li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div><div><p><br></p></div>\n</div>[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Make A Difference<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region.<br></div>\n<div></div>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p><p></p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 04:46:56','2023-01-10 04:46:56','',1858,'https://test-site.wlvrotary.org/?p=2142',0,'revision','',0),(1864,1,'2022-09-27 02:41:22','2022-09-27 02:41:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\n<strong>Networking</strong>\r\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>\r\n\r\nClub members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.\r\n\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>\r\n\r\nRotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.\r\n\r\n</div>\r\n<div>\r\n\r\n<strong>Family</strong>\r\n\r\n</div>\r\n<div></div>\r\nRotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.\r\n<div></div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n 	<li>Is it the TRUTH?</li>\r\n 	<li>Is it FAIR to all concerned?</li>\r\n 	<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n 	<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n</div>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n<div></div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get Involved Now[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Frequently Asked Questions[/fusion_title][fusion_accordion border_size=\"3\" title_tag=\"h4\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"no\"][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2022-09-27 02:41:22','2022-09-27 02:41:22','',1858,'https://test-site.wlvrotary.org/?p=1864',0,'revision','',0),(1862,1,'2022-09-27 02:40:36','2022-09-27 02:40:36','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong><br />An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n<p></p>\r\n</div>\r\n<div>\r\n<p><strong>Family</strong></p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<div>\r\n<p></p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n</div>\r\n[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n<div>\r\n<p></p>\r\n</div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get Involved Now[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Frequently Asked Questions[/fusion_title][fusion_accordion border_size=\"3\" title_tag=\"h4\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"no\"][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2022-09-27 02:40:36','2022-09-27 02:40:36','',1858,'https://test-site.wlvrotary.org/?p=1862',0,'revision','',0),(1860,1,'2022-09-27 02:35:55','2022-09-27 02:35:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong><br>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.<br></p>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.<br><br></div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.<br><p><br></p></div><div><p><strong>Family</strong></p><p>\n</p></div><div></div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.<br><div><p><br></p></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?</li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\n</div>[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div><div><p><br></p></div>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get Involved Now[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Frequently Asked Questions[/fusion_title][fusion_accordion border_size=\"3\" title_tag=\"h4\" icon_size=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"no\"][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][fusion_toggle title=\"Your Content Goes Here\" open=\"no\"]Your Content Goes Here[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2022-09-27 02:35:55','2022-09-27 02:35:55','',1858,'https://test-site.wlvrotary.org/?p=1860',0,'revision','',0),(1861,1,'2022-09-27 02:39:40','2022-09-27 02:39:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n\r\nOur Causes\r\n\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nWe carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nMore than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nRotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nRotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nWe educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\nOur clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:\r\n\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n 	<li>America Supporting Americans (ASA)</li>\r\n 	<li>Art Trek</li>\r\n 	<li>Big Brothers/Big Sisters</li>\r\n 	<li>Boys and Girls Club of Conejo Valley</li>\r\n 	<li>Disaster Communications</li>\r\n 	<li>For the Troops</li>\r\n 	<li>Harbor House</li>\r\n 	<li>James Storehouse</li>\r\n 	<li>KCLU</li>\r\n 	<li>Manna</li>\r\n 	<li>Many Mansions</li>\r\n 	<li>Safe Passage</li>\r\n 	<li>Senior Concerns</li>\r\n 	<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\n<b>Holidays In The Village - A European Marketplace - Fundraiser</b>\r\n\r\n<b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation\r\n\r\nFood drives in conjunction with our youth arm of Rotary\r\n\r\n<b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.\r\n\r\n<b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.\r\n\r\nLiteracy projects and book drives\r\n\r\nHost yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)\r\n\r\n“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\n<strong>Networking</strong>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n 	<li>Is it the TRUTH?</li>\r\n 	<li>Is it FAIR to all concerned?</li>\r\n 	<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n 	<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 02:39:40','2022-09-27 02:39:40','',1840,'https://test-site.wlvrotary.org/?p=1861',0,'revision','',0),(1865,1,'2022-09-27 02:42:11','2022-09-27 02:42:11','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-27 02:42:11','2022-09-27 02:42:11','',1700,'https://test-site.wlvrotary.org/?p=1865',0,'revision','',0),(2057,1,'2023-01-09 04:59:09','2023-01-09 04:59:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color2)\" padding_top=\"50\" padding_right=\"0\" padding_bottom=\"50\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/presidents-message/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get to Know Our Club','','publish','closed','closed','','get-to-know-our-club','','','2023-01-10 05:19:57','2023-01-10 05:19:57','',0,'https://test-site.wlvrotary.org/fusion_element/get-to-know-our-club/',0,'fusion_element','',0),(1867,1,'2022-09-27 02:43:18','2022-09-27 02:43:18','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-27 02:43:18','2022-09-27 02:43:18','',1700,'https://test-site.wlvrotary.org/?p=1867',0,'revision','',0),(1868,1,'2022-09-27 02:43:52','2022-09-27 02:43:52','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p><p><br></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-27 02:43:52','2022-09-27 02:43:52','',1700,'https://test-site.wlvrotary.org/?p=1868',0,'revision','',0),(1928,1,'2023-01-04 23:13:36','2023-01-04 23:13:36','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:13:36','2023-01-04 23:13:36','',1700,'https://test-site.wlvrotary.org/?p=1928',0,'revision','',0),(1921,1,'2022-12-28 21:07:01','2022-12-28 21:07:01','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-12-28 21:07:01','2022-12-28 21:07:01','',1700,'https://test-site.wlvrotary.org/?p=1921',0,'revision','',0),(1922,1,'2023-01-04 21:45:20','2023-01-04 21:45:20','','sunrise-rotary-service-hero','','inherit','open','closed','','sunrise-rotary-service-hero','','','2023-01-04 21:45:20','2023-01-04 21:45:20','',1743,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero.jpg',0,'attachment','image/jpeg',0),(1923,1,'2023-01-04 21:48:04','2023-01-04 21:48:04','','sunrise-rotary-service-hero','','inherit','open','closed','','sunrise-rotary-service-hero-2','','','2023-01-04 21:48:04','2023-01-04 21:48:04','',1743,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero-1.jpg',0,'attachment','image/jpeg',0),(1924,1,'2023-01-04 22:35:18','2023-01-04 22:35:18','','sunrise-rotary-service-hero2','','inherit','open','closed','','sunrise-rotary-service-hero2','','','2023-01-04 22:35:18','2023-01-04 22:35:18','',1743,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2.jpg',0,'attachment','image/jpeg',0),(1925,1,'2023-01-04 22:35:37','2023-01-04 22:35:37','','sunrise-rotary-service-hero2','','inherit','open','closed','','sunrise-rotary-service-hero2-2','','','2023-01-04 22:35:37','2023-01-04 22:35:37','',1743,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2-1.jpg',0,'attachment','image/jpeg',0),(1926,1,'2023-01-04 22:55:35','2023-01-04 22:55:35','','sunrise-rotary-collaboration-hero','','inherit','open','closed','','sunrise-rotary-collaboration-hero','','','2023-01-04 22:55:35','2023-01-04 22:55:35','',1895,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/sunrise-rotary-collaboration-hero.jpg',0,'attachment','image/jpeg',0),(1927,1,'2023-01-04 23:12:12','2023-01-04 23:12:12','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:12:12','2023-01-04 23:12:12','',1700,'https://test-site.wlvrotary.org/?p=1927',0,'revision','',0),(1877,1,'2022-09-27 02:47:23','0000-00-00 00:00:00','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n\r\nOur Causes\r\n\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nWe carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nMore than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nRotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nRotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nWe educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\nOur clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:\r\n\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n 	<li>America Supporting Americans (ASA)</li>\r\n 	<li>Art Trek</li>\r\n 	<li>Big Brothers/Big Sisters</li>\r\n 	<li>Boys and Girls Club of Conejo Valley</li>\r\n 	<li>Disaster Communications</li>\r\n 	<li>For the Troops</li>\r\n 	<li>Harbor House</li>\r\n 	<li>James Storehouse</li>\r\n 	<li>KCLU</li>\r\n 	<li>Manna</li>\r\n 	<li>Many Mansions</li>\r\n 	<li>Safe Passage</li>\r\n 	<li>Senior Concerns</li>\r\n 	<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\n<b>Holidays In The Village - A European Marketplace - Fundraiser</b>\r\n\r\n<b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation\r\n\r\nFood drives in conjunction with our youth arm of Rotary\r\n\r\n<b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.\r\n\r\n<b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.\r\n\r\nLiteracy projects and book drives\r\n\r\nHost yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)\r\n\r\n“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n\r\n<strong>Networking</strong>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n 	<li>Is it the TRUTH?</li>\r\n 	<li>Is it FAIR to all concerned?</li>\r\n 	<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n 	<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\r\n\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','draft','closed','closed','','','','','2022-09-27 02:47:23','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?page_id=1877',0,'page','',0),(1878,1,'2022-09-27 02:50:17','2022-09-27 02:50:17','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"2_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" background_position=\"left top\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_repeat=\"no-repeat\" margin_top=\"0px\" margin_bottom=\"0px\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"no\" hover_type=\"none\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_1\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise Events[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Your Content Goes Here[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2022-09-27 02:50:17','2022-09-27 02:50:17','',1725,'https://test-site.wlvrotary.org/?p=1878',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1879,1,'2022-09-27 02:52:31','2022-09-27 02:52:31','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2022-09-27 02:52:31','2022-09-27 02:52:31','',1725,'https://test-site.wlvrotary.org/?p=1879',0,'revision','',0),(1881,1,'2022-09-27 02:56:06','2022-09-27 02:56:06','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p>\r\n<p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”.  (Maybe we could insert a quote about strength in numbers, here. - I’ll look for one)</p>\r\n<p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p>\r\n</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured Events<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2022-09-27 02:56:06','2022-09-27 02:56:06','',1725,'https://test-site.wlvrotary.org/?p=1881',0,'revision','',0),(1880,1,'2022-09-27 02:54:10','2022-09-27 02:54:10','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p><p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”.  (Maybe we could insert a quote about strength in numbers, here. - I’ll look for one)</p><p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p><p></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured Events<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p><p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”.  (Maybe we could insert a quote about strength in numbers, here. - I’ll look for one)</p><p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p><p></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2022-09-27 02:54:10','2022-09-27 02:54:10','',1725,'https://test-site.wlvrotary.org/?p=1880',0,'revision','',0),(1882,1,'2022-09-27 02:56:24','2022-09-27 02:56:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p>\r\n<p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”.  (Maybe we could insert a quote about strength in numbers, here. - I’ll look for one)</p>\r\n<p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p>\r\n</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured News &amp; Events<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2022-09-27 02:56:24','2022-09-27 02:56:24','',1725,'https://test-site.wlvrotary.org/?p=1882',0,'revision','',0),(1883,1,'2022-09-27 02:59:03','2022-09-27 02:58:14','','News & Events','','publish','closed','closed','','news-events-2','','','2022-09-27 02:59:03','2022-09-27 02:59:03','',0,'https://test-site.wlvrotary.org/?p=1883',4,'nav_menu_item','',0),(1884,1,'2022-09-27 03:00:48','2022-09-27 03:00:48','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n<p></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n<p></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-09-27 03:00:48','2022-09-27 03:00:48','',1700,'https://test-site.wlvrotary.org/?p=1884',0,'revision','',0),(1885,1,'2022-09-27 03:03:02','2022-09-27 03:03:02','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\"]Request Information[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2022-09-27 03:03:02','2022-09-27 03:03:02','',1851,'https://test-site.wlvrotary.org/?p=1885',0,'revision','',0),(1886,1,'2022-09-27 03:06:05','2022-09-27 03:06:05','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2022-09-27 03:06:05','2022-09-27 03:06:05','',1851,'https://test-site.wlvrotary.org/?p=1886',0,'revision','',0),(1887,1,'2022-09-27 03:06:23','2022-09-27 03:06:23','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2022-09-27 03:06:23','2022-09-27 03:06:23','',1851,'https://test-site.wlvrotary.org/?p=1887',0,'revision','',0),(1888,1,'2022-09-27 03:07:47','2022-09-27 03:07:47','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"3\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"1.5px\"]\r\n<p>Fridays at 7:00 AM</p>\r\n<p>Los Robles Greens</p>\r\n<p>299 S. Moorpark Road</p>\r\n<p>Thousand Oaks, CA 91362</p>\r\n<p>United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"2px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]Rotary Club of Westlake Village Sunrise<br />\r\n123 Street Address<br />\r\nPO BOX. ###<br />\r\nCity, St. 00000</p>\r\n<p>555.555.5555<br />\r\ninfo@wlvrotary.org[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2022-09-27 03:07:47','2022-09-27 03:07:47','',51,'https://test-site.wlvrotary.org/?p=1888',0,'revision','',0),(1889,1,'2022-09-27 03:07:55','2022-09-27 03:07:55','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"3\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"1.5px\"]\r\n<p>Fridays at 7:00 AM</p>\r\n<p>Los Robles Greens</p>\r\n<p>299 S. Moorpark Road</p>\r\n<p>Thousand Oaks, CA 91362</p>\r\n<p>United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"20px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]Rotary Club of Westlake Village Sunrise<br />\r\n123 Street Address<br />\r\nPO BOX. ###<br />\r\nCity, St. 00000</p>\r\n<p>555.555.5555<br />\r\ninfo@wlvrotary.org[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2022-09-27 03:07:55','2022-09-27 03:07:55','',51,'https://test-site.wlvrotary.org/?p=1889',0,'revision','',0),(1890,1,'2022-09-27 03:11:31','2022-09-27 03:11:31','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>Getting to Know the Rotary Club of Westlake Village Sunrise</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]President\'s Message<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A Message From Michelle Ramsey<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>It is my honor to serve as president of this amazing group of dedicated Rotarians for the Rotary year 2021-2022!  This year, the Rotary International theme is Serve To Change Lives.  Today, Rotary exists in 200 countries with over 33,000 clubs and 1.2 million members, all with a common goal to serve first, and to help make the world a better place.   The Rotary Club of Westlake Village Sunrise is a diversified group of men and women (whose ages range from the early 20’s and up)  We enjoy fun and fellowship, giving back, and helping to improve lives locally and around the world.  We all live our lives based on the principles of the 4-Way Test and the Rotary motto – Service Above Self.  We always welcome business, community and young professionals/future leaders to join us in membership. </div><div><p><b><br>Read More &gt;</b><br></p></div>\n<div>\n</div>\n<div>\n</div>\n<div>\n</div>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\n<div>\n</div>\n<div>\n</div>\n<div>\n</div>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b><br />\r\nMichelle Ramsey</p>\r\n<p><b>President-Elect</b><br />\r\nMatt Midura</p>\r\n<p><b>Past President</b><br />\r\nJim Wisdom</p>\r\n<p><b>Secretary</b><br />\r\nMarissa Hesler</p>\r\n<p><b>Treasurer</b><br />\r\nMarilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />\r\nMatt Midura</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Community Service</b><br />\r\nTerry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />\r\nNick Frankle</p>\r\n<p><b>International Service</b><br />\r\nJon Morse</p>\r\n<p><b>Club Fundraising</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />\r\nJoe Pickard</p>\r\n<p><b>Member Retention</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />\r\nDon Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />\r\nRon Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Public Relations</b><br />\r\nRandy Strong</p>\r\n<p><b>Fundraising Co-chair</b><br />\r\nRandy Strong</p>\r\n<p><b>Programs</b><br />\r\nRandy Strong</p>\r\n<p><b>Photographer</b><br />\r\nMichael Zapf</p>\r\n<p><b>Environment</b><br />\r\nGregory Patterson</p>\r\n<p><b>Awards</b><br />\r\nMichael Zapf</p>\r\n<p>Meals on Wheels<br />\r\nMichelle Ramsey</p>\r\n<p><b>Programs</b><br />\r\nMike Willis</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Club Bulletin Editor</b><br />\r\nMichael Zapf</p>\r\n<p><b>Editor</b><br />\r\nRandy Strong</p>\r\n<p><b>Family of Rotary</b><br />\r\nJim Wisdom</p>\r\n<p><b>Programs</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Interact Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>RYLA Coordinator</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Rotaract Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Website</b><br />\r\nMatt Midura</p>\r\n<p><b>Sgt-At-Arms</b><br />\r\nDaniel Harutunian</p>\r\n<p><b>Peace Chair</b><br />\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 03:11:31','2022-09-27 03:11:31','',1829,'https://test-site.wlvrotary.org/?p=1890',0,'revision','',0),(1891,1,'2022-09-27 03:13:24','2022-09-27 03:13:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\n<div>\n</div>\n<div>\n</div>\n<div>\n</div>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b><br />\r\nMichelle Ramsey</p>\r\n<p><b>President-Elect</b><br />\r\nMatt Midura</p>\r\n<p><b>Past President</b><br />\r\nJim Wisdom</p>\r\n<p><b>Secretary</b><br />\r\nMarissa Hesler</p>\r\n<p><b>Treasurer</b><br />\r\nMarilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />\r\nMatt Midura</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Community Service</b><br />\r\nTerry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />\r\nNick Frankle</p>\r\n<p><b>International Service</b><br />\r\nJon Morse</p>\r\n<p><b>Club Fundraising</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />\r\nJoe Pickard</p>\r\n<p><b>Member Retention</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />\r\nDon Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />\r\nRon Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Public Relations</b><br />\r\nRandy Strong</p>\r\n<p><b>Fundraising Co-chair</b><br />\r\nRandy Strong</p>\r\n<p><b>Programs</b><br />\r\nRandy Strong</p>\r\n<p><b>Photographer</b><br />\r\nMichael Zapf</p>\r\n<p><b>Environment</b><br />\r\nGregory Patterson</p>\r\n<p><b>Awards</b><br />\r\nMichael Zapf</p>\r\n<p>Meals on Wheels<br />\r\nMichelle Ramsey</p>\r\n<p><b>Programs</b><br />\r\nMike Willis</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Club Bulletin Editor</b><br />\r\nMichael Zapf</p>\r\n<p><b>Editor</b><br />\r\nRandy Strong</p>\r\n<p><b>Family of Rotary</b><br />\r\nJim Wisdom</p>\r\n<p><b>Programs</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Interact Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>RYLA Coordinator</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Rotaract Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Website</b><br />\r\nMatt Midura</p>\r\n<p><b>Sgt-At-Arms</b><br />\r\nDaniel Harutunian</p>\r\n<p><b>Peace Chair</b><br />\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-09-27 03:13:24','2022-09-27 03:13:24','',1829,'https://test-site.wlvrotary.org/?p=1891',0,'revision','',0),(1893,1,'2022-09-27 15:22:57','2022-09-27 15:22:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong></p>\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.<br><p><br></p></div>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.<br><p><br></p></div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.<br><p><br></p></div>\n<div><strong>Family</strong></div>\n<div></div>\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.<br><p><br></p></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.<br><p><br></p></div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?<br><br></li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.<br><p><br></p></div>\n</div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<br>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 15:22:57','2022-09-27 15:22:57','',1840,'https://test-site.wlvrotary.org/?p=1893',0,'revision','',0),(1892,1,'2022-09-27 15:21:47','2022-09-27 15:21:47','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 15:21:47','2022-09-27 15:21:47','',1840,'https://test-site.wlvrotary.org/?p=1892',0,'revision','',0),(1894,1,'2022-09-27 15:23:21','2022-09-27 15:23:21','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong></p>\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.<br><p><br></p></div>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.<br><p><br></p></div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.<br><p><br></p></div>\n<div><strong>Family</strong></div>\n<div></div>\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.<br><p><br></p></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.<br><p><br></p></div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?<br><br></li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.<br><p><br></p></div>\n</div>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<br>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2022-09-27 15:23:21','2022-09-27 15:23:21','',1840,'https://test-site.wlvrotary.org/?p=1894',0,'revision','',0),(1895,1,'2022-10-04 20:11:40','2022-10-04 20:11:40','','Serving Locally & Globally','','publish','closed','closed','','service-above-self-2','','','2023-01-09 23:20:20','2023-01-09 23:20:20','',0,'https://test-site.wlvrotary.org/slide/service-above-self-cloned/',0,'slide','',0),(1897,1,'2022-10-04 20:23:22','2022-10-04 20:23:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div><p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p></div>\n<div>\n</div>\n<div>\n</div>\n<div>\n</div>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b><br />\r\nMichelle Ramsey</p>\r\n<p><b>President-Elect</b><br />\r\nMatt Midura</p>\r\n<p><b>Past President</b><br />\r\nJim Wisdom</p>\r\n<p><b>Secretary</b><br />\r\nMarissa Hesler</p>\r\n<p><b>Treasurer</b><br />\r\nMarilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />\r\nMatt Midura</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Community Service</b><br />\r\nTerry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />\r\nNick Frankle</p>\r\n<p><b>International Service</b><br />\r\nJon Morse</p>\r\n<p><b>Club Fundraising</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />\r\nJoe Pickard</p>\r\n<p><b>Member Retention</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />\r\nDon Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />\r\nRon Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Public Relations</b><br />\r\nRandy Strong</p>\r\n<p><b>Fundraising Co-chair</b><br />\r\nRandy Strong</p>\r\n<p><b>Programs</b><br />\r\nRandy Strong</p>\r\n<p><b>Photographer</b><br />\r\nMichael Zapf</p>\r\n<p><b>Environment</b><br />\r\nGregory Patterson</p>\r\n<p><b>Awards</b><br />\r\nMichael Zapf</p>\r\n<p>Meals on Wheels<br />\r\nMichelle Ramsey</p>\r\n<p><b>Programs</b><br />\r\nMike Willis</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Club Bulletin Editor</b><br />\r\nMichael Zapf</p>\r\n<p><b>Editor</b><br />\r\nRandy Strong</p>\r\n<p><b>Family of Rotary</b><br />\r\nJim Wisdom</p>\r\n<p><b>Programs</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Interact Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>RYLA Coordinator</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Rotaract Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Website</b><br />\r\nMatt Midura</p>\r\n<p><b>Sgt-At-Arms</b><br />\r\nDaniel Harutunian</p>\r\n<p><b>Peace Chair</b><br />\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-10-04 20:23:22','2022-10-04 20:23:22','',1829,'https://test-site.wlvrotary.org/?p=1897',0,'revision','',0),(1898,1,'2022-10-04 20:33:42','2022-10-04 20:33:42','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p>\r\n<p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”.  (Maybe we could insert a quote about strength in numbers, here. - I’ll look for one)</p>\r\n<p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p>\r\n</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured News &amp; Events<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise Rotary Celebrates Teacher Appreciation Week[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Sunrise Rotarians gathered together at the beginning of their Rotary meeting at Los Robles Greens and assembled over 353 Teacher Appreciation bags filled with goodies and sweets to thank the teachers for their hard work during this COVID-challenged school year. Our President Elect and Community Service Chair, Michelle Ramsey, supervised the assembly process and helped us assemble the bags.\n\nOnce the bags were assembled, WLV Sunrise Rotarians delivered them to a number of schools in the Conejo Valley and surrounding area. We delivered these packages to Westlake High School; Oak Park High School; Westlake Elementary School and Westlake Hills Elementary School.\n\nWe thank the teachers and administrators for their hard work and dedication to our kids!\n\nThe two pictures reflect the great experience and good will that came out of this project ( both Rotarians and School Staff) . In one picture, President Jim Wisdom is with Lauri Looker of Westlake High School. Lauri has been instrumental in helping the WLV Sunrise Rotary Club find potential RYLA students for the District 5240 RYLA program for many years.[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_youtube autoplay=\"false\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" structured_data=\"off\" video_upload_date=\"\" video_duration=\"\" video_title=\"\" video_desc=\"\" id=\"https://youtu.be/pErn6Q4rkEc\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2022-10-04 20:33:42','2022-10-04 20:33:42','',1725,'https://test-site.wlvrotary.org/?p=1898',0,'revision','',0),(1899,1,'2022-10-04 20:38:10','2022-10-04 20:38:10','','hitv-logo-master','','inherit','open','closed','','hitv-logo-master','','','2022-10-04 20:38:10','2022-10-04 20:38:10','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master.png',0,'attachment','image/png',0),(1964,1,'2023-01-08 19:41:36','2023-01-08 19:41:36','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p>\n<p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”. </p>\n<p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p>\n<p></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured News &amp; Events<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise Rotary Celebrates Teacher Appreciation Week[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Sunrise Rotarians gathered together at the beginning of their Rotary meeting at Los Robles Greens and assembled over 353 Teacher Appreciation bags filled with goodies and sweets to thank the teachers for their hard work during this COVID-challenged school year. Our President Elect and Community Service Chair, Michelle Ramsey, supervised the assembly process and helped us assemble the bags.</p>\r\n<p>Once the bags were assembled, WLV Sunrise Rotarians delivered them to a number of schools in the Conejo Valley and surrounding area. We delivered these packages to Westlake High School; Oak Park High School; Westlake Elementary School and Westlake Hills Elementary School.</p>\r\n<p>We thank the teachers and administrators for their hard work and dedication to our kids!</p>\r\n<p>The two pictures reflect the great experience and good will that came out of this project ( both Rotarians and School Staff) . In one picture, President Jim Wisdom is with Lauri Looker of Westlake High School. Lauri has been instrumental in helping the WLV Sunrise Rotary Club find potential RYLA students for the District 5240 RYLA program for many years.[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_youtube autoplay=\"false\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" structured_data=\"off\" id=\"https://youtu.be/pErn6Q4rkEc\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Holidays in the Village[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotarians are asked to serve their communities using their skills, strengths, and talents. Westlake Village Noon wanted to create Holidays In the Village (HITV), a European style Christmas Market, as an annual community event in early December that was family friendly. It was too big a challenge and needed more skills than they had in their Club. Solution – partner with Westlake Village Sunrise and the City of Westlake Village!</p>\r\n<p>We pulled it off! On Sunday, December 12, 2021, HITV was an amazing success with thousands of attendees! The overwhelming feedback from attendees: We had a wonderful time! Please tell us you are doing it again next year! Well – we are! The second annual HITV will be on December 4, 2022.</p>\r\n<p>Success required months of planning, organizing, designing, procuring,  prepping, and promoting. It required follow through and last-minute problem solving the weekend of the event to make it happen. It took over 250 volunteers from our two clubs and the community. The skills, strengths, and talents needed included: leadership, project management, logistics, budgeting, construction, carpentry, scenic art, entertainment, food service, purchasing, communication (PR, social media, and print), printing, fund raising, vendor support, legal services, insurance and risk management, health and food safety, traffic and security. Whew! Ultimately, we succeeded through trust, commitment, and service above self!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1899|fusion-400\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master-400x340.png[/fusion_imageframe][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2023-01-08 19:41:36','2023-01-08 19:41:36','',1725,'https://test-site.wlvrotary.org/?p=1964',0,'revision','',0),(1900,1,'2022-10-04 20:38:34','2022-10-04 20:38:34','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p>\r\n<p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”.  (Maybe we could insert a quote about strength in numbers, here. - I’ll look for one)</p>\r\n<p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p>\r\n</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image-300x300.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured News &amp; Events<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" dimensions_medium=\"\" dimensions_small=\"\" gradient_font=\"no\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise Rotary Celebrates Teacher Appreciation Week[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Sunrise Rotarians gathered together at the beginning of their Rotary meeting at Los Robles Greens and assembled over 353 Teacher Appreciation bags filled with goodies and sweets to thank the teachers for their hard work during this COVID-challenged school year. Our President Elect and Community Service Chair, Michelle Ramsey, supervised the assembly process and helped us assemble the bags.\n\nOnce the bags were assembled, WLV Sunrise Rotarians delivered them to a number of schools in the Conejo Valley and surrounding area. We delivered these packages to Westlake High School; Oak Park High School; Westlake Elementary School and Westlake Hills Elementary School.\n\nWe thank the teachers and administrators for their hard work and dedication to our kids!\n\nThe two pictures reflect the great experience and good will that came out of this project ( both Rotarians and School Staff) . In one picture, President Jim Wisdom is with Lauri Looker of Westlake High School. Lauri has been instrumental in helping the WLV Sunrise Rotary Club find potential RYLA students for the District 5240 RYLA program for many years.[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_youtube autoplay=\"false\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" structured_data=\"off\" video_upload_date=\"\" video_duration=\"\" video_title=\"\" video_desc=\"\" id=\"https://youtu.be/pErn6Q4rkEc\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Holidays in the Village[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotarians are asked to serve their communities using their skills, strengths, and talents. Westlake Village Noon wanted to create Holidays In the Village (HITV), a European style Christmas Market, as an annual community event in early December that was family friendly. It was too big a challenge and needed more skills than they had in their Club. Solution – partner with Westlake Village Sunrise and the City of Westlake Village!</p><p>We pulled it off! On Sunday, December 12, 2021, HITV was an amazing success with thousands of attendees! The overwhelming feedback from attendees: We had a wonderful time! Please tell us you are doing it again next year! Well – we are! The second annual HITV will be on December 4, 2022.</p><p>Success required months of planning, organizing, designing, procuring,  prepping, and promoting. It required follow through and last-minute problem solving the weekend of the event to make it happen. It took over 250 volunteers from our two clubs and the community. The skills, strengths, and talents needed included: leadership, project management, logistics, budgeting, construction, carpentry, scenic art, entertainment, food service, purchasing, communication (PR, social media, and print), printing, fund raising, vendor support, legal services, insurance and risk management, health and food safety, traffic and security. Whew! Ultimately, we succeeded through trust, commitment, and service above self!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1899|fusion-400\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master-400x340.png[/fusion_imageframe][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2022-10-04 20:38:34','2022-10-04 20:38:34','',1725,'https://test-site.wlvrotary.org/?p=1900',0,'revision','',0),(1901,1,'2022-10-04 20:43:58','2022-10-04 20:43:58','','hitv-social-std-v2','','inherit','open','closed','','hitv-social-std-v2','','','2022-10-04 20:43:58','2022-10-04 20:43:58','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2.png',0,'attachment','image/png',0),(1902,1,'2022-10-04 20:45:56','2022-10-04 20:45:56','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: #c10000;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(193, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(193, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-10-04 20:45:56','2022-10-04 20:45:56','',1700,'https://test-site.wlvrotary.org/?p=1902',0,'revision','',0),(1903,1,'2022-10-04 20:48:05','2022-10-04 20:48:05','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: #c10000;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(193, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"75\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(193, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2022-10-04 20:48:05','2022-10-04 20:48:05','',1700,'https://test-site.wlvrotary.org/?p=1903',0,'revision','',0),(1907,1,'2022-10-19 22:58:51','2022-10-19 22:58:51','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2022-10-19 22:58:51','2022-10-19 22:58:51','',1851,'https://test-site.wlvrotary.org/?p=1907',0,'revision','',0),(1967,1,'2023-01-08 19:49:21','2023-01-08 19:49:21','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" column_min_width=\"25\" rule_style=\"solid\"]<p><b>President</b><br />Michelle Ramsey</p><p><b>President-Elect</b><br />Matt Midura</p><p><b>Past President</b><br />Jim Wisdom</p><p><b>Secretary</b><br />Marissa Hesler</p><p><b>Treasurer</b><br />Marilyn Lippiatt</p><p><b>Club Service</b><br />Matt Midura</p><p><b>Youth Service</b><br />John Thevenot</p><p><b>Community Service</b><br />Terry Moerler</p><p> </p><p><b>The Rotary Foundation</b><br />Nick Frankle</p><p><b>International Service</b><br />Jon Morse</p><p><b>Club Fundraising</b><br />Laura (Paine) Willis</p><p><b>Vocational Service</b><br />Joe Pickard</p><p><b>Membership</b><br />Ragnar Storm-Larsen</p><p><b>Sunrise Foundation President</b><br />Don Martin</p><p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p><p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p><p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p><p><b>Public Image</b><br />Randy Strong</p><p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p><p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p><p><b>Photographer</b><br />Michael Zapf</p><p><b>Environment</b><br />Gregory Patterson</p><p><b>Awards</b><br />Michael Zapf</p><p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms</b></p><p>Daniel Harutunian</p><p><b>Peace Chair</b><br />Jim Wisdom</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-08 19:49:21','2023-01-08 19:49:21','',1829,'https://test-site.wlvrotary.org/?p=1967',0,'revision','',0),(1908,1,'2022-10-19 22:59:52','2022-10-19 22:59:52','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b><br />\r\nMichelle Ramsey</p>\r\n<p><b>President-Elect</b><br />\r\nMatt Midura</p>\r\n<p><b>Past President</b><br />\r\nJim Wisdom</p>\r\n<p><b>Secretary</b><br />\r\nMarissa Hesler</p>\r\n<p><b>Treasurer</b><br />\r\nMarilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />\r\nMatt Midura</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Community Service</b><br />\r\nTerry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />\r\nNick Frankle</p>\r\n<p><b>International Service</b><br />\r\nJon Morse</p>\r\n<p><b>Club Fundraising</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />\r\nJoe Pickard</p>\r\n<p><b>Member Retention</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />\r\nDon Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />\r\nRon Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Public Relations</b><br />\r\nRandy Strong</p>\r\n<p><b>Fundraising Co-chair</b><br />\r\nRandy Strong</p>\r\n<p><b>Programs</b><br />\r\nRandy Strong</p>\r\n<p><b>Photographer</b><br />\r\nMichael Zapf</p>\r\n<p><b>Environment</b><br />\r\nGregory Patterson</p>\r\n<p><b>Awards</b><br />\r\nMichael Zapf</p>\r\n<p>Meals on Wheels<br />\r\nMichelle Ramsey</p>\r\n<p><b>Programs</b><br />\r\nMike Willis</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Club Bulletin Editor</b><br />\r\nMichael Zapf</p>\r\n<p><b>Editor</b><br />\r\nRandy Strong</p>\r\n<p><b>Family of Rotary</b><br />\r\nJim Wisdom</p>\r\n<p><b>Programs</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Interact Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>RYLA Coordinator</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Rotaract Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Website</b><br />\r\nMatt Midura</p>\r\n<p><b>Sgt-At-Arms</b><br />\r\nDaniel Harutunian</p>\r\n<p><b>Peace Chair</b><br />\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2022-10-19 22:59:52','2022-10-19 22:59:52','',1829,'https://test-site.wlvrotary.org/?p=1908',0,'revision','',0),(1910,0,'2022-10-25 10:27:13','0000-00-00 00:00:00','','HITV Wrapping Boxes at Art Trek','','draft','open','closed','','hitv-wrapping-boxes-at-art-trek','','','2022-10-25 10:27:13','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1910',0,'ajde_events','',0),(1911,0,'2022-10-25 10:27:13','0000-00-00 00:00:00','','WLV Sunrise Holiday Party','','draft','open','closed','','wlv-sunrise-holiday-party','','','2022-10-25 10:27:13','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1911',0,'ajde_events','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1930,1,'2023-01-04 23:22:17','2023-01-04 23:22:17','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_6)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:22:17','2023-01-04 23:22:17','',1700,'https://test-site.wlvrotary.org/?p=1930',0,'revision','',0),(1931,1,'2023-01-04 23:23:08','2023-01-04 23:23:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]The Rotary Club of Westlake Village has served the Greater Conejo Valley Community for 38 years.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:23:08','2023-01-04 23:23:08','',1700,'https://test-site.wlvrotary.org/?p=1931',0,'revision','',0),(1932,1,'2023-01-04 23:25:45','2023-01-04 23:25:45','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus<br></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:25:45','2023-01-04 23:25:45','',1700,'https://test-site.wlvrotary.org/?p=1932',0,'revision','',0),(1933,1,'2023-01-04 23:26:55','2023-01-04 23:26:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"32\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_6)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:26:55','2023-01-04 23:26:55','',1700,'https://test-site.wlvrotary.org/?p=1933',0,'revision','',0),(1934,1,'2023-01-04 23:27:24','2023-01-04 23:27:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"200\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_6)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:27:24','2023-01-04 23:27:24','',1700,'https://test-site.wlvrotary.org/?p=1934',0,'revision','',0),(1935,1,'2023-01-04 23:28:02','2023-01-04 23:28:02','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"70\" filter_saturation=\"100\" filter_brightness=\"200\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_6)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:28:02','2023-01-04 23:28:02','',1700,'https://test-site.wlvrotary.org/?p=1935',0,'revision','',0),(1936,1,'2023-01-04 23:38:26','2023-01-04 23:38:26','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"200\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:38:26','2023-01-04 23:38:26','',1700,'https://test-site.wlvrotary.org/?p=1936',0,'revision','',0),(1937,1,'2023-01-04 23:38:37','2023-01-04 23:38:37','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:38:37','2023-01-04 23:38:37','',1700,'https://test-site.wlvrotary.org/?p=1937',0,'revision','',0),(1938,1,'2023-01-04 23:39:16','2023-01-04 23:39:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"200\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:39:16','2023-01-04 23:39:16','',1700,'https://test-site.wlvrotary.org/?p=1938',0,'revision','',0),(1939,1,'2023-01-04 23:39:33','2023-01-04 23:39:33','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"0\" filter_brightness=\"0\" filter_contrast=\"0\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:39:33','2023-01-04 23:39:33','',1700,'https://test-site.wlvrotary.org/?p=1939',0,'revision','',0),(1940,1,'2023-01-04 23:40:32','2023-01-04 23:40:32','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"145\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:40:32','2023-01-04 23:40:32','',1700,'https://test-site.wlvrotary.org/?p=1940',0,'revision','',0),(1941,1,'2023-01-04 23:41:31','2023-01-04 23:41:31','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"200\" filter_brightness_hover=\"101\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:41:31','2023-01-04 23:41:31','',1700,'https://test-site.wlvrotary.org/?p=1941',0,'revision','',0),(1942,1,'2023-01-04 23:42:53','2023-01-04 23:42:53','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:42:53','2023-01-04 23:42:53','',1700,'https://test-site.wlvrotary.org/?p=1942',0,'revision','',0),(1943,1,'2023-01-04 23:43:29','2023-01-04 23:43:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"100\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-custom_color_7)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:43:29','2023-01-04 23:43:29','',1700,'https://test-site.wlvrotary.org/?p=1943',0,'revision','',0),(1944,1,'2023-01-04 23:44:13','2023-01-04 23:44:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"100\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:44:13','2023-01-04 23:44:13','',1700,'https://test-site.wlvrotary.org/?p=1944',0,'revision','',0),(1945,1,'2023-01-04 23:44:40','2023-01-04 23:44:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"10\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:44:40','2023-01-04 23:44:40','',1700,'https://test-site.wlvrotary.org/?p=1945',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1946,1,'2023-01-04 23:44:57','2023-01-04 23:44:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:44:57','2023-01-04 23:44:57','',1700,'https://test-site.wlvrotary.org/?p=1946',0,'revision','',0),(1947,1,'2023-01-04 23:45:21','2023-01-04 23:45:21','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"100\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:45:21','2023-01-04 23:45:21','',1700,'https://test-site.wlvrotary.org/?p=1947',0,'revision','',0),(1948,1,'2023-01-04 23:46:27','2023-01-04 23:46:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"10\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"100\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:46:27','2023-01-04 23:46:27','',1700,'https://test-site.wlvrotary.org/?p=1948',0,'revision','',0),(1949,1,'2023-01-04 23:46:52','2023-01-04 23:46:52','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"20\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"100\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:46:52','2023-01-04 23:46:52','',1700,'https://test-site.wlvrotary.org/?p=1949',0,'revision','',0),(1950,1,'2023-01-04 23:47:16','2023-01-04 23:47:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"100\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:47:16','2023-01-04 23:47:16','',1700,'https://test-site.wlvrotary.org/?p=1950',0,'revision','',0),(1951,1,'2023-01-04 23:47:46','2023-01-04 23:47:46','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"50\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:47:46','2023-01-04 23:47:46','',1700,'https://test-site.wlvrotary.org/?p=1951',0,'revision','',0),(1952,1,'2023-01-04 23:48:20','2023-01-04 23:48:20','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"20\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:48:20','2023-01-04 23:48:20','',1700,'https://test-site.wlvrotary.org/?p=1952',0,'revision','',0),(1953,1,'2023-01-04 23:59:51','2023-01-04 23:59:51','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-04 23:59:51','2023-01-04 23:59:51','',1700,'https://test-site.wlvrotary.org/?p=1953',0,'revision','',0),(1954,1,'2023-01-05 00:07:47','2023-01-05 00:07:47','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"2\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-05 00:07:47','2023-01-05 00:07:47','',1700,'https://test-site.wlvrotary.org/?p=1954',0,'revision','',0),(1955,1,'2023-01-05 00:09:13','2023-01-05 00:09:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-05 00:09:13','2023-01-05 00:09:13','',1700,'https://test-site.wlvrotary.org/?p=1955',0,'revision','',0),(1956,1,'2023-01-05 00:11:00','2023-01-05 00:11:00','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"45\" bottom_margin=\"45\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-05 00:11:00','2023-01-05 00:11:00','',1700,'https://test-site.wlvrotary.org/?p=1956',0,'revision','',0),(1957,1,'2023-01-05 00:15:15','2023-01-05 00:15:15','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-05 00:15:15','2023-01-05 00:15:15','',1700,'https://test-site.wlvrotary.org/?p=1957',0,'revision','',0),(1958,1,'2023-01-05 00:23:53','2023-01-05 00:23:53','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]For nearly four decades, the Rotary Club of Westlake Village has served the Greater Conejo Valley community. With a focus[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village has ....</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-05 00:23:53','2023-01-05 00:23:53','',1700,'https://test-site.wlvrotary.org/?p=1958',0,'revision','',0),(1960,1,'2023-01-08 19:36:43','2023-01-08 19:36:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p><p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /><br /></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-08 19:36:43','2023-01-08 19:36:43','',1700,'https://test-site.wlvrotary.org/?p=1960',0,'revision','',0),(1961,1,'2023-01-08 19:37:41','2023-01-08 19:37:41','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\n<ul>\n<li>Promote Peace</li>\n<li>Fight Disease</li>\n<li>Provide Resources for Those in Need</li>\n<li>Support Children &amp; Education</li>\n<li>Grow Local Economies</li>\n<li>Protect the Environment</li>\n</ul>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\"]<b>President</b><br />\r\nMichelle Ramsey</p>\r\n<p><b>President-Elect</b><br />\r\nMatt Midura</p>\r\n<p><b>Past President</b><br />\r\nJim Wisdom</p>\r\n<p><b>Secretary</b><br />\r\nMarissa Hesler</p>\r\n<p><b>Treasurer</b><br />\r\nMarilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />\r\nMatt Midura</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Community Service</b><br />\r\nTerry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />\r\nNick Frankle</p>\r\n<p><b>International Service</b><br />\r\nJon Morse</p>\r\n<p><b>Club Fundraising</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />\r\nJoe Pickard</p>\r\n<p><b>Member Retention</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />\r\nDon Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />\r\nRon Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />\r\nRagnar Storm-Larsen</p>\r\n<p><b>Public Relations</b><br />\r\nRandy Strong</p>\r\n<p><b>Fundraising Co-chair</b><br />\r\nRandy Strong</p>\r\n<p><b>Programs</b><br />\r\nRandy Strong</p>\r\n<p><b>Photographer</b><br />\r\nMichael Zapf</p>\r\n<p><b>Environment</b><br />\r\nGregory Patterson</p>\r\n<p><b>Awards</b><br />\r\nMichael Zapf</p>\r\n<p>Meals on Wheels<br />\r\nMichelle Ramsey</p>\r\n<p><b>Programs</b><br />\r\nMike Willis</p>\r\n<p><b>Youth Service</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Club Bulletin Editor</b><br />\r\nMichael Zapf</p>\r\n<p><b>Editor</b><br />\r\nRandy Strong</p>\r\n<p><b>Family of Rotary</b><br />\r\nJim Wisdom</p>\r\n<p><b>Programs</b><br />\r\nLaura (Paine) Willis</p>\r\n<p><b>Interact Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>RYLA Coordinator</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Rotaract Advisor</b><br />\r\nJohn Thevenot</p>\r\n<p><b>Website</b><br />\r\nMatt Midura</p>\r\n<p><b>Sgt-At-Arms</b><br />\r\nDaniel Harutunian</p>\r\n<p><b>Peace Chair</b><br />\r\nJim Wisdom[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-08 19:37:41','2023-01-08 19:37:41','',1829,'https://test-site.wlvrotary.org/?p=1961',0,'revision','',0),(1962,1,'2023-01-08 19:39:09','2023-01-08 19:39:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<p></p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n<p></p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n<p></p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<p></p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n<p></p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n<p></p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-08 19:39:09','2023-01-08 19:39:09','',1840,'https://test-site.wlvrotary.org/?p=1962',0,'revision','',0),(1965,1,'2023-01-08 19:42:27','2023-01-08 19:42:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">We would be happy to talk with you further or email you some additional information about the Rotary Club of Westlake Village Sunrise!</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2023-01-08 19:42:27','2023-01-08 19:42:27','',1851,'https://test-site.wlvrotary.org/?p=1965',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1966,1,'2023-01-08 19:43:05','2023-01-08 19:43:05','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">We would be happy to talk with you further or email you some additional information about the Rotary Club of Westlake Village Sunrise!</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">If you are interested in joining Rotary, we’d love to hear from you!  Please begin by filling out our membership application below.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">Interested in volunteering on a community project?  We’d love to hear from you!  We can provide you with upcoming opportunities.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2023-01-08 19:43:05','2023-01-08 19:43:05','',1851,'https://test-site.wlvrotary.org/?p=1966',0,'revision','',0),(1968,1,'2023-01-08 19:50:58','2023-01-08 19:50:58','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]<p><b>President</b><br />Michelle Ramsey</p><p><b>President-Elect</b><br />Matt Midura</p><p><b>Past President</b><br />Jim Wisdom</p><p><b>Secretary</b><br />Marissa Hesler</p><p><b>Treasurer</b><br />Marilyn Lippiatt</p><p><b>Club Service</b><br />Matt Midura</p><p><b>Youth Service</b><br />John Thevenot</p><p><b>Community Service</b><br />Terry Moerler</p><p><b>The Rotary Foundation</b><br />Nick Frankle</p><p><b>International Service</b><br />Jon Morse</p><p><b>Club Fundraising</b><br />Laura (Paine) Willis</p><p><b>Vocational Service</b><br />Joe Pickard</p><p><b>Membership</b><br />Ragnar Storm-Larsen</p><p><b>Sunrise Foundation President</b><br />Don Martin</p><p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p><p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p><p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p><p><b>Public Image</b><br />Randy Strong</p><p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p><p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p><p><b>Photographer</b><br />Michael Zapf</p><p><b>Environment</b><br />Gregory Patterson</p><p><b>Awards</b><br />Michael Zapf</p><p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p><p><b>Peace Chair</b><br />Jim Wisdom</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-08 19:50:58','2023-01-08 19:50:58','',1829,'https://test-site.wlvrotary.org/?p=1968',0,'revision','',0),(1969,1,'2023-01-08 21:46:26','2023-01-08 21:46:26','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-08 21:46:26','2023-01-08 21:46:26','',1700,'https://test-site.wlvrotary.org/?p=1969',0,'revision','',0),(1970,1,'2023-01-08 21:48:04','2023-01-08 21:48:04','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-08 21:48:04','2023-01-08 21:48:04','',1700,'https://test-site.wlvrotary.org/?p=1970',0,'revision','',0),(1971,1,'2023-01-08 21:48:59','2023-01-08 21:48:59','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-08 21:48:59','2023-01-08 21:48:59','',1700,'https://test-site.wlvrotary.org/?p=1971',0,'revision','',0),(1972,1,'2023-01-08 21:50:24','2023-01-08 21:50:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-08 21:50:24','2023-01-08 21:50:24','',1700,'https://test-site.wlvrotary.org/?p=1972',0,'revision','',0),(1973,1,'2023-01-08 21:51:38','2023-01-08 21:51:38','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-08 21:51:38','2023-01-08 21:51:38','',1700,'https://test-site.wlvrotary.org/?p=1973',0,'revision','',0),(1975,1,'2023-01-08 22:06:48','2023-01-08 22:06:48','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake <div><span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>\n		\n	</div>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">Rotary Club of Westlake Village Sunrise</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">PO Box 3846</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">\nThousand Oaks, CA 91359</span></p>\n<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">info@wlvrotary.org</span></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2023-01-08 22:06:48','2023-01-08 22:06:48','',51,'https://test-site.wlvrotary.org/?p=1975',0,'revision','',0),(1974,1,'2023-01-08 22:04:12','2023-01-08 22:04:12','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\"]Rotary Club of Westlake <div><span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>\n		\n	</div>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">Rotary Club of Westlake Village Sunrise</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">\n123 Street Address</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">\nPO BOX. ###</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">\nCity, St. 00000</span></p>\n<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">555.555.5555</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">\ninfo@wlvrotary.org</span></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2023-01-08 22:04:12','2023-01-08 22:04:12','',51,'https://test-site.wlvrotary.org/?p=1974',0,'revision','',0),(1976,1,'2023-01-08 23:40:22','2023-01-08 23:40:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-08 23:40:22','2023-01-08 23:40:22','',1700,'https://test-site.wlvrotary.org/?p=1976',0,'revision','',0),(1977,1,'2023-01-09 00:06:32','2023-01-09 00:06:32','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:06:32','2023-01-09 00:06:32','',1700,'https://test-site.wlvrotary.org/?p=1977',0,'revision','',0),(1978,1,'2023-01-09 00:07:42','2023-01-09 00:07:42','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"39\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:07:42','2023-01-09 00:07:42','',1700,'https://test-site.wlvrotary.org/?p=1978',0,'revision','',0),(1999,1,'2023-01-09 00:30:40','2023-01-09 00:30:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers. </p>\n<p style=\"color: rgb(193, 0, 0);\">\n\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:30:40','2023-01-09 00:30:40','',1700,'https://test-site.wlvrotary.org/?p=1999',0,'revision','',0),(1979,1,'2023-01-09 00:10:32','2023-01-09 00:10:32','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"191\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"83\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:10:32','2023-01-09 00:10:32','',1700,'https://test-site.wlvrotary.org/?p=1979',0,'revision','',0),(1980,1,'2023-01-09 00:11:11','2023-01-09 00:11:11','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"296\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"83\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:11:11','2023-01-09 00:11:11','',1700,'https://test-site.wlvrotary.org/?p=1980',0,'revision','',0),(1981,1,'2023-01-09 00:11:37','2023-01-09 00:11:37','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"296\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:11:37','2023-01-09 00:11:37','',1700,'https://test-site.wlvrotary.org/?p=1981',0,'revision','',0),(1982,1,'2023-01-09 00:12:21','2023-01-09 00:12:21','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"357\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:12:21','2023-01-09 00:12:21','',1700,'https://test-site.wlvrotary.org/?p=1982',0,'revision','',0),(1983,1,'2023-01-09 00:13:12','2023-01-09 00:13:12','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:13:12','2023-01-09 00:13:12','',1700,'https://test-site.wlvrotary.org/?p=1983',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (1984,1,'2023-01-09 00:13:39','2023-01-09 00:13:39','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"142\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:13:39','2023-01-09 00:13:39','',1700,'https://test-site.wlvrotary.org/?p=1984',0,'revision','',0),(1985,1,'2023-01-09 00:14:01','2023-01-09 00:14:01','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"0\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:14:01','2023-01-09 00:14:01','',1700,'https://test-site.wlvrotary.org/?p=1985',0,'revision','',0),(1986,1,'2023-01-09 00:14:15','2023-01-09 00:14:15','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:14:15','2023-01-09 00:14:15','',1700,'https://test-site.wlvrotary.org/?p=1986',0,'revision','',0),(1987,1,'2023-01-09 00:15:24','2023-01-09 00:15:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"44\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:15:24','2023-01-09 00:15:24','',1700,'https://test-site.wlvrotary.org/?p=1987',0,'revision','',0),(1988,1,'2023-01-09 00:16:26','2023-01-09 00:16:26','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"75\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:16:26','2023-01-09 00:16:26','',1700,'https://test-site.wlvrotary.org/?p=1988',0,'revision','',0),(1989,1,'2023-01-09 00:16:50','2023-01-09 00:16:50','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:16:50','2023-01-09 00:16:50','',1700,'https://test-site.wlvrotary.org/?p=1989',0,'revision','',0),(1990,1,'2023-01-09 00:17:33','2023-01-09 00:17:33','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"25\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:17:33','2023-01-09 00:17:33','',1700,'https://test-site.wlvrotary.org/?p=1990',0,'revision','',0),(1991,1,'2023-01-09 00:18:00','2023-01-09 00:18:00','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"25\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"25\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:18:00','2023-01-09 00:18:00','',1700,'https://test-site.wlvrotary.org/?p=1991',0,'revision','',0),(1992,1,'2023-01-09 00:19:42','2023-01-09 00:19:42','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"105\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:19:42','2023-01-09 00:19:42','',1700,'https://test-site.wlvrotary.org/?p=1992',0,'revision','',0),(1993,1,'2023-01-09 00:21:29','2023-01-09 00:21:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:21:29','2023-01-09 00:21:29','',1700,'https://test-site.wlvrotary.org/?p=1993',0,'revision','',0),(1994,1,'2023-01-09 00:22:44','2023-01-09 00:22:44','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"36\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:22:44','2023-01-09 00:22:44','',1700,'https://test-site.wlvrotary.org/?p=1994',0,'revision','',0),(1995,1,'2023-01-09 00:23:32','2023-01-09 00:23:32','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"105\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"2\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:23:32','2023-01-09 00:23:32','',1700,'https://test-site.wlvrotary.org/?p=1995',0,'revision','',0),(1996,1,'2023-01-09 00:24:41','2023-01-09 00:24:41','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"25\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"25\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:24:41','2023-01-09 00:24:41','',1700,'https://test-site.wlvrotary.org/?p=1996',0,'revision','',0),(1997,1,'2023-01-09 00:26:01','2023-01-09 00:26:01','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:26:01','2023-01-09 00:26:01','',1700,'https://test-site.wlvrotary.org/?p=1997',0,'revision','',0),(1998,1,'2023-01-09 00:27:46','2023-01-09 00:27:46','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/about-us/\" link_description=\"About Us\" filter_hover_element=\"self\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-grin-alt far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><span style=\"font-weight: 400;\">The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers.</span></p>\r\n<p><br style=\"font-weight: 400;\" /><br style=\"font-weight: 400;\" /></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"0\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/our-causes/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"62\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club actively organizes events and supports multiple nonprofits focused on improving life locally and globally.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\n<p style=\"color: rgb(193, 0, 0);\">\n\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:27:46','2023-01-09 00:27:46','',1700,'https://test-site.wlvrotary.org/?p=1998',0,'revision','',0),(2000,1,'2023-01-09 00:31:29','2023-01-09 00:31:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers. </p><p><br></p>\n<p style=\"color: rgb(193, 0, 0);\">\n\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:31:29','2023-01-09 00:31:29','',1700,'https://test-site.wlvrotary.org/?p=2000',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (2003,1,'2023-01-09 01:00:43','2023-01-09 01:00:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\n<p style=\"color: rgb(193, 0, 0);\">\n\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"250\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"250\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:00:43','2023-01-09 01:00:43','',1700,'https://test-site.wlvrotary.org/?p=2003',0,'revision','',0),(2001,1,'2023-01-09 00:33:56','2023-01-09 00:33:56','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\n<p style=\"color: rgb(193, 0, 0);\">\n\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" max_width=\"200\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 00:33:56','2023-01-09 00:33:56','',1700,'https://test-site.wlvrotary.org/?p=2001',0,'revision','',0),(2002,1,'2023-01-09 00:59:31','2023-01-09 00:59:31','','donation','','inherit','open','closed','','donation','','','2023-01-09 00:59:31','2023-01-09 00:59:31','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg',0,'attachment','image/jpeg',0),(2004,1,'2023-01-09 01:01:23','2023-01-09 01:01:23','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\n<p style=\"color: rgb(193, 0, 0);\">\n\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n\r\n	</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:01:23','2023-01-09 01:01:23','',1700,'https://test-site.wlvrotary.org/?p=2004',0,'revision','',0),(2005,1,'2023-01-09 01:07:05','2023-01-09 01:07:05','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:07:05','2023-01-09 01:07:05','',1700,'https://test-site.wlvrotary.org/?p=2005',0,'revision','',0),(2006,1,'2023-01-09 01:07:29','2023-01-09 01:07:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:07:29','2023-01-09 01:07:29','',1700,'https://test-site.wlvrotary.org/?p=2006',0,'revision','',0),(2007,1,'2023-01-09 01:09:18','2023-01-09 01:09:18','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]WLV Sunrise By the Numbers<br />[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:09:18','2023-01-09 01:09:18','',1700,'https://test-site.wlvrotary.org/?p=2007',0,'revision','',0),(2010,1,'2023-01-09 01:29:28','2023-01-09 01:29:28','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br>[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color4)\" icon_size=\"45\" body_color=\"var(--awb-color1)\" body_size=\"21\"][fusion_counter_box value=\"45\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000<br>\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:29:28','2023-01-09 01:29:28','',1700,'https://test-site.wlvrotary.org/?p=2010',0,'revision','',0),(2008,1,'2023-01-09 01:26:08','2023-01-09 01:26:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br>[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color4)\" icon_size=\"45\" body_color=\"var(--awb-color1)\" body_size=\"21\"][fusion_counter_box value=\"45\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Members[/fusion_counter_box][fusion_counter_box value=\"1000+<br>\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65,000<br>\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:26:08','2023-01-09 01:26:08','',1700,'https://test-site.wlvrotary.org/?p=2008',0,'revision','',0),(2009,1,'2023-01-09 01:26:54','2023-01-09 01:26:54','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]WLV Sunrise By the Numbers<br />[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Hours\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"582\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"582 Hours\"]\r\n<p><span style=\"font-weight: 400;\">Last year, our club provided 582 hours of volunteer service for the community.</span><span style=\"font-weight: 400;\"><br /></span></p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Donated\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"10,000\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\" title_back=\"Dollars Donated\"]\r\n<p><span style=\"font-weight: 400;\">Last year our club contributed $10,000 to aid the refugees from Ukraine.</span></p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br>[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color4)\" icon_size=\"45\" body_color=\"var(--awb-color1)\" body_size=\"21\"][fusion_counter_box value=\"45\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Members[/fusion_counter_box][fusion_counter_box value=\"1000<br>\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000<br>\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:26:54','2023-01-09 01:26:54','',1700,'https://test-site.wlvrotary.org/?p=2009',0,'revision','',0),(2011,1,'2023-01-09 01:30:59','2023-01-09 01:30:59','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br>[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color4)\" icon_size=\"45\" body_color=\"var(--awb-color1)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1,000+\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000<br>\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:30:59','2023-01-09 01:30:59','',1700,'https://test-site.wlvrotary.org/?p=2011',0,'revision','',0),(2012,1,'2023-01-09 01:32:16','2023-01-09 01:32:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br>[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color4)\" icon_size=\"45\" body_color=\"var(--awb-color1)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1,000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:32:16','2023-01-09 01:32:16','',1700,'https://test-site.wlvrotary.org/?p=2012',0,'revision','',0),(2013,1,'2023-01-09 01:32:57','2023-01-09 01:32:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"liftup\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br>[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color2)\" icon_size=\"45\" body_color=\"var(--awb-color4)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1,000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 01:32:57','2023-01-09 01:32:57','',1700,'https://test-site.wlvrotary.org/?p=2013',0,'revision','',0),(2014,1,'2023-01-09 03:59:43','2023-01-09 03:59:43','','C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3','','inherit','open','closed','','c8d7a26c-d4f5-4158-9b0f-abd05d6256a3','','','2023-01-09 03:59:43','2023-01-09 03:59:43','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg',0,'attachment','image/jpeg',0),(2015,1,'2023-01-09 03:59:55','2023-01-09 03:59:55','','619608EB-DE58-4CF7-ACDE-684778326DA2','','inherit','open','closed','','619608eb-de58-4cf7-acde-684778326da2','','','2023-01-09 03:59:55','2023-01-09 03:59:55','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg',0,'attachment','image/jpeg',0),(2016,1,'2023-01-09 04:00:14','2023-01-09 04:00:14','','DSC02517','','inherit','open','closed','','dsc02517','','','2023-01-09 04:00:14','2023-01-09 04:00:14','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg',0,'attachment','image/jpeg',0),(2017,1,'2023-01-09 04:00:27','2023-01-09 04:00:27','','hitv-brats','','inherit','open','closed','','hitv-brats','','','2023-01-09 04:00:27','2023-01-09 04:00:27','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg',0,'attachment','image/jpeg',0),(2018,1,'2023-01-09 04:01:11','2023-01-09 04:01:11','','230420288_10158672174568983_2007906273844971703_n','','inherit','open','closed','','230420288_10158672174568983_2007906273844971703_n','','','2023-01-09 04:01:11','2023-01-09 04:01:11','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg',0,'attachment','image/jpeg',0),(2019,1,'2023-01-09 04:12:50','2023-01-09 04:12:50','','275178804_10159062672773983_1714578608944652308_n','','inherit','open','closed','','275178804_10159062672773983_1714578608944652308_n','','','2023-01-09 04:12:50','2023-01-09 04:12:50','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg',0,'attachment','image/jpeg',0),(2020,1,'2023-01-09 04:13:01','2023-01-09 04:13:01','','301991414_10159385165463983_7662799712929491455_n','','inherit','open','closed','','301991414_10159385165463983_7662799712929491455_n','','','2023-01-09 04:13:01','2023-01-09 04:13:01','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg',0,'attachment','image/jpeg',0),(2021,1,'2023-01-09 04:13:11','2023-01-09 04:13:11','','307095892_10159387979733983_7386056637225188270_n','','inherit','open','closed','','307095892_10159387979733983_7386056637225188270_n','','','2023-01-09 04:13:11','2023-01-09 04:13:11','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg',0,'attachment','image/jpeg',0),(2022,1,'2023-01-09 04:13:23','2023-01-09 04:13:23','','312885301_10159482823458983_5084243080734781731_n','','inherit','open','closed','','312885301_10159482823458983_5084243080734781731_n','','','2023-01-09 04:13:23','2023-01-09 04:13:23','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg',0,'attachment','image/jpeg',0),(2023,1,'2023-01-09 04:13:33','2023-01-09 04:13:33','','318727845_10159613300583983_5045946195972474127_n','','inherit','open','closed','','318727845_10159613300583983_5045946195972474127_n','','','2023-01-09 04:13:33','2023-01-09 04:13:33','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg',0,'attachment','image/jpeg',0),(2024,1,'2023-01-09 04:13:46','2023-01-09 04:13:46','','318582538_10159613301998983_1987186392258756093_n','','inherit','open','closed','','318582538_10159613301998983_1987186392258756093_n','','','2023-01-09 04:13:46','2023-01-09 04:13:46','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg',0,'attachment','image/jpeg',0),(2025,1,'2023-01-09 04:13:56','2023-01-09 04:13:56','','318757345_10159613302743983_7713379438399103532_n','','inherit','open','closed','','318757345_10159613302743983_7713379438399103532_n','','','2023-01-09 04:13:56','2023-01-09 04:13:56','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg',0,'attachment','image/jpeg',0),(2026,1,'2023-01-09 04:14:06','2023-01-09 04:14:06','','318557333_469677518613136_2605719804160828751_n','','inherit','open','closed','','318557333_469677518613136_2605719804160828751_n','','','2023-01-09 04:14:06','2023-01-09 04:14:06','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg',0,'attachment','image/jpeg',0),(2027,1,'2023-01-09 04:14:16','2023-01-09 04:14:16','','317698060_469521041962117_5593228658645240584_n','','inherit','open','closed','','317698060_469521041962117_5593228658645240584_n','','','2023-01-09 04:14:16','2023-01-09 04:14:16','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg',0,'attachment','image/jpeg',0),(2028,1,'2023-01-09 04:14:27','2023-01-09 04:14:27','','317994691_469520881962133_8379635794478368818_n','','inherit','open','closed','','317994691_469520881962133_8379635794478368818_n','','','2023-01-09 04:14:27','2023-01-09 04:14:27','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg',0,'attachment','image/jpeg',0),(2029,1,'2023-01-09 04:14:43','2023-01-09 04:14:43','','318216901_469510238629864_153245366860277909_n','','inherit','open','closed','','318216901_469510238629864_153245366860277909_n','','','2023-01-09 04:14:43','2023-01-09 04:14:43','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg',0,'attachment','image/jpeg',0),(2030,1,'2023-01-09 04:14:54','2023-01-09 04:14:54','','318181818_469508225296732_8609996761227991316_n','','inherit','open','closed','','318181818_469508225296732_8609996761227991316_n','','','2023-01-09 04:14:54','2023-01-09 04:14:54','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg',0,'attachment','image/jpeg',0),(2031,1,'2023-01-09 04:15:10','2023-01-09 04:15:10','','317902162_469677445279810_3412274826300968702_n','','inherit','open','closed','','317902162_469677445279810_3412274826300968702_n','','','2023-01-09 04:15:10','2023-01-09 04:15:10','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg',0,'attachment','image/jpeg',0),(2032,1,'2023-01-09 04:15:22','2023-01-09 04:15:22','','318441233_469673885280166_5091768336215275208_n','','inherit','open','closed','','318441233_469673885280166_5091768336215275208_n','','','2023-01-09 04:15:22','2023-01-09 04:15:22','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg',0,'attachment','image/jpeg',0),(2033,1,'2023-01-09 04:15:32','2023-01-09 04:15:32','','317909255_471073988473489_6496672276787256581_n','','inherit','open','closed','','317909255_471073988473489_6496672276787256581_n','','','2023-01-09 04:15:32','2023-01-09 04:15:32','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg',0,'attachment','image/jpeg',0),(2034,1,'2023-01-09 04:15:45','2023-01-09 04:15:45','','C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3','','inherit','open','closed','','c8d7a26c-d4f5-4158-9b0f-abd05d6256a3-2','','','2023-01-09 04:15:45','2023-01-09 04:15:45','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg',0,'attachment','image/jpeg',0),(2035,1,'2023-01-09 04:16:01','2023-01-09 04:16:01','','120422_HolidaysInTheVillage-8','','inherit','open','closed','','120422_holidaysinthevillage-8','','','2023-01-09 04:16:01','2023-01-09 04:16:01','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8.jpg',0,'attachment','image/jpeg',0),(2036,1,'2023-01-09 04:16:27','2023-01-09 04:16:27','','120422_HolidaysInTheVillage-18','','inherit','open','closed','','120422_holidaysinthevillage-18','','','2023-01-09 04:16:27','2023-01-09 04:16:27','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18.jpg',0,'attachment','image/jpeg',0),(2037,1,'2023-01-09 04:20:58','2023-01-09 04:20:58','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"#\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br />[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color2)\" icon_size=\"45\" body_color=\"var(--awb-color4)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1,000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750|full\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg\" image_id=\"1822\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png\" image_id=\"1750\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg\" image_id=\"1823\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 04:20:58','2023-01-09 04:20:58','',1700,'https://test-site.wlvrotary.org/?p=2037',0,'revision','',0),(2060,1,'2023-01-09 04:59:24','2023-01-09 04:59:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg\" image_id=\"2036\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8-scaled.jpg\" image_id=\"2035\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg\" image_id=\"2034\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg\" image_id=\"2033\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg\" image_id=\"2032\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg\" image_id=\"2031\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg\" image_id=\"2030\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg\" image_id=\"2029\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg\" image_id=\"2028\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg\" image_id=\"2027\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg\" image_id=\"2026\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg\" image_id=\"2025\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg\" image_id=\"2024\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg\" image_id=\"2023\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg\" image_id=\"2022\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg\" image_id=\"2021\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg\" image_id=\"2020\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg\" image_id=\"2019\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg\" image_id=\"2018\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg\" image_id=\"2017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg\" image_id=\"2016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg\" image_id=\"2015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg\" image_id=\"2014\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg\" image_id=\"2002\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 04:59:24','2023-01-09 04:59:24','',1700,'https://test-site.wlvrotary.org/?p=2060',0,'revision','',0),(2038,1,'2023-01-09 04:22:18','2023-01-09 04:22:18','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Upcoming Events<br />[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"#\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br />[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color2)\" icon_size=\"45\" body_color=\"var(--awb-color4)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1,000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg\" image_id=\"2036\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8-scaled.jpg\" image_id=\"2035\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg\" image_id=\"2034\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg\" image_id=\"2033\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg\" image_id=\"2032\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg\" image_id=\"2031\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg\" image_id=\"2030\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg\" image_id=\"2029\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg\" image_id=\"2028\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg\" image_id=\"2027\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg\" image_id=\"2026\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg\" image_id=\"2025\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg\" image_id=\"2024\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg\" image_id=\"2023\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg\" image_id=\"2022\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg\" image_id=\"2021\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg\" image_id=\"2020\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg\" image_id=\"2019\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg\" image_id=\"2018\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg\" image_id=\"2017\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg\" image_id=\"2016\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg\" image_id=\"2015\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg\" image_id=\"2014\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg\" image_id=\"2002\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 04:22:18','2023-01-09 04:22:18','',1700,'https://test-site.wlvrotary.org/?p=2038',0,'revision','',0),(2040,1,'2023-01-09 04:26:43','2023-01-09 04:26:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" bordersize=\"0\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:26:43','2023-01-09 04:26:43','',1829,'https://test-site.wlvrotary.org/?p=2040',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (2039,1,'2023-01-09 04:24:26','2023-01-09 04:24:26','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" bordersize=\"0\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(150, 22, 0);\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:24:26','2023-01-09 04:24:26','',1829,'https://test-site.wlvrotary.org/?p=2039',0,'revision','',0),(2062,1,'2023-01-09 05:04:27','2023-01-09 05:04:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 05:04:27','2023-01-09 05:04:27','',1829,'https://test-site.wlvrotary.org/?p=2062',0,'revision','',0),(2041,1,'2023-01-09 04:28:57','2023-01-09 04:28:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:28:57','2023-01-09 04:28:57','',1829,'https://test-site.wlvrotary.org/?p=2041',0,'revision','',0),(2042,1,'2023-01-09 04:30:01','2023-01-09 04:30:01','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:30:01','2023-01-09 04:30:01','',1829,'https://test-site.wlvrotary.org/?p=2042',0,'revision','',0),(2043,1,'2023-01-09 04:30:34','2023-01-09 04:30:34','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our RoClub<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:30:34','2023-01-09 04:30:34','',1829,'https://test-site.wlvrotary.org/?p=2043',0,'revision','',0),(2044,1,'2023-01-09 04:31:49','2023-01-09 04:31:49','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our RoClub<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:31:49','2023-01-09 04:31:49','',1829,'https://test-site.wlvrotary.org/?p=2044',0,'revision','',0),(2045,1,'2023-01-09 04:33:54','2023-01-09 04:33:54','','HolidayVillage 12-12-21 -506','','inherit','open','closed','','holidayvillage-12-12-21-506','','','2023-01-09 04:33:54','2023-01-09 04:33:54','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/HolidayVillage-12-12-21-506.jpg',0,'attachment','image/jpeg',0),(2046,1,'2023-01-09 04:39:19','2023-01-09 04:39:19','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our RoClub<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2016|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:39:19','2023-01-09 04:39:19','',1829,'https://test-site.wlvrotary.org/?p=2046',0,'revision','',0),(2047,1,'2023-01-09 04:41:43','2023-01-09 04:41:43','','Screenshot 2023-01-08 at 8.41.23 PM','','inherit','open','closed','','screenshot-2023-01-08-at-8-41-23-pm','','','2023-01-09 04:41:43','2023-01-09 04:41:43','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png',0,'attachment','image/png',0),(2048,1,'2023-01-09 04:42:26','2023-01-09 04:42:26','','Screenshot 2023-01-08 at 8.41.11 PM','','inherit','open','closed','','screenshot-2023-01-08-at-8-41-11-pm','','','2023-01-09 04:42:26','2023-01-09 04:42:26','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.11-PM.png',0,'attachment','image/png',0),(2049,1,'2023-01-09 04:43:00','2023-01-09 04:43:00','','Screenshot 2023-01-08 at 8.41.00 PM','','inherit','open','closed','','screenshot-2023-01-08-at-8-41-00-pm','','','2023-01-09 04:43:00','2023-01-09 04:43:00','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png',0,'attachment','image/png',0),(2061,1,'2023-01-09 05:02:51','2023-01-09 05:02:51','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 05:02:51','2023-01-09 05:02:51','',1829,'https://test-site.wlvrotary.org/?p=2061',0,'revision','',0),(2050,1,'2023-01-09 04:43:47','2023-01-09 04:43:47','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_5\" type=\"1_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our RoClub<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adip</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150\" bottom_margin=\"75\" sep_color=\"var(--awb-color2)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]WLV Sunrise By the Numbers[/fusion_title][fusion_flip_boxes columns=\"3\" front_title_size=\"4\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\"][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][fusion_flip_box text_front=\"Info about the Stat\" animation_direction=\"left\" animation_speed=\"0.1\" title_front=\"xx% Stat\" background_color_front=\"var(--awb-custom_color_6)\" text_front_color=\"var(--awb-color2)\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 04:43:47','2023-01-09 04:43:47','',1829,'https://test-site.wlvrotary.org/?p=2050',0,'revision','',0),(2051,1,'2023-01-09 04:46:31','2023-01-09 04:46:31','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A 501 (c)3 Charitable Corporation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>In 1991, the board of directors of the Rotary Club of Westlake Village Sunrise made the decision to establish a 501 (c)3 nonprofit foundation to manage all incoming and outgoing donations from our club.  As a Rotary club, we are a 501 (c)4 nonprofit organization.  For the purpose of accepting tax deductible donations, it was important to form the Sunrise Rotary Foundation.</p>\r\n<p>On December 31, 1991, we received our notification from the IRS and the Sunrise Rotary Foundation was officially established.  Our FEIN number is 77-0253850.  The Foundation Board is made up of five Rotarians, and serves as a separate entity to manage all funding from club fundraisers and donations.  All donations are given exclusively to nonprofit organizations with a 501 (c)3 status.  </p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2016|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2027|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p>\r\n<p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p>\r\n</p>\r\n<p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Don Martin for additional information.</p>\r\n<p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','inherit','closed','closed','','1847-revision-v1','','','2023-01-09 04:46:31','2023-01-09 04:46:31','',1847,'https://test-site.wlvrotary.org/?p=2051',0,'revision','',0),(2052,1,'2023-01-09 04:48:54','2023-01-09 04:48:54','','318792128_10159617131168983_807962145973987535_n','','inherit','open','closed','','318792128_10159617131168983_807962145973987535_n','','','2023-01-09 04:48:54','2023-01-09 04:48:54','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318792128_10159617131168983_807962145973987535_n.jpg',0,'attachment','image/jpeg',0),(2053,1,'2023-01-09 04:49:31','2023-01-09 04:49:31','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]News &amp; Events[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club Of Westlake Village Sunrise participates in multiple service projects each year in and around the greater Conejo Valley and surrounding communities; some with our members exclusively and others with other Rotary Clubs or non-profits in the Conejo Valley. </p>\r\n<p>All of these carry great meaning to our organization as most were brought to our Club from, and initiated by members who have a passion for a particular non-profit, charity or outside organization, and have found yet another way to give to that group by introducing their Rotary family to their “passion”. </p>\r\n<p>These meaningful projects allow Rotarians to engage in fellowship while allowing for diversity with integrity and have the pleasure of being leaders in the community by displaying “Service Above Self” and constantly reinforcing The Four-Way Test. </p>\r\n</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2036|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Recent Events<br>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2052|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"30% 50%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318792128_10159617131168983_807962145973987535_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text][add_eventon][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Featured News &amp; Events<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise Rotary Celebrates Teacher Appreciation Week[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Sunrise Rotarians gathered together at the beginning of their Rotary meeting at Los Robles Greens and assembled over 353 Teacher Appreciation bags filled with goodies and sweets to thank the teachers for their hard work during this COVID-challenged school year. Our President Elect and Community Service Chair, Michelle Ramsey, supervised the assembly process and helped us assemble the bags.</p>\r\n<p>Once the bags were assembled, WLV Sunrise Rotarians delivered them to a number of schools in the Conejo Valley and surrounding area. We delivered these packages to Westlake High School; Oak Park High School; Westlake Elementary School and Westlake Hills Elementary School.</p>\r\n<p>We thank the teachers and administrators for their hard work and dedication to our kids!</p>\r\n<p>The two pictures reflect the great experience and good will that came out of this project ( both Rotarians and School Staff) . In one picture, President Jim Wisdom is with Lauri Looker of Westlake High School. Lauri has been instrumental in helping the WLV Sunrise Rotary Club find potential RYLA students for the District 5240 RYLA program for many years.[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_youtube autoplay=\"false\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" structured_data=\"off\" id=\"https://youtu.be/pErn6Q4rkEc\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Holidays in the Village[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotarians are asked to serve their communities using their skills, strengths, and talents. Westlake Village Noon wanted to create Holidays In the Village (HITV), a European style Christmas Market, as an annual community event in early December that was family friendly. It was too big a challenge and needed more skills than they had in their Club. Solution – partner with Westlake Village Sunrise and the City of Westlake Village!</p>\r\n<p>We pulled it off! On Sunday, December 12, 2021, HITV was an amazing success with thousands of attendees! The overwhelming feedback from attendees: We had a wonderful time! Please tell us you are doing it again next year! Well – we are! The second annual HITV will be on December 4, 2022.</p>\r\n<p>Success required months of planning, organizing, designing, procuring,  prepping, and promoting. It required follow through and last-minute problem solving the weekend of the event to make it happen. It took over 250 volunteers from our two clubs and the community. The skills, strengths, and talents needed included: leadership, project management, logistics, budgeting, construction, carpentry, scenic art, entertainment, food service, purchasing, communication (PR, social media, and print), printing, fund raising, vendor support, legal services, insurance and risk management, health and food safety, traffic and security. Whew! Ultimately, we succeeded through trust, commitment, and service above self!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1899|fusion-400\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master-400x340.png[/fusion_imageframe][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Events','','inherit','closed','closed','','1725-revision-v1','','','2023-01-09 04:49:31','2023-01-09 04:49:31','',1725,'https://test-site.wlvrotary.org/?p=2053',0,'revision','',0),(2054,1,'2023-01-09 04:53:47','2023-01-09 04:53:47','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2034|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">We would be happy to talk with you further or email you some additional information about the Rotary Club of Westlake Village Sunrise!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">If you are interested in joining Rotary, we’d love to hear from you!  Please begin by filling out our membership application below.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Interested in volunteering on a community project?  We’d love to hear from you!  We can provide you with upcoming opportunities.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2023-01-09 04:53:47','2023-01-09 04:53:47','',1851,'https://test-site.wlvrotary.org/?p=2054',0,'revision','',0),(2055,1,'2023-01-09 04:54:01','2023-01-09 04:54:01','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2034|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"82% 63%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">We would be happy to talk with you further or email you some additional information about the Rotary Club of Westlake Village Sunrise!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">If you are interested in joining Rotary, we’d love to hear from you!  Please begin by filling out our membership application below.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Interested in volunteering on a community project?  We’d love to hear from you!  We can provide you with upcoming opportunities.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get Involved','','inherit','closed','closed','','1851-revision-v1','','','2023-01-09 04:54:01','2023-01-09 04:54:01','',1851,'https://test-site.wlvrotary.org/?p=2055',0,'revision','',0),(2056,1,'2023-01-09 04:58:12','2023-01-09 04:58:12','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\" ][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br />[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color2)\" icon_size=\"45\" body_color=\"var(--awb-color4)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Donations Made in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise by the Numbers','','publish','closed','closed','','sunrise-by-the-numbers','','','2023-01-10 05:19:57','2023-01-10 05:19:57','',0,'https://test-site.wlvrotary.org/fusion_element/sunrise-by-the-numbers/',0,'fusion_element','',0),(2058,1,'2023-01-09 04:59:24','2023-01-09 04:59:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\" ][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br />[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color2)\" icon_size=\"45\" body_color=\"var(--awb-color4)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1,000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise by the Numbers','','inherit','closed','closed','','2056-revision-v1','','','2023-01-09 04:59:24','2023-01-09 04:59:24','',2056,'https://test-site.wlvrotary.org/?p=2058',0,'revision','',0),(2059,1,'2023-01-09 04:59:24','2023-01-09 04:59:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"#\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get to Know Our Club','','inherit','closed','closed','','2057-revision-v1','','','2023-01-09 04:59:24','2023-01-09 04:59:24','',2057,'https://test-site.wlvrotary.org/?p=2059',0,'revision','',0),(2063,1,'2023-01-09 05:04:54','2023-01-09 05:04:54','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 05:04:54','2023-01-09 05:04:54','',1829,'https://test-site.wlvrotary.org/?p=2063',0,'revision','',0),(2064,1,'2023-01-09 05:06:45','2023-01-09 05:06:45','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 05:06:45','2023-01-09 05:06:45','',1829,'https://test-site.wlvrotary.org/?p=2064',0,'revision','',0),(2089,1,'2023-01-09 06:19:07','2023-01-09 06:19:07','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 06:19:07','2023-01-09 06:19:07','',1829,'https://test-site.wlvrotary.org/?p=2089',0,'revision','',0),(2065,1,'2023-01-09 05:08:22','2023-01-09 05:08:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" margin_top=\"75\" margin_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 05:08:22','2023-01-09 05:08:22','',1829,'https://test-site.wlvrotary.org/?p=2065',0,'revision','',0),(2087,1,'2023-01-09 06:18:11','2023-01-09 06:18:11','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" margin_top=\"75\" margin_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 06:18:11','2023-01-09 06:18:11','',1829,'https://test-site.wlvrotary.org/?p=2087',0,'revision','',0),(2066,1,'2023-01-09 05:09:08','2023-01-09 05:09:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" margin_top=\"75\" margin_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 05:09:08','2023-01-09 05:09:08','',1829,'https://test-site.wlvrotary.org/?p=2066',0,'revision','',0),(2067,1,'2023-01-09 05:09:19','2023-01-09 05:09:19','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" margin_top=\"75\" margin_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 05:09:19','2023-01-09 05:09:19','',1829,'https://test-site.wlvrotary.org/?p=2067',0,'revision','',0),(2068,1,'2023-01-09 05:09:39','2023-01-09 05:09:39','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\" ][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br />[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color2)\" icon_size=\"45\" body_color=\"var(--awb-color4)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Dollars Raised in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise by the Numbers','','inherit','closed','closed','','2056-revision-v1','','','2023-01-09 05:09:39','2023-01-09 05:09:39','',2056,'https://test-site.wlvrotary.org/?p=2068',0,'revision','',0),(2069,1,'2023-01-09 05:13:38','2023-01-09 05:13:38','','246339353_10158813569543983_4115597201873383475_n','','inherit','open','closed','','246339353_10158813569543983_4115597201873383475_n','','','2023-01-09 05:13:38','2023-01-09 05:13:38','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n.jpg',0,'attachment','image/jpeg',0),(2070,1,'2023-01-09 05:13:57','2023-01-09 05:13:57','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A 501 (c)3 Charitable Corporation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>In 1991, the board of directors of the Rotary Club of Westlake Village Sunrise made the decision to establish a 501 (c)3 nonprofit foundation to manage all incoming and outgoing donations from our club.  As a Rotary club, we are a 501 (c)4 nonprofit organization.  For the purpose of accepting tax deductible donations, it was important to form the Sunrise Rotary Foundation.</p>\r\n<p>On December 31, 1991, we received our notification from the IRS and the Sunrise Rotary Foundation was officially established.  Our FEIN number is 77-0253850.  The Foundation Board is made up of five Rotarians, and serves as a separate entity to manage all funding from club fundraisers and donations.  All donations are given exclusively to nonprofit organizations with a 501 (c)3 status.  </p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2016|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2069|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Support the Sunrise Rotary Foundation<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Through the generosity of people like you, our work has made a difference in the lives of thousands of our neighbors in our own communities and of millions around the world.</p>\r\n<p>Your gift allows us to improve communities by promoting peace, preventing disease, bolstering economic development, providing clean water and sanitation.</p>\r\n</p>\r\n<p>If you would like to support the many activities of the Rotary Club of Westlake Village Sunrise you can do that by making a tax-deductible contribution to our Sunrise Rotary Foundation. Please contact our Foundation chair Don Martin for additional information.</p>\r\n<p>The members of the Rotary Club of Westlake Village Sunrise and the thousands of people who will benefit from your generosity thank you for your support!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Support the Sunrise Foundation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise Rotary Foundation','','inherit','closed','closed','','1847-revision-v1','','','2023-01-09 05:13:57','2023-01-09 05:13:57','',1847,'https://test-site.wlvrotary.org/?p=2070',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (2071,1,'2023-01-09 05:15:17','2023-01-09 05:15:17','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1750|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 05:15:17','2023-01-09 05:15:17','',1840,'https://test-site.wlvrotary.org/?p=2071',0,'revision','',0),(2072,1,'2023-01-09 05:18:53','2023-01-09 05:18:53','','307691786_10159387843938983_7196370717298419686_n','','inherit','open','closed','','307691786_10159387843938983_7196370717298419686_n','','','2023-01-09 05:18:53','2023-01-09 05:18:53','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg',0,'attachment','image/jpeg',0),(2073,1,'2023-01-09 05:19:01','2023-01-09 05:19:01','','265099237_10158920847618983_8229145687643592132_n','','inherit','open','closed','','265099237_10158920847618983_8229145687643592132_n','','','2023-01-09 05:19:01','2023-01-09 05:19:01','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/265099237_10158920847618983_8229145687643592132_n.jpg',0,'attachment','image/jpeg',0),(2074,1,'2023-01-09 05:22:07','2023-01-09 05:22:07','','IMG-9690','','inherit','open','closed','','img-9690','','','2023-01-09 05:22:07','2023-01-09 05:22:07','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690.jpg',0,'attachment','image/jpeg',0),(2075,1,'2023-01-09 05:23:02','2023-01-09 05:23:02','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 05:23:02','2023-01-09 05:23:02','',1840,'https://test-site.wlvrotary.org/?p=2075',0,'revision','',0),(2076,1,'2023-01-09 05:34:49','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2023-01-09 05:34:49','0000-00-00 00:00:00','',0,'https://test-site.wlvrotary.org/?post_type=fusion_icons&p=2076',0,'fusion_icons','',0),(2077,1,'2023-01-09 05:36:35','2023-01-09 05:36:35','','environment','','inherit','open','closed','','environment','','','2023-01-09 05:36:35','2023-01-09 05:36:35','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg',0,'attachment','image/svg+xml',0),(2078,1,'2023-01-09 05:37:43','2023-01-09 05:37:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 05:37:43','2023-01-09 05:37:43','',1840,'https://test-site.wlvrotary.org/?p=2078',0,'revision','',0),(2079,1,'2023-01-09 05:38:20','2023-01-09 05:38:20','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 05:38:20','2023-01-09 05:38:20','',1840,'https://test-site.wlvrotary.org/?p=2079',0,'revision','',0),(2080,1,'2023-01-09 05:43:13','2023-01-09 05:43:13','','economy','','inherit','open','closed','','economy','','','2023-01-09 05:43:13','2023-01-09 05:43:13','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/economy.svg',0,'attachment','image/svg+xml',0),(2081,1,'2023-01-09 05:52:01','2023-01-09 05:52:01','','education','','inherit','open','closed','','education','','','2023-01-09 05:52:01','2023-01-09 05:52:01','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.svg',0,'attachment','image/svg+xml',0),(2082,1,'2023-01-09 05:52:11','2023-01-09 05:52:11','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2080|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/economy.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2081|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Fighting Disease[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-flag fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" alignment=\"center\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Providing Resources for those in Need[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 05:52:11','2023-01-09 05:52:11','',1840,'https://test-site.wlvrotary.org/?p=2082',0,'revision','',0),(2083,1,'2023-01-09 05:53:20','2023-01-09 05:53:20','','peace','','inherit','open','closed','','peace','','','2023-01-09 05:53:20','2023-01-09 05:53:20','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.svg',0,'attachment','image/svg+xml',0),(2084,1,'2023-01-09 05:57:28','2023-01-09 05:57:28','','disease','','inherit','open','closed','','disease','','','2023-01-09 05:57:28','2023-01-09 05:57:28','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.svg',0,'attachment','image/svg+xml',0),(2085,1,'2023-01-09 05:58:55','2023-01-09 05:58:55','','maternal','','inherit','open','closed','','maternal','','','2023-01-09 05:58:55','2023-01-09 05:58:55','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.svg',0,'attachment','image/svg+xml',0),(2100,1,'2023-01-09 06:31:45','2023-01-09 06:31:45','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:31:45','2023-01-09 06:31:45','',1840,'https://test-site.wlvrotary.org/?p=2100',0,'revision','',0),(2086,1,'2023-01-09 05:59:04','2023-01-09 05:59:04','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2080|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/economy.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2081|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2083|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2084|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2085|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.svg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 05:59:04','2023-01-09 05:59:04','',1840,'https://test-site.wlvrotary.org/?p=2086',0,'revision','',0),(2088,1,'2023-01-09 06:19:07','2023-01-09 06:19:07','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"  padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"#\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get to Know Our Club','','inherit','closed','closed','','2057-revision-v1','','','2023-01-09 06:19:07','2023-01-09 06:19:07','',2057,'https://test-site.wlvrotary.org/?p=2088',0,'revision','',0),(2090,1,'2023-01-09 06:22:54','2023-01-09 06:22:54','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"  padding_top=\"75\" padding_right=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"#\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get to Know Our Club','','inherit','closed','closed','','2057-revision-v1','','','2023-01-09 06:22:54','2023-01-09 06:22:54','',2057,'https://test-site.wlvrotary.org/?p=2090',0,'revision','',0),(2091,1,'2023-01-09 06:22:54','2023-01-09 06:22:54','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 06:22:54','2023-01-09 06:22:54','',1829,'https://test-site.wlvrotary.org/?p=2091',0,'revision','',0),(2092,1,'2023-01-09 06:23:13','2023-01-09 06:23:13','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 06:23:13','2023-01-09 06:23:13','',1829,'https://test-site.wlvrotary.org/?p=2092',0,'revision','',0),(2093,1,'2023-01-09 06:23:28','2023-01-09 06:23:28','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 06:23:28','2023-01-09 06:23:28','',1829,'https://test-site.wlvrotary.org/?p=2093',0,'revision','',0),(2094,1,'2023-01-09 06:28:17','2023-01-09 06:28:17','','disease','','inherit','open','closed','','disease-2','','','2023-01-09 06:28:17','2023-01-09 06:28:17','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg',0,'attachment','image/jpeg',0),(2095,1,'2023-01-09 06:28:22','2023-01-09 06:28:22','','econmic','','inherit','open','closed','','econmic','','','2023-01-09 06:28:22','2023-01-09 06:28:22','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg',0,'attachment','image/jpeg',0),(2096,1,'2023-01-09 06:28:28','2023-01-09 06:28:28','','education','','inherit','open','closed','','education-2','','','2023-01-09 06:28:28','2023-01-09 06:28:28','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg',0,'attachment','image/jpeg',0),(2097,1,'2023-01-09 06:28:38','2023-01-09 06:28:38','','environment','','inherit','open','closed','','environment-2','','','2023-01-09 06:28:38','2023-01-09 06:28:38','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg',0,'attachment','image/jpeg',0),(2098,1,'2023-01-09 06:28:43','2023-01-09 06:28:43','','maternal','','inherit','open','closed','','maternal-2','','','2023-01-09 06:28:43','2023-01-09 06:28:43','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg',0,'attachment','image/jpeg',0),(2099,1,'2023-01-09 06:28:50','2023-01-09 06:28:50','','peace','','inherit','open','closed','','peace-2','','','2023-01-09 06:28:50','2023-01-09 06:28:50','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg',0,'attachment','image/jpeg',0),(2101,1,'2023-01-09 06:32:30','2023-01-09 06:32:30','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:32:30','2023-01-09 06:32:30','',1840,'https://test-site.wlvrotary.org/?p=2101',0,'revision','',0),(2102,1,'2023-01-09 06:32:50','2023-01-09 06:32:50','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:32:50','2023-01-09 06:32:50','',1840,'https://test-site.wlvrotary.org/?p=2102',0,'revision','',0),(2103,1,'2023-01-09 06:33:52','2023-01-09 06:33:52','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:33:52','2023-01-09 06:33:52','',1840,'https://test-site.wlvrotary.org/?p=2103',0,'revision','',0),(2104,1,'2023-01-09 06:34:40','2023-01-09 06:34:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:34:40','2023-01-09 06:34:40','',1840,'https://test-site.wlvrotary.org/?p=2104',0,'revision','',0),(2107,1,'2023-01-09 06:37:25','2023-01-09 06:37:25','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:37:25','2023-01-09 06:37:25','',1840,'https://test-site.wlvrotary.org/?p=2107',0,'revision','',0),(2105,1,'2023-01-09 06:35:06','2023-01-09 06:35:06','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:35:06','2023-01-09 06:35:06','',1840,'https://test-site.wlvrotary.org/?p=2105',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (2106,1,'2023-01-09 06:36:08','2023-01-09 06:36:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our club supports numerous nonprofit organizations who provide resources to groups in need of many services, including counseling, medical help, educational materials and more.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:36:08','2023-01-09 06:36:08','',1840,'https://test-site.wlvrotary.org/?p=2106',0,'revision','',0),(2108,1,'2023-01-09 06:39:20','2023-01-09 06:39:20','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"25\" padding_bottom=\"25\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"150\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"150\" aspect_ratio_position=\"49% 41%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:39:20','2023-01-09 06:39:20','',1840,'https://test-site.wlvrotary.org/?p=2108',0,'revision','',0),(2109,1,'2023-01-09 06:42:04','2023-01-09 06:42:04','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"25\" padding_bottom=\"25\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"125\" margin_top=\"2 5\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25 \" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"125\" aspect_ratio_position=\"49% 41%\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:42:04','2023-01-09 06:42:04','',1840,'https://test-site.wlvrotary.org/?p=2109',0,'revision','',0),(2111,1,'2023-01-09 06:47:22','2023-01-09 06:47:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"25\" padding_bottom=\"25\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25 \" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"125\" aspect_ratio_position=\"49% 41%\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:47:22','2023-01-09 06:47:22','',1840,'https://test-site.wlvrotary.org/?p=2111',0,'revision','',0),(2110,1,'2023-01-09 06:43:40','2023-01-09 06:43:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"25\" padding_bottom=\"25\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2077|full\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg[/fusion_imageframe][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" max_width=\"125\" margin_top=\"2 5\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25 \" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"125\" aspect_ratio_position=\"49% 41%\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:43:40','2023-01-09 06:43:40','',1840,'https://test-site.wlvrotary.org/?p=2110',0,'revision','',0),(2146,1,'2023-01-10 04:52:19','2023-01-10 04:52:19','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"25\" padding_bottom=\"25\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25 \" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"125\" aspect_ratio_position=\"49% 41%\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Nearly 6 million children under the age of five die each year because of malnutrition, poor health care, and inadequate sanitation. We expand access to quality care, so mothers and their children can live and grow stronger.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-10 04:52:19','2023-01-10 04:52:19','',1840,'https://test-site.wlvrotary.org/?p=2146',0,'revision','',0),(2112,1,'2023-01-09 06:49:40','2023-01-09 06:49:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"55\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]\r\n<p>Our Causes</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]What The Rotary Club of Westlake Village Sunrise Cares About[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our club is dedicated to building relationships, improving lives, and creating a better world locally, regionally, and worldwide.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"25\" padding_bottom=\"25\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2095|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Growing Local Economies[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We carry out service projects that enhance economic and community development and create opportunities for decent and productive work for young and old. We also strengthen local entrepreneurs and community leaders, particularly women, in impoverished communities.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2096|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Supporting Children &amp; Education[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>More than 775 million people over the age of 15 are illiterate. Our goal is to strengthen the capacity of communities to support basic education and literacy, reduce gender disparity in education, and increase adult literacy. </p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2099|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Promoting Peace[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Rotary encourages conversations to foster understanding within and across cultures. We train adults and young leaders to prevent and mediate conflict and help refugees who have fled dangerous areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2097|full\" aspect_ratio_position=\"100% 54%\" max_width=\"125\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Protecting the Environment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Rotary members are tackling environmental issues the way they always do: coming up with projects, using their connections to change policy and planning for the future.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2094|full\" aspect_ratio=\"1-1\" max_width=\"125\" margin_top=\"25 \" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Disease Prevention &amp; Treatment[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>We educate and equip communities to stop the spread of life-threatening diseases like polio, HIV/AIDS, and malaria. We improve and expand access to low-cost and free health care in developing areas.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2098|full\" max_width=\"125\" aspect_ratio_position=\"49% 41%\" margin_top=\"25\" margin_bottom=\"25\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Maternal &amp; Child Health[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Nearly 6 million children under the age of five die each year because of malnutrition, poor health care, and inadequate sanitation. We expand access to quality care, so mothers and their children can live and grow stronger.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-custom_color_2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Our Community Focus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our clubs work to improve the quality of life in our community by actively supporting numerous organizations and causes. Highlights include:</p>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<ul>\r\n<li>America Supporting Americans (ASA)</li>\r\n<li>Art Trek</li>\r\n<li>Big Brothers/Big Sisters</li>\r\n<li>Boys and Girls Club of Conejo Valley</li>\r\n<li>Disaster Communications</li>\r\n<li>For the Troops</li>\r\n<li>Harbor House</li>\r\n<li>James Storehouse</li>\r\n<li>KCLU</li>\r\n<li>Manna</li>\r\n<li>Many Mansions</li>\r\n<li>Safe Passage</li>\r\n<li>Senior Concerns</li>\r\n<li>Yarrow Family YMCA</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2015|full\" aspect_ratio=\"1-1\" aspect_ratio_position=\"11% 75%\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2072|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Projects[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p><b>Holidays In The Village - A European Marketplace - Fundraiser</b></p>\r\n<p><b>Foundation Gala </b>- Celebrating our members contributions to The Rotary Foundation</p>\r\n<p>Food drives in conjunction with our youth arm of Rotary</p>\r\n<p><b>“Blanket Brigade” </b>- Making blankets yearly for My Stuff Bags for distribution to children of all ages who are being removed from unsafe situations.</p>\r\n<p><b>“Little Art Bags”</b> project in conjunction with Art Trek - Preparing bags of art projects for distribution to children in lower income schools in Ventura and Los Angeles counties.</p>\r\n<p>Literacy projects and book drives</p>\r\n<p>Host yearly Holiday breakfast at the Goebel Adult Center for (# of people served and year it began)</p>\r\n<p>“Peace Poles and Pickets” - Project with The Conejo Valley Art Council and Art Trek to create a public art installation in our community promoting peace.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" background_color=\"var(--awb-color1)\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong></p>\r\n<div>An original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</p>\r\n</div>\r\n<div><strong>Family</strong></div>\r\n<div></div>\r\n<div>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</p>\r\n</p>\r\n</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?\r\n</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</p>\r\n</p>\r\n</div>\r\n</div>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Our Causes','','inherit','closed','closed','','1840-revision-v1','','','2023-01-09 06:49:40','2023-01-09 06:49:40','',1840,'https://test-site.wlvrotary.org/?p=2112',0,'revision','',0),(2113,1,'2023-01-09 15:52:09','2023-01-09 15:52:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color2)\" padding_top=\"75\" padding_right=\"0\" padding_bottom=\"75\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"#\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get to Know Our Club','','inherit','closed','closed','','2057-revision-v1','','','2023-01-09 15:52:09','2023-01-09 15:52:09','',2057,'https://test-site.wlvrotary.org/?p=2113',0,'revision','',0),(2114,1,'2023-01-09 15:52:32','2023-01-09 15:52:32','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris</p>\r\n<p><b>Rotary Club of Westlake Village Sunrise By-Laws</b></p>\r\n<p><b>Rotary Club of Westlake Village Sunrise Resolutions</b></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-09 15:52:32','2023-01-09 15:52:32','',1829,'https://test-site.wlvrotary.org/?p=2114',0,'revision','',0),(2115,1,'2023-01-09 15:54:40','2023-01-09 15:54:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]President\'s Message[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A Message from Michelle Ramsey<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Welcome to the Rotary Club of Westlake Village Sunrise!</p><p>It is my honor to serve as president of this amazing group of dedicated Rotarians for the Rotary year 2021-2022!  This year, the Rotary International theme is Serve To Change Lives.  Today, Rotary exists in 200 countries with over 33,000 clubs and 1.2 million members, all with a common goal to serve first, and to help make the world a better place. </p><p>The Rotary Club of Westlake Village Sunrise is a diversified group of men and women (whose ages range from the early 20’s and up)  We enjoy fun and fellowship, giving back, and helping to improve lives locally and around the world.  We all live our lives based on the principles of the 4-Way Test and the Rotary motto – Service Above Self. </p><p><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">We always welcome business, community and young professionals/future leaders to join us in membership.</span></p><ul>\n</ul>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"28% 56%\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','President\'s Message','','publish','closed','closed','','presidents-message','','','2023-01-09 15:57:52','2023-01-09 15:57:52','',0,'https://test-site.wlvrotary.org/?page_id=2115',0,'page','',0),(2118,1,'2023-01-09 15:57:39','2023-01-09 15:57:39','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]President\'s Message[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A Message from Michelle Ramsey<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Welcome to the Rotary Club of Westlake Village Sunrise!</p><p>It is my honor to serve as president of this amazing group of dedicated Rotarians for the Rotary year 2021-2022!  This year, the Rotary International theme is Serve To Change Lives.  Today, Rotary exists in 200 countries with over 33,000 clubs and 1.2 million members, all with a common goal to serve first, and to help make the world a better place. </p><p>The Rotary Club of Westlake Village Sunrise is a diversified group of men and women (whose ages range from the early 20’s and up)  We enjoy fun and fellowship, giving back, and helping to improve lives locally and around the world.  We all live our lives based on the principles of the 4-Way Test and the Rotary motto – Service Above Self. </p><p><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">We always welcome business, community and young professionals/future leaders to join us in membership.</span></p><ul>\n</ul>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"82% 63%\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','President\'s Message','','inherit','closed','closed','','2115-revision-v1','','','2023-01-09 15:57:39','2023-01-09 15:57:39','',2115,'https://test-site.wlvrotary.org/?p=2118',0,'revision','',0),(2119,1,'2023-01-09 15:57:52','2023-01-09 15:57:52','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]President\'s Message[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]A Message from Michelle Ramsey<br>[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Welcome to the Rotary Club of Westlake Village Sunrise!</p><p>It is my honor to serve as president of this amazing group of dedicated Rotarians for the Rotary year 2021-2022!  This year, the Rotary International theme is Serve To Change Lives.  Today, Rotary exists in 200 countries with over 33,000 clubs and 1.2 million members, all with a common goal to serve first, and to help make the world a better place. </p><p>The Rotary Club of Westlake Village Sunrise is a diversified group of men and women (whose ages range from the early 20’s and up)  We enjoy fun and fellowship, giving back, and helping to improve lives locally and around the world.  We all live our lives based on the principles of the 4-Way Test and the Rotary motto – Service Above Self. </p><p><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">We always welcome business, community and young professionals/future leaders to join us in membership.</span></p><ul>\n</ul>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"28% 56%\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','President\'s Message','','inherit','closed','closed','','2115-revision-v1','','','2023-01-09 15:57:52','2023-01-09 15:57:52','',2115,'https://test-site.wlvrotary.org/?p=2119',0,'revision','',0),(2116,1,'2023-01-09 15:55:02','2023-01-09 15:55:02','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2034|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"82% 63%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">We would be happy to talk with you further or email you some additional information about the Rotary Club of Westlake Village Sunrise!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">If you are interested in joining Rotary, we’d love to hear from you!  Please begin by filling out our membership application below.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Interested in volunteering on a community project?  We’d love to hear from you!  We can provide you with upcoming opportunities.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','presidents-message','','inherit','closed','closed','','2115-revision-v1','','','2023-01-09 15:55:02','2023-01-09 15:55:02','',2115,'https://test-site.wlvrotary.org/?p=2116',0,'revision','',0),(2117,1,'2023-01-09 15:55:20','2023-01-09 15:55:20','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]Get Involved<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Make A difference in Our Community<br />[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Join the group of business and community leaders from all walks of life, who give back by volunteering their talents and skills and raising funds to support needy charitable organizations.</p>\r\n<p>We would love to have you us for a meeting, fundraiser, or community service project to see what opportunities await. You will want to join in and become a part of an organization whose motto is “Service Above Self”.</p>\r\n<p>To join Westlake Village Sunrise Rotary, you must be:</p>\r\n<ul>\r\n<li>A leading representative of your business or profession.</li>\r\n<li>Interested in networking with the most influential leaders in business and civic communities.</li>\r\n<li>Willing to participate in and/or support projects that enhance our community.</li>\r\n<li>Willing to participate in and/or support projects that help people in developing countries and promote international understanding and goodwill.</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2034|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"82% 63%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Want to Learn More?<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">We would be happy to talk with you further or email you some additional information about the Rotary Club of Westlake Village Sunrise!</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Request Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Become a Member[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">If you are interested in joining Rotary, we’d love to hear from you!  Please begin by filling out our membership application below.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Membership Application[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Interested in volunteering on a community project?  We’d love to hear from you!  We can provide you with upcoming opportunities.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Volunteer Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','President\'s Message','','inherit','closed','closed','','2115-revision-v1','','','2023-01-09 15:55:20','2023-01-09 15:55:20','',2115,'https://test-site.wlvrotary.org/?p=2117',0,'revision','',0),(2120,1,'2023-01-09 15:58:50','2023-01-09 15:58:50','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color2)\" padding_top=\"75\" padding_right=\"0\" padding_bottom=\"75\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/presidents-message/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get to Know Our Club','','inherit','closed','closed','','2057-revision-v1','','','2023-01-09 15:58:50','2023-01-09 15:58:50','',2057,'https://test-site.wlvrotary.org/?p=2120',0,'revision','',0),(2121,1,'2023-01-09 16:16:59','2023-01-09 16:16:59','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\" flex_column_spacing=\"0px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"14\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"https://www.facebook.com/rotarywestlakesunrise\" instagram=\"https://www.instagram.com/westlakevillagesunriserotary\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" phone=\"X\" email=\"info@wlvrotary.org\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2023-01-09 16:16:59','2023-01-09 16:16:59','',690,'https://test-site.wlvrotary.org/?p=2121',0,'revision','',0),(2122,1,'2023-01-09 16:21:24','2023-01-09 16:21:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_2)\" gradient_end_color=\"var(--awb-custom_color_1)\" ][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Westlake Village Sunrise By the Numbers<br />[/fusion_title][fusion_counters_box columns=\"3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" color=\"var(--awb-color2)\" icon_size=\"45\" body_color=\"var(--awb-color4)\" body_size=\"21\"][fusion_counter_box value=\"52\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-users fas\" unit=\"+\"]Club Members[/fusion_counter_box][fusion_counter_box value=\"1000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hourglass-half fas\" delimiter=\",\" unit=\"+\"]Hours Served in 2022[/fusion_counter_box][fusion_counter_box value=\"65000\" unit_pos=\"suffix\" direction=\"up\" icon=\"fa-hand-holding-usd fas\" delimiter=\",\" unit=\"+\"]Donations Made in 2022[/fusion_counter_box][/fusion_counters_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sunrise by the Numbers','','inherit','closed','closed','','2056-revision-v1','','','2023-01-09 16:21:24','2023-01-09 16:21:24','',2056,'https://test-site.wlvrotary.org/?p=2122',0,'revision','',0),(2123,1,'2023-01-09 16:22:17','2023-01-09 16:22:17','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\" flex_column_spacing=\"0px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"14\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"https://www.facebook.com/rotarywestlakesunrise\" instagram=\"https://www.instagram.com/westlakevillagesunriserotary\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" email=\"info@wlvrotary.org\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2023-01-09 16:22:17','2023-01-09 16:22:17','',690,'https://test-site.wlvrotary.org/?p=2123',0,'revision','',0),(2125,1,'2023-01-09 16:32:58','2023-01-09 16:32:58','{\\\"conditions\\\":{\\\"not_found\\\":{\\\"label\\\":\\\"404 Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"not_found\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"60\\\",\\\"header\\\":\\\"690\\\",\\\"footer\\\":\\\"51\\\"}}','404 Page','','inherit','closed','closed','','63-revision-v1','','','2023-01-09 16:32:58','2023-01-09 16:32:58','',63,'https://test-site.wlvrotary.org/?p=2125',0,'revision','',0),(2126,1,'2023-01-09 16:33:04','2023-01-09 16:33:04','{\\\"conditions\\\":{\\\"search_results\\\":{\\\"label\\\":\\\"Search Results\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"search_results\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"57\\\",\\\"footer\\\":\\\"51\\\"}}','Search Page','','inherit','closed','closed','','61-revision-v1','','','2023-01-09 16:33:04','2023-01-09 16:33:04','',61,'https://test-site.wlvrotary.org/?p=2126',0,'revision','',0),(2127,1,'2023-01-09 16:33:10','2023-01-09 16:33:10','{\\\"conditions\\\":{\\\"search_results\\\":{\\\"label\\\":\\\"Search Results\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"search_results\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"57\\\",\\\"footer\\\":\\\"51\\\",\\\"header\\\":\\\"690\\\"}}','Search Page','','inherit','closed','closed','','61-revision-v1','','','2023-01-09 16:33:10','2023-01-09 16:33:10','',61,'https://test-site.wlvrotary.org/?p=2127',0,'revision','',0),(2128,1,'2023-01-09 21:15:17','2023-01-09 21:15:17','','Local & Global Impact','','inherit','closed','closed','','1895-autosave-v1','','','2023-01-09 21:15:17','2023-01-09 21:15:17','',1895,'https://test-site.wlvrotary.org/?p=2128',0,'revision','',0),(2129,1,'2023-01-09 23:11:17','2023-01-09 23:11:17','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"50\"]Welcome to Westlake Village Sunrise[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>For nearly four decades, the Rotary Club of Westlake Village Sunrise has served the Greater Conejo Valley community. With a focus on community improvement, both locally and globally, our club is proud to support youth, seniors, teachers, the environment, the homeless, those in need of food, and those in crisis, ranging from victims of human trafficking to the refugees in Ukraine.  If you have a passion for giving back, you will find it in Rotary!</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-cog fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]About Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who care about enhancing our community.</p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-heart fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Causes<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/why-rotary/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-location-arrow fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Rotary Club partners with friends, neighbors, local businesses, and community leaders to empower change and provide positive support through service. </p>\r\n<p style=\"color: rgb(193, 0, 0);\">\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-around\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"liftup\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"25\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"50\" padding_left=\"25\" link=\"https://test-site.wlvrotary.org/get-involved/\" min_height=\"\"][fusion_separator style_type=\"default\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"var(--awb-color2)\" /][fusion_fontawesome icon=\"fa-hand-paper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" circle=\"no\" iconcolor=\"var(--awb-custom_color_2)\" iconcolor_hover=\"var(--awb-custom_color_2)\" size=\"64\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Get Involved</p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color6);\">Our Rotary Club is comprised of motivated individuals that want to make a difference, give back and contribute positively in the Conejo Valley and beyond.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-custom_color_5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Recent &amp; Upcoming Events<br>[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_blank\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1901|fusion-600\" borderradius=\"25\" alt=\"Join us for Holidays in the Village\" link=\"https://holidaysinthevillage.org\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_code]W2FkZF9ldmVudG9uIGhpZGVfcGFzdD0ibm8iXQ==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Westlake Village Sunrise in Action[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Photos of our Sunrise Rotarians in the Community</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" custom_aspect_ratio=\"100\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg\" image_id=\"2036\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8-scaled.jpg\" image_id=\"2035\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg\" image_id=\"2034\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg\" image_id=\"2033\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg\" image_id=\"2032\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg\" image_id=\"2031\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg\" image_id=\"2030\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg\" image_id=\"2029\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg\" image_id=\"2028\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg\" image_id=\"2027\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg\" image_id=\"2026\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg\" image_id=\"2025\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg\" image_id=\"2024\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg\" image_id=\"2023\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg\" image_id=\"2022\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg\" image_id=\"2021\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg\" image_id=\"2020\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg\" image_id=\"2019\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg\" image_id=\"2018\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg\" image_id=\"2017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg\" image_id=\"2016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg\" image_id=\"2015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg\" image_id=\"2014\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg\" image_id=\"2002\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_end_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(255, 0, 0);\"><span style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</span></p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home - Rotary Test','','inherit','closed','closed','','1700-revision-v1','','','2023-01-09 23:11:17','2023-01-09 23:11:17','',1700,'https://test-site.wlvrotary.org/?p=2129',0,'revision','',0),(2130,1,'2023-01-10 04:18:53','2023-01-10 04:18:53','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\" line_height=\"22px\"]Rotary Club of Westlake <br><span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]\r\n<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">Rotary Club of Westlake Village Sunrise</span><br /><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">PO Box 3846</span><br /><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\"><br />\r\nThousand Oaks, CA 91359</span></p>\r\n<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\">info@wlvrotary.org</span></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2023-01-10 04:18:53','2023-01-10 04:18:53','',51,'https://test-site.wlvrotary.org/?p=2130',0,'revision','',0),(2131,1,'2023-01-10 04:21:26','2023-01-10 04:21:26','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\" line_height=\"22px\"]Rotary Club of Westlake <br><span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\">Rotary Club of Westlake Village Sunrise</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\">PO Box 3846</span><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\"><br><span style=\"line-height: 18px;\" data-fusion-font=\"true\">\nThousand Oaks, CA 91359</span><br></span></p><p><span style=\"line-height: 18px;\" data-fusion-font=\"true\">i</span><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\">nfo@wlvrotary.org</span></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2023-01-10 04:21:26','2023-01-10 04:21:26','',51,'https://test-site.wlvrotary.org/?p=2131',0,'revision','',0),(2133,1,'2023-01-10 04:23:30','2023-01-10 04:23:30','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\" line_height=\"22px\"]Rotary Club of Westlake\n<span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]<p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">Rotary Club of Westlake Village Sunrise</span><br /><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">PO Box 3846</span><span style=\"font-family: \'Open Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"><span style=\"line-height: 18px;\" data-fusion-font=\"true\"><br />Thousand Oaks, CA 91359<br /></span></span><span style=\"line-height: 18px;\" data-fusion-font=\"true\">i</span><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">nfo@wlvrotary.org</span></p><p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"> </span></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2023-01-10 04:23:30','2023-01-10 04:23:30','',51,'https://test-site.wlvrotary.org/?p=2133',0,'revision','',0),(2132,1,'2023-01-10 04:22:23','2023-01-10 04:22:23','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\" line_height=\"22px\"]Rotary Club of Westlake <br><span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]<p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\">Rotary Club of Westlake Village Sunrise</span><br><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\">PO Box 3846</span><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400;\"><br><span style=\"line-height: 18px;\" data-fusion-font=\"true\">\nThousand Oaks, CA 91359</span></span><span style=\"line-height: 18px;\" data-fusion-font=\"true\"><br></span></p><p><span style=\"line-height: 18px;\" data-fusion-font=\"true\">i</span><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\">nfo@wlvrotary.org</span></p><p><span data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\"><br></span></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2023-01-10 04:22:23','2023-01-10 04:22:23','',51,'https://test-site.wlvrotary.org/?p=2132',0,'revision','',0),(2134,1,'2023-01-10 04:25:25','2023-01-10 04:25:25','[fusion_builder_container admin_label=\"Footer\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"var(--awb-color6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"82px\" padding_right=\"6%\" padding_bottom=\"82px\" padding_left=\"6%\" padding_top_medium=\"42px\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"3_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"48px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"600\" content_align=\"left\" margin_bottom_small=\"24px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" text_transform=\"none\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"#f2f3f5\" line_height=\"22px\"]Rotary Club of Westlake <span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\"><br></span><span style=\"color: var(--awb-text-color); font-family: var(--h3_typography-font-family); font-size: 1em; font-style: var(--h3_typography-font-style,normal); font-weight: var(--h3_typography-font-weight); letter-spacing: var(--h3_typography-letter-spacing); background-color: var(--awb-bg-color);\">Village Sunrise</span>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color2)\" line_height=\"2px\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Open Sans\"]\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Fridays at 7:00 AM</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Los Robles Greens</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">299 S. Moorpark Road</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">Thousand Oaks, CA 91362</p>\r\n<p data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\" style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.75em; letter-spacing: 0.24px;\">United States of America</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_5\" margin_top=\"0px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"20\" padding_bottom=\"0px\" padding_left=\"20\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_right=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Main Menu[/fusion_title][fusion_menu active_border_color=\"#ffffff\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"#ffffff\" align_items=\"center\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"never\" custom_breakpoint=\"800\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" color=\"#ffffff\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"fade\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"8px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"#ffffff\" icons_hover_color=\"#ffffff\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"center\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"36px\" mobile_active_bg=\"#ffffff\" mobile_active_color=\"#141617\" mobile_bg=\"#ffffff\" mobile_color=\"#212326\" mobile_trigger_font_size=\"1em\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_items_height=\"65\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"#ffffff\" mobile_trigger_color=\"#141617\" sticky_display=\"normal,sticky\" submenu_active_bg=\"#141617\" submenu_active_color=\"#ffffff\" flyout_close_color=\"#434549\" flyout_active_close_color=\"#434549\" submenu_bg=\"#141617\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"#ffffff\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"#141617\" submenu_space=\"0px\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"left\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" fusion_font_family_typography=\"Open Sans\" font_size=\"16px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography4-text-transform)\" /][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_6\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"1_3\" margin_top=\"0px\" margin_bottom=\"20px\" margin_bottom_small=\"36px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"#434549\" link_hover_color=\"#9ee5b7\" fusion_font_variant_title_font=\"400\" content_align=\"left\" margin_bottom=\"10px\" margin_bottom_small=\"10px\" margin_top=\"0px\" margin_top_small=\"10px\" margin_right=\"0px\" margin_right_small=\"0px\" margin_left=\"0px\" margin_left_small=\"0px\" sep_color=\"#f2f3f5\" size=\"5\" style_type=\"default\" text_color=\"#ffffff\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\"]Contact Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.15\" text_color=\"var(--awb-color2)\"]<p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 1.4em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">Rotary Club of Westlake Village Sunrise</span><br><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 1.4em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">PO Box 3846</span><span style=\"font-family: \'Open Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"><span style=\"line-height: 18px;\" data-fusion-font=\"true\"><br><span style=\"line-height: 1.4em;\" data-fusion-font=\"true\">Thousand Oaks, CA 91359</span><br></span></span><span style=\"line-height: 1.4em;\" data-fusion-font=\"true\">i</span><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 1.4em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\">nfo@wlvrotary.org</span></p><p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 0.9em;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"><br></span></p>\n<p><span style=\"font-family: \'Open Sans\'; font-weight: 400; line-height: 18px;\" data-fusion-font=\"true\" data-fusion-google-font=\"Open Sans\" data-fusion-google-variant=\"400\"> </span></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Copyright\" align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" background_color=\"#141617\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"25px\" padding_right=\"6%\" padding_bottom=\"25px\" padding_left=\"6%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_color=\"#f2f3f5\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"#f9f9fb\" link_hover_color=\"#ffffff\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_5\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" column_tag=\"div\" type_medium=\"2_5\" margin_top=\"0px\" margin_bottom=\"0px\" margin_top_small=\"20px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"stretch\" order_medium=\"2\" order_small=\"0\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" spacing_left=\"2%\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" fusion_font_variant_text_font=\"400\" text_color=\"#ffffff\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_color=\"#f2f3f5\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"right\" content_alignment_medium=\"right\" content_alignment_small=\"left\" margin_bottom=\"0px\" fusion_font_family_text_font=\"Open Sans\" font_size=\"13px\" line_height=\"1.72\" letter_spacing=\"0.015em\" text_transform=\"var(--awb-typography5-text-transform)\"]\r\n<p style=\"text-align: center;\">© 2022 Rotary Club of Westlake Village Sunrise | Website by Good Cause Marketing Partners</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','sunrise-footer','','inherit','closed','closed','','51-revision-v1','','','2023-01-10 04:25:25','2023-01-10 04:25:25','',51,'https://test-site.wlvrotary.org/?p=2134',0,'revision','',0),(2135,1,'2023-01-10 04:37:18','2023-01-10 04:37:18','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise has established a set of governing documents.<br></p>\n<p><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-by-laws.pdf\"><b>Rotary Club of Westlake Village Sunrise By-Laws</b></a></p>\n<p><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-continuing-resolutions.pdf\"><b>Rotary Club of Westlake Village Sunrise Resolutions</b></a></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-10 04:37:18','2023-01-10 04:37:18','',1829,'https://test-site.wlvrotary.org/?p=2135',0,'revision','',0),(2136,1,'2023-01-10 04:38:22','2023-01-10 04:38:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"75\" margin_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise has established a set of governing documents.<br></p>\n<ul><li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-by-laws.pdf\"><b>Rotary Club of Westlake Village Sunrise By-Laws</b></a></li><li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-continuing-resolutions.pdf\"><b>Rotary Club of Westlake Village Sunrise Resolutions</b></a></li></ul>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-10 04:38:22','2023-01-10 04:38:22','',1829,'https://test-site.wlvrotary.org/?p=2136',0,'revision','',0),(2137,1,'2023-01-10 04:39:22','2023-01-10 04:39:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>The Rotary Club of Westlake Village Sunrise has established a set of governing documents.<br></p>\n<ul><li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-by-laws.pdf\"><b>Rotary Club of Westlake Village Sunrise By-Laws</b></a></li><li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-continuing-resolutions.pdf\"><b>Rotary Club of Westlake Village Sunrise Resolutions</b></a></li></ul>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-10 04:39:22','2023-01-10 04:39:22','',1829,'https://test-site.wlvrotary.org/?p=2137',0,'revision','',0),(2138,1,'2023-01-10 04:40:40','2023-01-10 04:40:40','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise has established a set of governing documents.</p>\r\n<ul>\r\n<li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-by-laws.pdf\"><b>Rotary Club of Westlake Village Sunrise By-Laws</b></a></li>\r\n<li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-continuing-resolutions.pdf\"><b>Rotary Club of Westlake Village Sunrise Resolutions</b></a></li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-10 04:40:40','2023-01-10 04:40:40','',1829,'https://test-site.wlvrotary.org/?p=2138',0,'revision','',0),(2139,1,'2023-01-10 04:41:16','2023-01-10 04:41:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"2%\" background_color=\"var(--awb-color3)\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color2)\" padding_top=\"50\" padding_right=\"0\" padding_bottom=\"50\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Get to Know Our Rotary Club<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: rgb(226, 0, 0);\"><span style=\"color: var(--awb-color7);\">Be part of the friendliest club in the Conejo Valley. Join us for food, fellowship, and fun at one of our meetings or events.</span></p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/about-us/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/presidents-message/\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1917|full\" borderradius=\"12\" alt=\"#\" link=\"#\" max_width=\"300\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Message from the President[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"zoomin\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"12\" border_radius_top_right=\"12\" border_radius_bottom_right=\"12\" border_radius_bottom_left=\"12\" padding_top=\"25\" padding_right=\"25\" padding_bottom=\"25\" padding_left=\"25\" last=\"no\" border_position=\"all\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\" link_description=\"Sunrise Rotary Foundation\" min_height=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2002|full\" borderradius=\"12\" max_width=\"300\" alt=\"Charity Donation from the Sunrise Rotary Foundation\" link=\"https://test-site.wlvrotary.org/sunrise-rotary-foundation/\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Sunrise Rotary Foundation</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Get to Know Our Club','','inherit','closed','closed','','2057-revision-v1','','','2023-01-10 04:41:16','2023-01-10 04:41:16','',2057,'https://test-site.wlvrotary.org/?p=2139',0,'revision','',0);
INSERT INTO `wpwlvrot_posts` VALUES (2140,1,'2023-01-10 04:41:16','2023-01-10 04:41:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"5\"]About Us[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]the Rotary Club of Westlake Village Sunrise[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise is comprised of neighbors, friends, leaders, and problem-solvers who see a world where people unite and take action to create lasting change – across the globe, in our communities, and in ourselves</p>\r\n<p>For nearly 40 years, our club has served the Conejo Valley Community, providing service to others, promoting integrity and goodwill through our fellowship of business, professional, and community leaders. Our club is part of a global network of 1.4 million members to:</p>\r\n<ul>\r\n<li>Promote Peace</li>\r\n<li>Fight Disease</li>\r\n<li>Provide Resources for Those in Need</li>\r\n<li>Support Children &amp; Education</li>\r\n<li>Grow Local Economies</li>\r\n<li>Protect the Environment</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2025|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-custom_color_2)\" gradient_start_color=\"var(--awb-custom_color_6)\" gradient_end_color=\"var(--awb-custom_color_2)\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2018|full\" aspect_ratio=\"1-1\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]What We Do[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<div>\r\n<p>Our club is very diversified in the services we provide, which includes both hands-on volunteer projects and donations to other nonprofit organizations.   We serve the local community by assisting youth organizations, seniors organizations, and helping those who need assistance with food.  We help those in crisis, such as those most affected by Covid 19.</p>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n<div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0\" margin_bottom=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Values<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><b>Fellowship</b>: We build lifelong relationships.</p>\r\n<p><b>Integrity</b>: We honor our commitments.</p>\r\n<p><b>Diversity</b>: We connect diverse perspectives.</p>\r\n<p><b>Service and leadership</b>: We use our leadership skills and professional expertise to solve social issues in our communities.</p>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" padding_top=\"75\" padding_bottom=\"75\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2047|full\" borderradius=\"12\" aspect_ratio=\"1-1\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2057\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" gradient_start_color=\"var(--awb-color1)\" gradient_end_color=\"var(--awb-color3)\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Our Leadership[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" columns=\"3\" rule_style=\"solid\" margin_bottom=\"75\"]\r\n<p><b>President</b><br />Michelle Ramsey</p>\r\n<p><b>President-Elect</b><br />Matt Midura</p>\r\n<p><b>Past President</b><br />Jim Wisdom</p>\r\n<p><b>Secretary</b><br />Marissa Hesler</p>\r\n<p><b>Treasurer</b><br />Marilyn Lippiatt</p>\r\n<p><b>Club Service</b><br />Matt Midura</p>\r\n<p><b>Youth Service</b><br />John Thevenot</p>\r\n<p><b>Community Service</b><br />Terry Moerler</p>\r\n<p><b>The Rotary Foundation</b><br />Nick Frankle</p>\r\n<p><b>International Service</b><br />Jon Morse</p>\r\n<p><b>Club Fundraising</b><br />Laura (Paine) Willis</p>\r\n<p><b>Vocational Service</b><br />Joe Pickard</p>\r\n<p><b>Membership</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Sunrise Foundation President</b><br />Don Martin</p>\r\n<p><b>Sunrise Foundation Treasurer</b><br />Ron Yamashiro</p>\r\n<p><b>Sunrise Foundation Member</b><br />Laura (Paine) Willis</p>\r\n<p><b>Member Recruitment</b><br />Ragnar Storm-Larsen</p>\r\n<p><b>Public Image</b><br />Randy Strong</p>\r\n<p><b>Fundraising </b><br />Randy Strong &amp; Laura Paine Willis</p>\r\n<p><b>Programs</b><br />Mike Willis, Laura Paine Willis, Randy Strong</p>\r\n<p><b>Photographer</b><br />Michael Zapf</p>\r\n<p><b>Environment</b><br />Gregory Patterson</p>\r\n<p><b>Awards</b><br />Michael Zapf</p>\r\n<p><b style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform);\">Sgt-At-Arms<br /></b><span style=\"color: var(--awb-text-color); font-family: var(--awb-text-font-family); font-size: var(--awb-font-size); font-style: var(--awb-text-font-style); letter-spacing: var(--awb-letter-spacing); text-align: var(--awb-content-alignment); text-transform: var(--awb-text-transform); background-color: var(--awb-bg-color);\">Daniel Harutunian</span></p>\r\n<p><b>Peace Chair</b><br />Jim Wisdom</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"2056\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" margin_top=\"50\" margin_bottom=\"50\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Club Governance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>The Rotary Club of Westlake Village Sunrise has established a set of governing documents.</p>\r\n<ul>\r\n<li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-by-laws.pdf\"><b>Rotary Club of Westlake Village Sunrise By-Laws</b></a></li>\r\n<li><a href=\"https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-continuing-resolutions.pdf\"><b>Rotary Club of Westlake Village Sunrise Resolutions</b></a></li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\" padding_bottom=\"75\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Connect with Us[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p style=\"color: var(--awb-color7);\">Want to know more? Interested in getting involved? Please feel free to reach out to us with any questions you might have. We look forward to connecting with you!</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-custom_color_2)\" facebook=\"#\" instagram=\"#\" twitter=\"#\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" linkedin=\"#\" icons_boxed=\"yes\" icons_boxed_radius=\"12\" font_size=\"24\" box_border_top=\"2\" box_border_right=\"2\" box_border_bottom=\"2\" box_border_left=\"2\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"1818\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','About Us','','inherit','closed','closed','','1829-revision-v1','','','2023-01-10 04:41:16','2023-01-10 04:41:16','',1829,'https://test-site.wlvrotary.org/?p=2140',0,'revision','',0),(2141,1,'2023-01-10 04:44:03','2023-01-10 04:44:03','','246339353_10158813569543983_4115597201873383475_n','','inherit','open','closed','','246339353_10158813569543983_4115597201873383475_n-2','','','2023-01-10 04:44:03','2023-01-10 04:44:03','',0,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n-1.jpg',0,'attachment','image/jpeg',0),(2144,1,'2023-01-10 04:48:29','2023-01-10 04:48:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong><br>\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\n</div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\n</div>\n<div>\n<p><strong>Family</strong></p>\n</div>\n<div></div>\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\n<div></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?</li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div><div><p><br></p></div>\n</div>[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Make A Difference<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region.<br></div>\n<div></div>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]&nbsp;\n\n&nbsp;\n\n&nbsp;[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\" max_width=\"600\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 04:48:29','2023-01-10 04:48:29','',1858,'https://test-site.wlvrotary.org/?p=2144',0,'revision','',0),(2145,1,'2023-01-10 04:48:42','2023-01-10 04:48:42','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<div>\n<p><strong>Networking</strong><br>\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\n<div></div>\n<div><strong>Community Service</strong></div>\n<div></div>\n<div>\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\n</div>\n<div></div>\n<div><strong>Friendship</strong></div>\n<div></div>\n<div>\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\n</div>\n<div>\n<p><strong>Family</strong></p>\n</div>\n<div></div>\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\n<div></div>\n<div></div>\n<div><strong>Ethics</strong></div>\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\n<div></div>\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\n<div>Of the things we think, say or do</div>\n<ol>\n<li>Is it the TRUTH?</li>\n<li>Is it FAIR to all concerned?</li>\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\n<li>Will it be BENEFICIAL to all concerned?</li>\n</ol>\n<div><strong>Leadership</strong></div>\n<div></div>\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div><div><p><br></p></div>\n</div>[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Make A Difference<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region. <br></div>\n<div></div>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]&nbsp;\n\n&nbsp;\n\n&nbsp;[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\" max_width=\"600\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 04:48:42','2023-01-10 04:48:42','',1858,'https://test-site.wlvrotary.org/?p=2145',0,'revision','',0),(2147,1,'2023-01-10 05:00:37','2023-01-10 05:00:37','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong><br />\r\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</div>\r\n<div>\r\n<p><strong>Family</strong></p>\r\n</div>\r\n<div></div>\r\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n<div>\r\n<p></p>\r\n</div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\"][fusion_builder_row][fusion_builder_column type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"2_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Make A Difference<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region. </div>\r\n<div></div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\" max_width=\"600\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 05:00:37','2023-01-10 05:00:37','',1858,'https://test-site.wlvrotary.org/?p=2147',0,'revision','',0),(2148,1,'2023-01-10 05:01:08','2023-01-10 05:01:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong><br />\r\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</div>\r\n<div>\r\n<p><strong>Family</strong></p>\r\n</div>\r\n<div></div>\r\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n<div>\r\n<p></p>\r\n</div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\"][fusion_builder_row][fusion_builder_column type=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"2_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Make A Difference<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region. </div>\r\n<div></div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_3\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 05:01:08','2023-01-10 05:01:08','',1858,'https://test-site.wlvrotary.org/?p=2148',0,'revision','',0),(2149,1,'2023-01-10 05:02:43','2023-01-10 05:02:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong><br />\r\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</div>\r\n<div>\r\n<p><strong>Family</strong></p>\r\n</div>\r\n<div></div>\r\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n<div>\r\n<p></p>\r\n</div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Make A Difference<br />[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region. </div>\r\n<div></div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 05:02:43','2023-01-10 05:02:43','',1858,'https://test-site.wlvrotary.org/?p=2149',0,'revision','',0),(2150,1,'2023-01-10 05:03:19','2023-01-10 05:03:19','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong><br />\r\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</div>\r\n<div>\r\n<p><strong>Family</strong></p>\r\n</div>\r\n<div></div>\r\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n<div>\r\n<p></p>\r\n</div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Don\'t miss out<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region. </div>\r\n<div></div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 05:03:19','2023-01-10 05:03:19','',1858,'https://test-site.wlvrotary.org/?p=2150',0,'revision','',0),(2151,1,'2023-01-10 05:03:48','2023-01-10 05:03:48','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"75\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Why Rotary[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<div>\r\n<p><strong>Networking</strong><br />\r\nAn original goal of Rotary was to allow club members to meet periodically and enlarge their circle of business and professional acquaintances. As members of the oldest service club in the world, Rotarians represent a cross-section of their community’s business owners, executives, managers, political leaders, and professionals – people who make decisions and influence policy.</p>\r\n<div></div>\r\n<div><strong>Community Service</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Club members have many opportunities for humanitarian service, both locally and internationally. Service programs address concerns such as health care, hunger, poverty, illiteracy, and the environment. Rotarians regularly experience the fulfillment that comes from giving back to the community.</p>\r\n</div>\r\n<div></div>\r\n<div><strong>Friendship</strong></div>\r\n<div></div>\r\n<div>\r\n<p>Rotary was founded on fellowship, a cornerstone that continues to attract members today. Rotarians enjoy camaraderie with like-minded professionals, and club projects provide opportunities to develop enduring friendships. Club members who travel have friendly contacts in almost every city in the world.</p>\r\n</div>\r\n<div>\r\n<p><strong>Family</strong></p>\r\n</div>\r\n<div></div>\r\n<p>Rotary sponsors some of the world’s largest exchange and educational programs. Rotary clubs provide innovative training opportunities and mentoring for young leaders, and they involve family members in a wide range of social and service activities.</p>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Ethics</strong></div>\r\n<div>Encouraging high ethical standards and respect for all worthy vocations has been a hallmark of Rotary from its earliest days.</div>\r\n<div></div>\r\n<div>In their business and professional lives, Rotarians abide by <strong>The Four-Way Test</strong>:</div>\r\n<div>Of the things we think, say or do</div>\r\n<ol>\r\n<li>Is it the TRUTH?</li>\r\n<li>Is it FAIR to all concerned?</li>\r\n<li>Will it build GOODWILL and BETTER FRIENDSHIPS?</li>\r\n<li>Will it be BENEFICIAL to all concerned?</li>\r\n</ol>\r\n<div><strong>Leadership</strong></div>\r\n<div></div>\r\n<div>Rotary is an organization of successful professionals. Team-building, fundraising, public speaking, planning, organization, and communication are just some of the leadership skills that club members can exercise and enhance. Being a Rotary leader provides further experience in motivating, inspiring, and guiding others.</div>\r\n<div>\r\n<p></p>\r\n</div>\r\n</div>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"none\" margin_medium=\"\" margin_small=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2074|full\" borderradius=\"12\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" spacing_medium=\"\" spacing_small=\"\" padding_dimensions_medium=\"\" padding_dimensions_small=\"\" border_sizes=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"\" pattern_bg_color=\"\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_custom_bg=\"\" mask_bg_color=\"\" mask_bg_accent_color=\"\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50\" padding_bottom=\"50\"][fusion_builder_row][fusion_builder_column type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50\" padding_bottom=\"50\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2049|full\" borderradius=\"12\" aspect_ratio=\"1-1\" aspect_ratio_position=\"13% 51%\"]https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" align_self=\"stretch\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" absolute_props=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Don\'t miss out<br>[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25\"]\r\n<div>Find out why The Rotary Club of Westlake Village Sunrise is the friendliest club in the region. </div>\r\n<div></div>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.wlvrotary.org/get-involved/\"]Get Involved Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why Rotary','','inherit','closed','closed','','1858-revision-v1','','','2023-01-10 05:03:48','2023-01-10 05:03:48','',1858,'https://test-site.wlvrotary.org/?p=2151',0,'revision','',0),(2153,1,'2023-01-10 05:22:39','2023-01-10 05:22:39','[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"stretch\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_color=\"rgba(255,255,255,0)\" gradient_end_color=\"rgba(255,255,255,0)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"30px\" padding_bottom=\"0px\" padding_left=\"30px\" margin_top=\"0px\" margin_bottom=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color4)\" z_index=\"99999\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl90b3BfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" admin_label=\"Secondary Top Bar\" padding_right_small=\"20px\" padding_left_small=\"20px\" background_color=\"var(--awb-custom_color_1)\" flex_column_spacing=\"0px\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"14\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"0px\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"https://www.facebook.com/rotarywestlakesunrise\" instagram=\"https://www.instagram.com/westlakevillagesunriserotary\" show_custom=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" email=\"info@wlvrotary.org\" alignment=\"right\" /][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"4_5\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" type_medium=\"2_3\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc( var(--awb-color1-a) - 85% ))\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"1px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 75%))\" border_bottom=\"0px\" border_right=\"1px\" border_top=\"0px\" border_left=\"1px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" breakpoint=\"custom\" custom_breakpoint=\"745\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-book-open fas\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"12px\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" fusion_font_variant_typography=\"400\" gap=\"0px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color4)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0\" items_padding_left=\"25px\" items_padding_right=\"25px\" items_padding_top=\"0\" justify_content=\"flex-end\" justify_title=\"flex-start\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-eyebrow\" min_height=\"45px\" mobile_active_bg=\"var(--awb-color2)\" mobile_active_color=\"var(--awb-color6)\" mobile_sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 90% ))\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color6)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"16px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"54\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"0px\" mobile_trigger_background_color=\"var(--awb-color1)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"var(--awb-color2)\" submenu_active_color=\"var(--awb-color7)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"0px\" submenu_border_radius_bottom_right=\"0px\" submenu_border_radius_top_left=\"0px\" submenu_border_radius_top_right=\"0px\" submenu_color=\"var(--awb-color7)\" submenu_font_size=\"14px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"var(--awb-color3)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" transition_time=\"300\" transition_type=\"fade\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"left\" mobile_icon_size=\"24\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sImJvcmRlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6Ii0yMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifSwiYWN0aXZlX2JnIjp7ImRhdGEiOiJjb2xvciIsInNvdXJjZSI6ImhlYWRlcl9iZ19jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCJ9LCJhY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbmF2X3R5cG9ncmFwaHkiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAifX0=\" color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 22%))\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center bottom\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" background_color=\"var(--awb-custom_color_2)\" admin_label=\"Header\" padding_bottom=\"30px\" z_index=\"9999\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-custom_color_3)\" border_sizes_bottom=\"2px\" border_color=\"var(--awb-custom_color_3)\" margin_top=\"0px\" margin_bottom=\"0psx\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"true\" animation_type=\"fade\" spacing_right_small=\"0px\" spacing_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"left\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" bordercolor=\"var(--awb-color3)\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" lightbox=\"no\" linktarget=\"_self\" max_width=\"231px\" stylecolor=\"var(--awb-color8)\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_overlay_color=\"var(--awb-color4)\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" image_id=\"1684|medium\"]https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x-300x88.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"1\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" margin_bottom_small=\"0px\" first=\"false\" animation_type=\"fade\" spacing_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_menu active_bg=\"rgba(0,0,0,0)\" active_border_color=\"var(--awb-color8)\" active_border_bottom=\"0\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" bg=\"rgba(0,0,0,0)\" border_bottom=\"0\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc( var(--awb-color8-a) - 97% ))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"custom\" custom_breakpoint=\"840\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fa-times fas\" collapsed_nav_icon_open=\"fa-bars fas\" collapsed_nav_text=\"Go to...\" color=\"var(--awb-color1)\" direction=\"row\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" fusion_font_variant_mobile_typography=\"400\" fusion_font_variant_submenu_typography=\"400\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color7)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"0px\" items_padding_right=\"0px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"global-main-menu\" min_height=\"50px\" mobile_sep_color=\"var(--awb-color1)\" mobile_bg=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"1em\" mobile_trigger_font_size=\"20px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"55\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc( var(--awb-color8-l) + 96% ),var(--awb-color8-a))\" submenu_active_color=\"var(--awb-color8)\" flyout_close_color=\"var(--awb-color7)\" flyout_active_close_color=\"var(--awb-color7)\" submenu_bg=\"var(--awb-color1)\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"6px\" submenu_border_radius_top_right=\"6px\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"13px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_space=\"0px\" submenu_text_transform=\"none\" text_transform=\"none\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center\" trigger_padding_bottom=\"6px\" trigger_padding_left=\"20px\" trigger_padding_right=\"0\" trigger_padding_top=\"6px\" mobile_justify_content=\"left\" main_justify_content=\"left\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" fusion_font_variant_typography=\"500\" active_color=\"var(--awb-custom_color_3)\" gap=\"42px\" font_size=\"17px\" mobile_active_color=\"var(--awb-color8)\" fusion_font_family_typography=\"Open Sans\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Homepage Header','','inherit','closed','closed','','690-revision-v1','','','2023-01-10 05:22:39','2023-01-10 05:22:39','',690,'https://test-site.wlvrotary.org/?p=2153',0,'revision','',0);
/*!40000 ALTER TABLE `wpwlvrot_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_smush_dir_images`
--

DROP TABLE IF EXISTS `wpwlvrot_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_smush_dir_images` (
  `id` mediumint(9) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  `path_hash` char(32) DEFAULT NULL,
  `resize` varchar(55) DEFAULT NULL,
  `lossy` varchar(55) DEFAULT NULL,
  `error` varchar(55) DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_smush_dir_images`
--

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

--
-- Table structure for table `wpwlvrot_term_relationships`
--

DROP TABLE IF EXISTS `wpwlvrot_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_term_relationships`
--

LOCK TABLES `wpwlvrot_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_term_relationships` DISABLE KEYS */;
INSERT INTO `wpwlvrot_term_relationships` VALUES (1,1,0),(8,6,0),(8,8,0),(9,2,0),(9,7,0),(10,7,0),(10,8,0),(11,3,0),(11,5,0),(12,3,0),(12,5,0),(13,3,0),(13,4,0),(14,2,0),(14,6,0),(15,6,0),(15,7,0),(16,2,0),(16,3,0),(17,4,0),(17,8,0),(18,6,0),(18,9,0),(19,6,0),(19,8,0),(20,6,0),(20,7,0),(21,6,0),(21,8,0),(23,10,0),(26,10,0),(27,10,0),(29,10,0),(30,10,0),(32,11,0),(33,11,0),(34,12,0),(37,12,0),(46,13,0),(48,13,0),(49,14,0),(52,15,0),(53,15,0),(54,15,0),(55,15,0),(56,15,0),(51,16,0),(58,10,0),(57,12,0),(60,12,0),(474,10,0),(718,10,0),(1068,10,0),(1260,10,0),(1279,10,0),(1549,29,0),(1550,27,0),(1551,16,0),(144,14,0),(239,12,0),(340,12,0),(690,14,0),(1341,14,0),(1404,12,0),(1443,12,0),(1912,40,0),(2056,23,0),(1561,27,0),(1562,27,0),(1563,27,0),(1434,28,0),(1435,28,0),(1436,28,0),(1437,28,0),(1438,25,0),(1439,25,0),(1440,25,0),(1441,25,0),(1572,26,0),(1574,26,0),(128,1,0),(124,19,0),(128,19,0),(128,20,0),(131,1,0),(249,1,0),(249,19,0),(249,20,0),(251,1,0),(1682,1,0),(253,1,0),(253,18,0),(253,19,0),(253,20,0),(253,21,0),(253,22,0),(253,17,0),(1691,30,0),(1844,31,0),(1855,31,0),(1895,33,0),(1883,31,0),(1727,32,0),(2057,23,0),(1739,30,0),(1743,33,0),(1758,34,0),(1760,35,0),(1764,36,0),(1768,36,0),(1769,37,0),(1770,36,0),(1772,38,0),(1773,38,0),(1774,34,0),(1777,38,0),(1778,36,0),(1779,38,0),(1780,38,0),(1781,38,0),(1782,39,0),(1783,36,0),(1784,38,0),(1785,36,0),(1786,38,0),(1787,38,0),(1788,34,0),(1804,38,0),(1807,38,0),(1808,38,0),(1838,31,0),(1856,31,0);
/*!40000 ALTER TABLE `wpwlvrot_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_term_taxonomy`
--

DROP TABLE IF EXISTS `wpwlvrot_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_term_taxonomy`
--

LOCK TABLES `wpwlvrot_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpwlvrot_term_taxonomy` VALUES (1,1,'category','',0,6),(2,2,'category','',0,3),(3,3,'category','',0,4),(4,4,'category','',0,2),(5,5,'category','',0,2),(6,6,'category','',0,7),(7,7,'category','',0,4),(8,8,'category','',0,5),(9,9,'category','',0,1),(10,10,'element_category','',0,11),(11,11,'fusion_tb_category','',0,2),(12,12,'fusion_tb_category','',0,8),(13,13,'nav_menu','',0,2),(14,14,'fusion_tb_category','',0,4),(15,15,'nav_menu','',0,5),(16,16,'fusion_tb_category','',0,2),(17,17,'category','',0,1),(18,18,'category','',0,1),(19,19,'category','',0,4),(20,20,'category','',0,3),(21,21,'category','',0,1),(22,22,'category','',0,1),(23,23,'element_category','',0,2),(24,24,'nav_menu','',0,0),(25,25,'nav_menu','',0,4),(26,26,'nav_menu','',0,2),(27,27,'nav_menu','',0,4),(28,28,'nav_menu','',0,4),(29,29,'nav_menu','',0,1),(40,40,'event_location','',0,0),(30,30,'nav_menu','',0,2),(31,31,'nav_menu','',0,5),(32,32,'wp_theme','',0,1),(33,33,'slide-page','',0,2),(34,34,'event_location','',0,3),(35,35,'event_location','',0,1),(36,36,'event_location','',0,6),(37,37,'event_location','',0,1),(38,38,'event_location','',0,12),(39,39,'event_location','',0,1);
/*!40000 ALTER TABLE `wpwlvrot_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_termmeta`
--

DROP TABLE IF EXISTS `wpwlvrot_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_termmeta`
--

LOCK TABLES `wpwlvrot_termmeta` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_termmeta` DISABLE KEYS */;
INSERT INTO `wpwlvrot_termmeta` VALUES (1,17,'_fusion','a:0:{}'),(2,18,'_fusion','a:3:{s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";}'),(3,19,'_fusion','a:3:{s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";}'),(4,20,'_fusion','a:3:{s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";}'),(5,21,'_fusion','a:3:{s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";}'),(6,22,'_fusion','a:3:{s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";}'),(7,23,'_fusion','a:0:{}'),(8,144,'_fusion','a:0:{}'),(9,683,'_fusion','a:0:{}'),(10,1700,'_fusion','a:0:{}'),(11,690,'_fusion','a:0:{}'),(12,1730,'_fusion','a:0:{}'),(13,1731,'_fusion','a:0:{}'),(14,1732,'_fusion','a:0:{}'),(15,33,'_fusion','a:20:{s:12:\"slider_width\";s:4:\"100%\";s:13:\"slider_height\";s:5:\"500px\";s:20:\"slider_content_width\";s:0:\"\";s:11:\"full_screen\";s:1:\"0\";s:8:\"parallax\";s:1:\"0\";s:16:\"slider_indicator\";s:0:\"\";s:22:\"slider_indicator_color\";s:0:\"\";s:10:\"nav_arrows\";s:1:\"1\";s:14:\"nav_arrow_size\";s:4:\"25px\";s:13:\"nav_box_width\";s:4:\"63px\";s:14:\"nav_box_height\";s:4:\"63px\";s:15:\"slideshow_speed\";s:4:\"5000\";s:4:\"loop\";s:1:\"1\";s:8:\"autoplay\";s:1:\"1\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:9:\"animation\";s:4:\"fade\";s:15:\"animation_speed\";s:3:\"500\";s:16:\"typo_sensitivity\";s:1:\"1\";s:11:\"typo_factor\";s:3:\"1.5\";}'),(16,1743,'_fusion','a:0:{}'),(17,1761,'_fusion','a:0:{}'),(18,1790,'_fusion','a:0:{}'),(19,1794,'_fusion','a:0:{}'),(20,1763,'_fusion','a:0:{}'),(21,1762,'_fusion','a:0:{}'),(22,1804,'_fusion','a:0:{}'),(23,1807,'_fusion','a:0:{}'),(24,1808,'_fusion','a:0:{}'),(25,1546,'_fusion','a:0:{}'),(26,1811,'_fusion','a:0:{}'),(27,1812,'_fusion','a:0:{}'),(28,51,'_fusion','a:0:{}'),(29,1818,'_fusion','a:0:{}'),(30,1829,'_fusion','a:0:{}'),(31,1566,'_fusion','a:0:{}'),(32,1840,'_fusion','a:0:{}'),(33,1847,'_fusion','a:0:{}'),(34,1851,'_fusion','a:0:{}'),(35,1858,'_fusion','a:0:{}'),(36,1895,'_fusion','a:0:{}'),(37,1773,'_fusion','a:0:{}'),(38,1784,'_fusion','a:0:{}');
/*!40000 ALTER TABLE `wpwlvrot_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_terms`
--

DROP TABLE IF EXISTS `wpwlvrot_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_terms`
--

LOCK TABLES `wpwlvrot_terms` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_terms` DISABLE KEYS */;
INSERT INTO `wpwlvrot_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Animals','animals',0),(3,'Architecture','architecture',0),(4,'Business','business',0),(5,'Fitness','fitness',0),(6,'Nutrition','nutrition',0),(7,'Real Estate','real-estate',0),(8,'Sports','sports',0),(9,'Technology','technology',0),(10,'post_cards','post_cards',0),(11,'page_title_bar','page_title_bar',0),(12,'content','content',0),(13,'Avada Setup Menu','avada-setup-menu',0),(14,'header','header',0),(15,'Footer Pages Menu 01 - Main','footer-pages-menu-01-main',0),(16,'footer','footer',0),(17,'Services','services',0),(18,'Carpentry','carpentry',0),(19,'Decorating','decorating',0),(20,'Electricity','electricity',0),(21,'Maintenance','maintenance',0),(22,'Plumbing','plumbing',0),(23,'sections','sections',0),(24,'Handyman Footer Left Menu','handyman-footer-left-menu',0),(25,'Handyman Footer Middle Menu','handyman-footer-middle-menu',0),(26,'Handyman Footer Right Menu','handyman-footer-right-menu',0),(27,'Handyman Footer Social','handyman-footer-social',0),(28,'Handyman Main Menu','handyman-main-menu',0),(29,'Handyman Top Menu','handyman-top-menu',0),(30,'global eyebrow','global-eyebrow',0),(31,'Global Main Menu','global-main-menu',0),(32,'Avada-Child-Theme','avada-child-theme',0),(33,'sunrise-homepage-hero','home-hero',0),(34,'Social','social',0),(35,'Los Robles Greens','los-robles-greens',0),(36,'Zoom','zoom',0),(37,'Goebel Adult Community Center, 1385 E Janss Rd, Thousand Oaks, CA 91362, USA','goebel-adult-community-center-1385-e-janss-rd-thousand-oaks-ca-91362-usa',0),(38,'Los Robles Greens 299 S Moorpark Rd Thousand Oaks CA 91361','los-robles-greens299-s-moorpark-rdthousand-oaks-ca-91361',0),(39,'America&#039;s Teaching Zoo, 7075 Campus Rd, Moorpark, CA 93021, USA','americas-teaching-zoo-7075-campus-rd-moorpark-ca-93021-usa',0),(40,'Julio&#039;s Agave Grill, 2809 Agoura Rd, Westlake Village, CA 91361, USA','julios-agave-grill-2809-agoura-rd-westlake-village-ca-91361-usa',0);
/*!40000 ALTER TABLE `wpwlvrot_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_usermeta`
--

DROP TABLE IF EXISTS `wpwlvrot_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_usermeta`
--

LOCK TABLES `wpwlvrot_usermeta` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_usermeta` DISABLE KEYS */;
INSERT INTO `wpwlvrot_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,'wpwlvrot_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpwlvrot_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"9ada83f41742a78344fcc606a1e6250f383888b57fe786b5022075f9dba57a3e\";a:4:{s:10:\"expiration\";i:1673377130;s:2:\"ip\";s:11:\"75.83.80.94\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Safari/605.1.15\";s:5:\"login\";i:1673204330;}s:64:\"6f7036bc15580cf533bd480aba05d2e02120a3eff15c68bca4d952e1c0a91db9\";a:4:{s:10:\"expiration\";i:1673495849;s:2:\"ip\";s:11:\"75.83.80.94\";s:2:\"ua\";s:84:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:108.0) Gecko/20100101 Firefox/108.0\";s:5:\"login\";i:1673323049;}}'),(17,1,'wpwlvrot_dashboard_quick_press_last_post_id','1959'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"75.83.80.0\";}'),(19,1,'wpwlvrot_user-settings','libraryContent=browse&editor=tinymce&imgsize=full'),(20,1,'wpwlvrot_user-settings-time','1672871747'),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:9:{i:0;s:29:\"add-post-type-avada_portfolio\";i:1;s:23:\"add-post-type-avada_faq\";i:2;s:19:\"add-post-type-slide\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:22:\"add-portfolio_category\";i:6;s:20:\"add-portfolio_skills\";i:7;s:18:\"add-portfolio_tags\";i:8;s:16:\"add-faq_category\";}'),(24,1,'_yoast_wpseo_profile_updated','1661304881'),(26,1,'wpwlvrot_yoast_notifications','a:4:{i:0;a:2:{s:7:\"message\";s:485:\"<p><strong>Huge SEO Issue: You&#039;re blocking access to robots.</strong> If you want search engines to show this site in their results, you must <a href=\"https://test-site.wlvrotary.org/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility. <button type=\"button\" id=\"robotsmessage-dismiss-button\" class=\"button-link hide-if-no-js\" data-nonce=\"32f16da632\">I don&#039;t want this site to show in the search results.</button></p>\";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-search-engines-discouraged\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$B2C8VB1hTUvdSYD6P.VRcm.lmby7Dy/\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:35:\"subscriptions@goodcausepartners.com\";s:8:\"user_url\";s:31:\"https://test-site.wlvrotary.org\";s:15:\"user_registered\";s:19:\"2022-08-23 23:32:57\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:21:\"wpwlvrot_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:93:{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:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:14:\"manage_eventon\";b:1;s:15:\"publish_eventon\";b:1;s:16:\"publish_eventons\";b:1;s:12:\"edit_eventon\";b:1;s:13:\"edit_eventons\";b:1;s:20:\"edit_others_eventons\";b:1;s:21:\"edit_private_eventons\";b:1;s:23:\"edit_published_eventons\";b:1;s:13:\"read_eventons\";b:1;s:21:\"read_private_eventons\";b:1;s:14:\"delete_eventon\";b:1;s:15:\"delete_eventons\";b:1;s:23:\"delete_private_eventons\";b:1;s:25:\"delete_published_eventons\";b:1;s:22:\"delete_others_eventons\";b:1;s:20:\"assign_eventon_terms\";b:1;s:20:\"manage_eventon_terms\";b:1;s:18:\"edit_eventon_terms\";b:1;s:20:\"delete_eventon_terms\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:230:\"It looks like you&#039;ve added a new type of content to your website. We recommend that you review your <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=wpseo_titles#top#post-types\">Search appearance settings</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"post-types-made-public\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$B2C8VB1hTUvdSYD6P.VRcm.lmby7Dy/\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:35:\"subscriptions@goodcausepartners.com\";s:8:\"user_url\";s:31:\"https://test-site.wlvrotary.org\";s:15:\"user_registered\";s:19:\"2022-08-23 23:32:57\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:21:\"wpwlvrot_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:94:{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:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:14:\"manage_eventon\";b:1;s:15:\"publish_eventon\";b:1;s:16:\"publish_eventons\";b:1;s:12:\"edit_eventon\";b:1;s:13:\"edit_eventons\";b:1;s:20:\"edit_others_eventons\";b:1;s:21:\"edit_private_eventons\";b:1;s:23:\"edit_published_eventons\";b:1;s:13:\"read_eventons\";b:1;s:21:\"read_private_eventons\";b:1;s:14:\"delete_eventon\";b:1;s:15:\"delete_eventons\";b:1;s:23:\"delete_private_eventons\";b:1;s:25:\"delete_published_eventons\";b:1;s:22:\"delete_others_eventons\";b:1;s:20:\"assign_eventon_terms\";b:1;s:20:\"manage_eventon_terms\";b:1;s:18:\"edit_eventon_terms\";b:1;s:20:\"delete_eventon_terms\";b:1;s:35:\"manage_custom_facebook_feed_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:2;a:2:{s:7:\"message\";s:223:\"It looks like you&#039;ve added a new taxonomy to your website. We recommend that you review your <a href=\"https://test-site.wlvrotary.org/wp-admin/admin.php?page=wpseo_titles#top#taxonomies\">Search appearance settings</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"taxonomies-made-public\";s:4:\"user\";r:133;s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:3;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:98;s:9:\"\0*\0reason\";s:20:\"taxonomy_made_public\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$B2C8VB1hTUvdSYD6P.VRcm.lmby7Dy/\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:35:\"subscriptions@goodcausepartners.com\";s:8:\"user_url\";s:31:\"https://test-site.wlvrotary.org\";s:15:\"user_registered\";s:19:\"2022-08-23 23:32:57\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:21:\"wpwlvrot_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:94:{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:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:14:\"manage_eventon\";b:1;s:15:\"publish_eventon\";b:1;s:16:\"publish_eventons\";b:1;s:12:\"edit_eventon\";b:1;s:13:\"edit_eventons\";b:1;s:20:\"edit_others_eventons\";b:1;s:21:\"edit_private_eventons\";b:1;s:23:\"edit_published_eventons\";b:1;s:13:\"read_eventons\";b:1;s:21:\"read_private_eventons\";b:1;s:14:\"delete_eventon\";b:1;s:15:\"delete_eventons\";b:1;s:23:\"delete_private_eventons\";b:1;s:25:\"delete_published_eventons\";b:1;s:22:\"delete_others_eventons\";b:1;s:20:\"assign_eventon_terms\";b:1;s:20:\"manage_eventon_terms\";b:1;s:18:\"edit_eventon_terms\";b:1;s:20:\"delete_eventon_terms\";b:1;s:35:\"manage_custom_facebook_feed_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(25,1,'nav_menu_recently_edited','30'),(29,1,'meta-box-order_fusion_icons','a:3:{s:4:\"side\";s:37:\"submitdiv,fusion-custom-icons-metabox\";s:6:\"normal\";s:7:\"slugdiv\";s:8:\"advanced\";s:0:\"\";}'),(30,1,'screen_layout_fusion_icons','2'),(31,1,'author_email',''),(32,1,'author_facebook',''),(33,1,'author_twitter',''),(34,1,'author_linkedin',''),(35,1,'author_dribble',''),(36,1,'author_whatsapp',''),(37,1,'author_custom',''),(38,1,'wpwlvrot_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:24:\"yoast-seo/document-panel\";}}s:9:\"_modified\";s:24:\"2023-01-09T06:11:12.446Z\";}'),(27,1,'wpwlvrot_media_library_mode','list'),(28,1,'bwg_photo_gallery','1');
/*!40000 ALTER TABLE `wpwlvrot_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_users`
--

DROP TABLE IF EXISTS `wpwlvrot_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_users`
--

LOCK TABLES `wpwlvrot_users` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_users` DISABLE KEYS */;
INSERT INTO `wpwlvrot_users` VALUES (1,'admin','$P$B2C8VB1hTUvdSYD6P.VRcm.lmby7Dy/','admin','subscriptions@goodcausepartners.com','https://test-site.wlvrotary.org','2022-08-23 23:32:57','',0,'admin');
/*!40000 ALTER TABLE `wpwlvrot_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_yoast_indexable`
--

DROP TABLE IF EXISTS `wpwlvrot_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext DEFAULT NULL,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `breadcrumb_title` text DEFAULT NULL,
  `post_status` varchar(20) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT 0,
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext DEFAULT NULL,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT 0,
  `is_robots_noindex` tinyint(1) DEFAULT 0,
  `is_robots_nofollow` tinyint(1) DEFAULT 0,
  `is_robots_noarchive` tinyint(1) DEFAULT 0,
  `is_robots_noimageindex` tinyint(1) DEFAULT 0,
  `is_robots_nosnippet` tinyint(1) DEFAULT 0,
  `twitter_title` text DEFAULT NULL,
  `twitter_image` longtext DEFAULT NULL,
  `twitter_description` longtext DEFAULT NULL,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text DEFAULT NULL,
  `open_graph_title` text DEFAULT NULL,
  `open_graph_description` longtext DEFAULT NULL,
  `open_graph_image` longtext DEFAULT NULL,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text DEFAULT NULL,
  `open_graph_image_meta` mediumtext DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT 1,
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=MyISAM AUTO_INCREMENT=208 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_yoast_indexable`
--

LOCK TABLES `wpwlvrot_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wpwlvrot_yoast_indexable` VALUES (1,'https://test-site.wlvrotary.org/author/admin/','45:4df6cdfbb8035e88e9e5b64fbb2bf7dc',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/73e60206a0d9b3173727cd8c6dd19b68?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/73e60206a0d9b3173727cd8c6dd19b68?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2022-08-24 01:34:01','2023-01-10 13:19:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-10 05:19:57','2021-01-22 10:57:27'),(164,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg','71:8b8265f34d1c99fafdaad4d3e9fded3e',2016,'post','attachment',1,0,NULL,NULL,'DSC02517','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg',NULL,'2016','attachment-image',NULL,NULL,NULL,'2016','attachment-image',NULL,NULL,3,NULL,'2023-01-09 04:00:14','2023-01-09 04:46:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:00:14','2023-01-09 04:00:14'),(4,'https://test-site.wlvrotary.org/contact/','40:96231c33f58a785acadaab7d5735d3c8',43,'post','page',1,0,NULL,NULL,'Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 01:34:01','2022-08-24 08:34:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:13:08','2022-08-24 00:13:07'),(5,'https://test-site.wlvrotary.org/contact-us/','43:528824ae38bdc8ff12854dc4a3f6c4a9',1568,'post','page',1,0,NULL,NULL,'Contact Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 01:34:01','2022-08-24 08:34:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-22 10:57:27','2021-01-22 10:57:27'),(153,'https://test-site.wlvrotary.org/event-location/julios-agave-grill-2809-agoura-rd-westlake-village-ca-91361-usa/','111:db31ecb72324f1456f36e7db8e77268b',40,'term','event_location',NULL,NULL,NULL,NULL,'Julio&#039;s Agave Grill, 2809 Agoura Rd, Westlake Village, CA 91361, USA',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-11-06 21:14:05','2022-11-07 05:14:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-06 21:14:05',NULL),(9,'https://test-site.wlvrotary.org/home/','37:b1e52f2adfa884e2a4519e53237b55cf',22,'post','page',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 01:34:01','2022-08-24 08:34:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:13:00','2022-08-24 00:12:59'),(11,'https://test-site.wlvrotary.org/?page_id=3','42:7251ef03f2b49f7b4cd76054491c47aa',3,'post','page',1,0,NULL,NULL,'Privacy Policy','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 01:34:01','2022-08-24 08:34:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-23 23:32:57','2022-08-23 23:32:57'),(12,'https://test-site.wlvrotary.org/privacy-policy-2/','49:c1b353b5622ee4f9df31a4b5d235f6f0',1571,'post','page',1,0,NULL,NULL,'Privacy Policy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 01:34:01','2022-08-24 08:34:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-22 10:58:18','2021-01-22 10:58:18'),(151,'https://test-site.wlvrotary.org/2021/01/28/plumbing-certification/','66:0257f0fe178a034cb2ae09065de09bbd',249,'post','post',1,0,NULL,NULL,'Plumbing Certification','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-03.jpg',NULL,'1370','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-03.jpg','1370','featured-image','{\"width\":1350,\"height\":715,\"filesize\":68400,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-03.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-03.jpg\",\"size\":\"full\",\"id\":1370,\"alt\":\"blog-03\",\"pixels\":965250,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-10-28 07:11:51','2022-10-28 14:11:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 11:54:23','2021-01-28 11:54:23'),(17,'https://test-site.wlvrotary.org/','32:d2c8422779e8f769e988e3e05225987e',1700,'post','page',1,0,NULL,NULL,'Home &#8211; Rotary Test','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,'2022-08-24 01:34:09','2023-01-10 13:19:58',1,NULL,NULL,NULL,NULL,0,13,2,'2023-01-10 05:19:57','2022-08-24 01:34:34'),(18,'https://test-site.wlvrotary.org/services/maintenance/','53:87aa0a80ebc0bbc9f702ded5b271fbc0',741,'post','avada_portfolio',1,0,NULL,NULL,'Maintenance','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg',NULL,'742','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg','742','featured-image','{\"width\":880,\"height\":519,\"filesize\":100911,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\",\"size\":\"full\",\"id\":742,\"alt\":\"service-04\",\"pixels\":456720,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-12 17:00:14','2021-10-12 17:00:14'),(19,'https://test-site.wlvrotary.org/services/plumbing/','50:ac50d24dcb653f7bf47ec9f65db13ec6',738,'post','avada_portfolio',1,0,NULL,NULL,'Plumbing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg',NULL,'739','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg','739','featured-image','{\"width\":1257,\"height\":742,\"filesize\":129469,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\",\"size\":\"full\",\"id\":739,\"alt\":\"service-03\",\"pixels\":932694,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-12 16:54:08','2021-10-12 16:54:08'),(20,'https://test-site.wlvrotary.org/services/decorating/','52:0576286eb8be4832e87c89d8e318bc43',732,'post','avada_portfolio',1,0,NULL,NULL,'Decorating','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg',NULL,'733','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg','733','featured-image','{\"width\":1257,\"height\":742,\"filesize\":162766,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\",\"size\":\"full\",\"id\":733,\"alt\":\"service-02\",\"pixels\":932694,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-12 16:23:14','2021-10-12 16:23:14'),(21,'https://test-site.wlvrotary.org/services/carpentry/','51:a02a342cb696c6abea74606722b8cf8e',714,'post','avada_portfolio',1,0,NULL,NULL,'Carpentry','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg',NULL,'716','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg','716','featured-image','{\"width\":1257,\"height\":742,\"filesize\":139432,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/service-01.jpg\",\"size\":\"full\",\"id\":716,\"alt\":\"service-01\",\"pixels\":932694,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-12 14:40:27','2021-10-12 14:40:27'),(22,'https://test-site.wlvrotary.org/2022/08/24/vivamus-ut-magna-turpis/','67:67bc4637935d2eaa6dc73069acc07fc3',10,'post','post',1,0,NULL,NULL,'Vivamus ut magna turpis','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(23,'https://test-site.wlvrotary.org/2022/08/24/proin-eget-tortor-risus-praesent-sapien-massa/','89:300d65f0f4ef7920f5ccbe5333d85348',21,'post','post',1,0,NULL,NULL,'Proin eget tortor risus praesent sapien massa','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(24,'https://test-site.wlvrotary.org/2022/08/24/aliquam-congue-semper-metus/','71:f35ced5e7be728fa7736b9dc0e3ca4a6',8,'post','post',1,0,NULL,NULL,'Aliquam congue semper metus','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(25,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg','73:fdcc162a7bb130328d837a6d6ccc04a1',742,'post','attachment',1,741,NULL,NULL,'Man with tool belt','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg',NULL,'742','attachment-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg','742','attachment-image','{\"width\":880,\"height\":519,\"filesize\":100911,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/service-04.jpg\",\"size\":\"full\",\"id\":742,\"alt\":\"service-04\",\"pixels\":456720,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-08-30 00:24:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:33:36','2021-10-12 16:59:37'),(26,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg','73:b53e5085fdc4039522ff57483409ee26',739,'post','attachment',1,738,NULL,NULL,'Plumber working','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg',NULL,'739','attachment-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg','739','attachment-image','{\"width\":1257,\"height\":742,\"filesize\":129469,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/service-03.jpg\",\"size\":\"full\",\"id\":739,\"alt\":\"service-03\",\"pixels\":932694,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-08-30 00:24:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:33:36','2021-10-12 16:53:50'),(27,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg','73:0afe3df7b319e0d3d25bbe7aec6c8bad',733,'post','attachment',1,732,NULL,NULL,'Painting wall','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg',NULL,'733','attachment-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg','733','attachment-image','{\"width\":1257,\"height\":742,\"filesize\":162766,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/service-02.jpg\",\"size\":\"full\",\"id\":733,\"alt\":\"service-02\",\"pixels\":932694,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-08-30 00:24:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:33:36','2021-10-12 16:22:21'),(28,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg','70:d5fc4a85123b9f8bbe2193714f600fe7',987,'post','attachment',1,0,NULL,NULL,'Handyman with tools','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg',NULL,'987','attachment-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg','987','attachment-image','{\"width\":642,\"height\":604,\"filesize\":79801,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/info-04.jpg\",\"size\":\"full\",\"id\":987,\"alt\":\"info-04\",\"pixels\":387768,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 22:33:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-14 16:31:12','2021-10-14 16:31:12'),(29,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg','70:c22ddea4d98799f9ca643e2743c69ff3',989,'post','attachment',1,0,NULL,NULL,'Wood working','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg',NULL,'989','attachment-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg','989','attachment-image','{\"width\":803,\"height\":756,\"filesize\":95349,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/10/info-05.jpg\",\"size\":\"full\",\"id\":989,\"alt\":\"info-05\",\"pixels\":607068,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 22:33:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-14 16:34:33','2021-10-14 16:34:33'),(30,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg','80:253c38955145afc0844592677cc636d0',7,'post','attachment',1,0,NULL,NULL,'Avada-placeholder','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(31,'https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg','84:290e645f2d74770a87c5c965c087daaa',505,'post','attachment',1,0,NULL,NULL,'Testimonial','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg',NULL,'505','attachment-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg','505','attachment-image','{\"width\":1129,\"height\":1129,\"filesize\":142901,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/04/testimonial-1-female.jpeg\",\"size\":\"full\",\"id\":505,\"alt\":\"testimonial-1-female\",\"pixels\":1274641,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-24 01:34:35','2022-09-18 23:42:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-04-01 13:43:33','2021-04-01 13:43:33'),(104,'https://test-site.wlvrotary.org/events/1804/','44:a67557cecfabea5fe1d750d66fb07438',1804,'post','ajde_events',1,0,NULL,NULL,'September Sunrise at Sunset','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-19 00:16:10','2022-09-19 07:37:06',1,NULL,NULL,NULL,NULL,0,0,2,'2022-09-19 00:37:06','2022-09-19 00:16:10'),(53,'https://test-site.wlvrotary.org/2022/08/24/cras-suscipit-ante-erat-eleifend/','76:ff22df090c0d3ff945dfa34595de8f70',9,'post','post',1,0,NULL,NULL,'Cras suscipit ante erat eleifend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,NULL,NULL,'2022-08-30 08:53:45','2022-08-30 15:53:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(32,'https://test-site.wlvrotary.org/','32:d2c8422779e8f769e988e3e05225987e',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,2,NULL,'2022-08-24 01:34:54','2023-01-10 13:19:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-10 05:19:57','2021-01-26 09:07:28'),(35,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png','79:cc9c3392a6fdacc9b6259efdc4f31923',1684,'post','attachment',1,0,NULL,NULL,'wlvrotary-logo2x','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png',NULL,'1684','attachment-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png','1684','attachment-image','{\"width\":414,\"height\":122,\"filesize\":12477,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2022/08/wlvrotary-logo2x.png\",\"size\":\"full\",\"id\":1684,\"alt\":\"\",\"pixels\":50508,\"type\":\"image/png\"}',NULL,2,NULL,'2022-08-24 01:41:46','2022-09-27 00:33:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 01:07:26','2022-08-24 01:07:26'),(162,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg','100:19c1ba76d24bcd3d596f39825be608ab',2014,'post','attachment',1,0,NULL,NULL,'C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg',NULL,'2014','attachment-image',NULL,NULL,NULL,'2014','attachment-image',NULL,NULL,2,NULL,'2023-01-09 03:59:43','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 03:59:43','2023-01-09 03:59:43'),(123,'https://test-site.wlvrotary.org/why-rotary/','43:5cc1113531a82ebbbce4920cf0002dff',1858,'post','page',1,0,NULL,NULL,'Why Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-09-27 02:30:09','2023-01-10 13:03:48',1,NULL,NULL,NULL,NULL,0,10,2,'2023-01-10 05:03:48','2022-09-27 02:41:22'),(117,'https://test-site.wlvrotary.org/our-causes/','43:48d2e8e724440c1b7e1a21519c4f3c40',1840,'post','page',1,0,NULL,NULL,'Our Causes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2022-09-27 01:22:35','2023-01-10 12:52:19',1,NULL,NULL,NULL,NULL,0,13,2,'2023-01-10 04:52:19','2022-09-27 01:23:12'),(127,'https://test-site.wlvrotary.org/category/services/','50:848426b285a4c217f80b80c8ad1f9e22',17,'term','category',NULL,NULL,NULL,NULL,'Services',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-27 20:36:58','2022-09-28 03:36:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 11:55:20','2021-01-28 11:55:20'),(163,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg','100:824ef5ba1401516ed9a7177ec99e6083',2015,'post','attachment',1,0,NULL,NULL,'619608EB-DE58-4CF7-ACDE-684778326DA2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg',NULL,'2015','attachment-image',NULL,NULL,NULL,'2015','attachment-image',NULL,NULL,3,NULL,'2023-01-09 03:59:57','2023-01-09 05:15:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 03:59:55','2023-01-09 03:59:55'),(43,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 04:17:12','2022-08-24 11:17:12',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(44,'https://test-site.wlvrotary.org/event-directory/','48:2f1f47a141204bc90d21df4922f9dfcb',1725,'post','page',1,0,NULL,NULL,'Events','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2022-08-24 04:31:39','2023-01-09 12:49:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:49:31','2022-08-24 04:31:39'),(45,'https://test-site.wlvrotary.org/events/','39:32f68ddfd643c5c9dce7f964082b1e00',NULL,'post-type-archive','ajde_events',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Events',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 04:35:32','2023-01-09 14:14:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:14:25',NULL),(46,'https://test-site.wlvrotary.org/services/','41:878ea244140585e38305a89be65167ad',NULL,'post-type-archive','avada_portfolio',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Portfolio',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 04:35:32','2022-08-24 11:35:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-12 17:00:14','2021-10-12 14:40:27'),(47,'https://test-site.wlvrotary.org/faq-items/','42:8dbe7a8dccba17efdb725ba1e63c342d',NULL,'post-type-archive','avada_faq',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','FAQs',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 04:35:32','2022-08-24 11:35:32',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(156,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero.jpg','90:542706ec0b5ce2809dd721ceace6b79b',1922,'post','attachment',1,1743,NULL,NULL,'sunrise-rotary-service-hero','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero.jpg',NULL,'1922','attachment-image',NULL,NULL,NULL,'1922','attachment-image',NULL,NULL,NULL,NULL,'2023-01-04 21:45:20','2023-01-05 05:45:20',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-01-04 21:45:20','2023-01-04 21:45:20'),(50,'https://test-site.wlvrotary.org/category/uncategorized/','55:de530442ec43a17ae2146df781926f0e',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-24 04:56:09','2022-08-24 11:56:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-23 23:32:57','2021-01-26 09:43:23'),(166,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg','112:392b8d8a906f808a236cd09e413d4ad7',2018,'post','attachment',1,0,NULL,NULL,'230420288_10158672174568983_2007906273844971703_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg',NULL,'2018','attachment-image',NULL,NULL,NULL,'2018','attachment-image',NULL,NULL,3,NULL,'2023-01-09 04:01:11','2023-01-09 04:31:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:01:11','2023-01-09 04:01:11'),(57,'https://test-site.wlvrotary.org/slide-page/home-hero/','53:29956a730a37b1885a83efca1ddb8b92',33,'term','slide-page',NULL,NULL,NULL,NULL,'sunrise-homepage-hero',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-18 21:51:02','2022-09-19 04:51:02',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(58,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/wlvsunrise-hero.jpg','78:6578745fdce94f138cbddd269e84ba3c',1742,'post','attachment',1,0,NULL,NULL,'wlvsunrise-hero','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/wlvsunrise-hero.jpg',NULL,'1742','attachment-image',NULL,NULL,NULL,'1742','attachment-image',NULL,NULL,NULL,NULL,'2022-09-18 21:52:04','2022-09-19 04:52:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 21:52:04','2022-09-18 21:52:04'),(59,'https://test-site.wlvrotary.org/slide/service-above-self/','57:d4c5970d8b9a31bbf12366cee82bc373',1743,'post','slide',1,0,NULL,NULL,'Service Above Self','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2-1.jpg',NULL,'1925','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2-1.jpg','1925','featured-image','{\"width\":1000,\"height\":500,\"filesize\":\"239668\",\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2-1.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2-1.jpg\",\"size\":\"full\",\"id\":1925,\"alt\":\"\",\"pixels\":500000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2022-09-18 21:52:34','2023-01-05 06:35:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-04 22:35:50','2022-09-18 21:53:28'),(60,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png','75:baa4eb9c441532d5b81cbf74887006f3',1750,'post','attachment',1,0,NULL,NULL,'square-image','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/square-image.png',NULL,'1750','attachment-image',NULL,NULL,NULL,'1750','attachment-image',NULL,NULL,0,NULL,'2022-09-18 22:24:34','2023-01-10 04:46:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 22:24:34','2022-09-18 22:24:34'),(155,'https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg','99:db4fb8fec6c08ac5da4130bda3ddf775',1917,'post','attachment',1,0,NULL,NULL,'e00f5922-442b-44a2-acef-4f7b4b7bea9b','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg',NULL,'1917','attachment-image',NULL,NULL,NULL,'1917','attachment-image',NULL,NULL,4,NULL,'2022-12-28 20:51:58','2023-01-09 15:57:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-12-28 20:51:58','2022-12-28 20:51:58'),(154,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1913','61:581945a727cf33506eea9d8f918650bc',1913,'post','ajde_events',0,0,NULL,NULL,'Executive Board Lunch','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-12-11 09:51:36','2022-12-11 17:51:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-7/','76:70230d3942356f0bb7cd15123b5d0111',1757,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:01:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:01:58','2022-09-18 23:11:49'),(65,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-8/','74:ebcbfcd05239d2724645a794a5adfd05',1758,'post','ajde_events',1,0,NULL,NULL,'Board Meeting (September)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:06:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:06:11','2022-09-18 23:18:04'),(66,'https://test-site.wlvrotary.org/event-location/social/','54:1250a40a466e279a78aea24e5543274c',34,'term','event_location',NULL,NULL,NULL,NULL,'Social',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:06:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:06:11',NULL),(67,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-9/','76:749d3112b92bceadb8145dfb63f00631',1759,'post','ajde_events',1,0,NULL,NULL,'General Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2022-09-19 06:18:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:18:04','2022-09-18 23:18:04'),(68,'https://test-site.wlvrotary.org/events/sunrise-at-sunset-wlv-sunrise-rotary-5/','78:0e1cf3cb3fabcbcf419f9d4ae2d224c8',1760,'post','ajde_events',1,0,NULL,NULL,'Sunrise at Sunset &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2022-09-19 06:11:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:49','2022-09-18 23:11:49'),(69,'https://test-site.wlvrotary.org/event-location/los-robles-greens/','65:8ba2f7e8c62508031d2a6dc88ebf848a',35,'term','event_location',NULL,NULL,NULL,NULL,'Los Robles Greens',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2022-09-19 06:11:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:49',NULL),(167,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg','112:46da38cb5cfd09972b42e9019283d743',2019,'post','attachment',1,0,NULL,NULL,'275178804_10159062672773983_1714578608944652308_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg',NULL,'2019','attachment-image',NULL,NULL,NULL,'2019','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:12:50','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:12:50','2023-01-09 04:12:50'),(150,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1911','61:690c73b44b0f458dd1a22ba521e903ef',1911,'post','ajde_events',0,0,NULL,NULL,'WLV Sunrise Holiday Party','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-25 10:27:13','2022-10-25 17:27:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-9/','74:6a403ed6c739183a85519c43e8d6f695',1764,'post','ajde_events',1,0,NULL,NULL,'Board Meeting (November)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:14:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:14:11','2022-09-18 23:18:04'),(74,'https://test-site.wlvrotary.org/event-location/zoom/','52:68b568e0997ae593e2558b092bb95db6',36,'term','event_location',NULL,NULL,NULL,NULL,'Zoom',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:14:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:14:25',NULL),(75,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-10/','77:270cb98dbcdaea134c16980d6145fc95',1765,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:13:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:13:28','2022-09-18 23:18:04'),(76,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-11/','77:85fc82713d549b98b94dbaf3b0bea7f7',1766,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:13:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:13:13','2022-09-18 23:18:04'),(77,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-8/','76:1796b1c389109fe8e99798180a8c598e',1767,'post','ajde_events',1,0,NULL,NULL,'General Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2022-09-19 06:11:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:49','2022-09-18 23:11:49'),(78,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-7/','74:83e38e0799b22fffd711c840a3e27a0e',1768,'post','ajde_events',1,0,NULL,NULL,'Board Meeting (December)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:14:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:14:25','2022-09-18 23:11:49'),(79,'https://test-site.wlvrotary.org/events/goebal-center-holiday-breakfast-wlv-sunrise-rotary/','90:41b889edfb7087f89774436b235e2bef',1769,'post','ajde_events',1,0,NULL,NULL,'Goebal Center holiday Breakfast &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2022-09-19 06:11:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:49','2022-09-18 23:11:49'),(80,'https://test-site.wlvrotary.org/event-location/goebel-adult-community-center-1385-e-janss-rd-thousand-oaks-ca-91362-usa/','120:a72ad3447caf1c779b5d9ad71f13ceb2',37,'term','event_location',NULL,NULL,NULL,NULL,'Goebel Adult Community Center, 1385 E Janss Rd, Thousand Oaks, CA 91362, USA',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2022-09-19 06:11:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:49',NULL),(81,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-6/','74:43fca88dd3ebc92915ad98ff04a48878',1770,'post','ajde_events',1,0,NULL,NULL,'Board Meeting (January)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:13:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:13:49','2022-09-18 23:11:49'),(82,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-12/','77:c39835150284d36c7bb4b6ad3c1e28c7',1771,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:02:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:02:59','2022-09-18 23:18:04'),(83,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-13/','77:82a43431ea9df7797c80e97faee5ce69',1772,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:06:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:06:37','2022-09-18 23:18:04'),(84,'https://test-site.wlvrotary.org/event-location/los-robles-greens299-s-moorpark-rdthousand-oaks-ca-91361/','104:354e276b5a12eca8c80faca53a10e7e1',38,'term','event_location',NULL,NULL,NULL,NULL,'Los Robles Greens 299 S Moorpark Rd Thousand Oaks CA 91361',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:12:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:12:47',NULL),(85,'https://test-site.wlvrotary.org/events/sunrise-at-sunset-wlv-sunrise-rotary/','76:5b81c6ad2ef4e6092335583d704493c2',1773,'post','ajde_events',1,0,NULL,NULL,'Sunrise at Sunset Meeting (January)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2023-01-09 14:09:23',1,NULL,NULL,NULL,NULL,0,0,2,'2023-01-09 06:09:22','2022-09-18 23:18:04'),(86,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary/','72:c0fcf663939ebb46e6410477855256f2',1774,'post','ajde_events',1,0,NULL,NULL,'Board Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:43','2022-09-19 06:18:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:18:04','2022-09-18 23:18:04'),(87,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary/','74:2f8b28eac86e7f8ad07e7b47c067ec1c',1775,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2023-01-09 14:06:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:06:47','2022-09-18 23:18:04'),(88,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-2/','76:b7b84f0b2bd0207c34e222238eeca7bf',1776,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2023-01-09 14:07:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:07:06','2022-09-18 23:11:48'),(89,'https://test-site.wlvrotary.org/events/sunrise-at-sunset-wlv-sunrise-rotary-2/','78:ba545150623c46f720b56422ef40d4cd',1777,'post','ajde_events',1,0,NULL,NULL,'Sunrise at Sunset (February)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2023-01-09 14:12:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:12:11','2022-09-18 23:11:48'),(90,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-5/','74:8ea69f45aa069d497005e9e3c3c67bdd',1778,'post','ajde_events',1,0,NULL,NULL,'Board Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48','2022-09-18 23:11:48'),(91,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-5/','76:a607f9061e353e201651573d83e824d9',1779,'post','ajde_events',1,0,NULL,NULL,'General Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48','2022-09-18 23:11:48'),(92,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-4/','76:908a3162cdd499964de3810b8dac0dcc',1780,'post','ajde_events',1,0,NULL,NULL,'General Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48','2022-09-18 23:11:48'),(93,'https://test-site.wlvrotary.org/events/sunrise-at-sunset-wlv-sunrise-rotary-4/','78:ff16d6a688431d056abfa788a666c80b',1781,'post','ajde_events',1,0,NULL,NULL,'Sunrise at Sunset (March)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2023-01-09 14:08:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:08:39','2022-09-18 23:11:48'),(94,'https://test-site.wlvrotary.org/events/moorpark-teaching-zoo-wlv-sunrise-rotary/','80:cf939d3c3283744634250c21ee95a33a',1782,'post','ajde_events',1,0,NULL,NULL,'Moorpark Teaching Zoo- WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48','2022-09-18 23:11:48'),(95,'https://test-site.wlvrotary.org/event-location/americas-teaching-zoo-7075-campus-rd-moorpark-ca-93021-usa/','106:6dcbd558a3958d4bc60b28c344a5aebe',39,'term','event_location',NULL,NULL,NULL,NULL,'America&#039;s Teaching Zoo, 7075 Campus Rd, Moorpark, CA 93021, USA',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48',NULL),(96,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-4/','74:59c1aaf4a99c5ea350b022151c2ee889',1783,'post','ajde_events',1,0,NULL,NULL,'Board Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48','2022-09-18 23:11:48'),(97,'https://test-site.wlvrotary.org/events/sunrise-at-sunset-wlv-sunrise-rotary-3/','78:dd9e26194a6c1a3cfcdbfc7bff832cd6',1784,'post','ajde_events',1,0,NULL,NULL,'Sunrise at Sunset (April)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2023-01-09 14:11:32',1,NULL,NULL,NULL,NULL,0,0,2,'2023-01-09 06:11:32','2022-09-18 23:11:48'),(98,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-3/','74:4a438c7412c90dc5e169853687fdfe57',1785,'post','ajde_events',1,0,NULL,NULL,'Board Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48','2022-09-18 23:11:48'),(99,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-6/','76:8a66996be456307d8bda584f7138ea84',1786,'post','ajde_events',1,0,NULL,NULL,'General Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:49','2022-09-18 23:11:49'),(100,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-3/','76:deb2276034213da36d6df922645c8bf4',1787,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2023-01-09 14:12:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:12:47','2022-09-18 23:11:48'),(101,'https://test-site.wlvrotary.org/events/board-meeting-wlv-sunrise-rotary-2/','74:d97f5df09fe3f7d627880566de3fe049',1788,'post','ajde_events',1,0,NULL,NULL,'Board Meeting &#8211; WLV Sunrise Rotary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-18 23:01:44','2022-09-19 06:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-18 23:11:48','2022-09-18 23:11:48'),(200,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg','70:ca7e5d4172b0cc64639a574b239a1a59',2094,'post','attachment',1,0,NULL,NULL,'disease','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg',NULL,'2094','attachment-image',NULL,NULL,NULL,'2094','attachment-image',NULL,NULL,1,NULL,'2023-01-09 06:28:17','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:28:17','2023-01-09 06:28:17'),(165,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg','73:24ed1205706558fd2d68c9f4b6ed583b',2017,'post','attachment',1,0,NULL,NULL,'hitv-brats','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg',NULL,'2017','attachment-image',NULL,NULL,NULL,'2017','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:00:27','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:00:27','2023-01-09 04:00:27'),(105,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-14/','77:ec52c96b87b0e89c481d18f142bd6060',1807,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-19 00:30:15','2023-01-09 14:00:58',1,NULL,NULL,NULL,NULL,0,0,2,'2023-01-09 06:00:58','2022-09-19 00:30:19'),(106,'https://test-site.wlvrotary.org/events/general-meeting-wlv-sunrise-rotary-15/','77:458af94c9420e1135bf9d04cb98aed6b',1808,'post','ajde_events',1,0,NULL,NULL,'General Club Meeting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-19 00:31:52','2023-01-09 14:01:43',1,NULL,NULL,NULL,NULL,0,0,2,'2023-01-09 06:01:43','2022-09-19 00:31:56'),(149,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1910','61:0858062ffea8c7d1b8d53fe587538e9d',1910,'post','ajde_events',0,0,NULL,NULL,'HITV Wrapping Boxes at Art Trek','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-25 10:27:13','2022-10-25 17:27:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(148,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1909','61:e6a0cca01d4943a01679b50f28ec40b2',1909,'post','ajde_events',0,0,NULL,NULL,'Rotary Clubs of Westlake Village Meeting','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-24 05:05:51','2022-10-24 12:05:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(160,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/sunrise-rotary-collaboration-hero.jpg','96:37dfa4cbd58fa0048ad31d1841662d01',1926,'post','attachment',1,1895,NULL,NULL,'sunrise-rotary-collaboration-hero','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/sunrise-rotary-collaboration-hero.jpg',NULL,'1926','attachment-image',NULL,NULL,NULL,'1926','attachment-image',NULL,NULL,NULL,NULL,'2023-01-04 22:55:35','2023-01-05 06:55:35',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-01-04 22:55:35','2023-01-04 22:55:35'),(112,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg','77:e28325784f02cf3230c6aa27da863e39',1822,'post','attachment',1,0,NULL,NULL,'vertical-image','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/vertical-image.jpg',NULL,'1822','attachment-image',NULL,NULL,NULL,'1822','attachment-image',NULL,NULL,0,NULL,'2022-09-20 03:42:29','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-20 03:42:29','2022-09-20 03:42:29'),(113,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg','78:3c5465046731c2cdd76dd085d1e96ce6',1823,'post','attachment',1,0,NULL,NULL,'rectangle-image','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/rectangle-image.jpg',NULL,'1823','attachment-image',NULL,NULL,NULL,'1823','attachment-image',NULL,NULL,0,NULL,'2022-09-20 03:42:31','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-20 03:42:31','2022-09-20 03:42:31'),(185,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/HolidayVillage-12-12-21-506.jpg','90:8c0b5557db93a0b5dde772ba934e8e81',2045,'post','attachment',1,0,NULL,NULL,'HolidayVillage 12-12-21 -506','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/HolidayVillage-12-12-21-506.jpg',NULL,'2045','attachment-image',NULL,NULL,NULL,'2045','attachment-image',NULL,NULL,NULL,NULL,'2023-01-09 04:33:54','2023-01-09 12:33:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:33:54','2023-01-09 04:33:54'),(114,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1827','61:2928a0d15e7b0c0b7648bc29c3445b7e',1827,'post','ajde_events',0,0,NULL,NULL,'10/28/2022','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-21 04:28:18','2022-09-21 11:28:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'https://test-site.wlvrotary.org/about-us/','41:0862c0880d392aa46e8c46593ec44916',1829,'post','page',1,0,NULL,NULL,'About Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,2,NULL,'2022-09-27 00:31:21','2023-01-10 12:41:16',1,NULL,NULL,NULL,NULL,0,9,2,'2023-01-10 04:41:16','2022-09-27 00:31:57'),(161,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg','71:bf277f2fb47acadb99b952854616e233',2002,'post','attachment',1,0,NULL,NULL,'donation','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg',NULL,'2002','attachment-image',NULL,NULL,NULL,'2002','attachment-image',NULL,NULL,2,NULL,'2023-01-09 00:59:31','2023-01-09 05:02:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 00:59:31','2023-01-09 00:59:31'),(158,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2.jpg','91:9c5ab9c1732bddf7e20996dc082b91bf',1924,'post','attachment',1,1743,NULL,NULL,'sunrise-rotary-service-hero2','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2.jpg',NULL,'1924','attachment-image',NULL,NULL,NULL,'1924','attachment-image',NULL,NULL,NULL,NULL,'2023-01-04 22:35:18','2023-01-05 06:35:18',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-01-04 22:35:18','2023-01-04 22:35:18'),(119,'https://test-site.wlvrotary.org/sunrise-rotary-foundation/','58:ea202fbb4f0dd7bf7e601c75461cabaa',1847,'post','page',1,0,NULL,NULL,'Sunrise Rotary Foundation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,NULL,'2022-09-27 01:50:20','2023-01-09 13:13:57',1,NULL,NULL,NULL,NULL,0,11,2,'2023-01-09 05:13:57','2022-09-27 01:50:56'),(120,'https://test-site.wlvrotary.org/get-involved/','45:af89714c3a1a3733b4a05a0eafe61861',1851,'post','page',1,0,NULL,NULL,'Get Involved','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2022-09-27 01:57:21','2023-01-09 12:54:01',1,NULL,NULL,NULL,NULL,0,5,2,'2023-01-09 04:54:01','2022-09-27 01:57:48'),(159,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2-1.jpg','93:a436eda5d4df174ec7b2b65a30ffcf22',1925,'post','attachment',1,1743,NULL,NULL,'sunrise-rotary-service-hero2','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero2-1.jpg',NULL,'1925','attachment-image',NULL,NULL,NULL,'1925','attachment-image',NULL,NULL,NULL,NULL,'2023-01-04 22:35:37','2023-01-05 06:35:37',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-01-04 22:35:37','2023-01-04 22:35:37'),(157,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero-1.jpg','92:7f40ad4079c60b4050a7401d8252af8c',1923,'post','attachment',1,1743,NULL,NULL,'sunrise-rotary-service-hero','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/09/sunrise-rotary-service-hero-1.jpg',NULL,'1923','attachment-image',NULL,NULL,NULL,'1923','attachment-image',NULL,NULL,NULL,NULL,'2023-01-04 21:48:04','2023-01-05 05:48:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-01-04 21:48:04','2023-01-04 21:48:04'),(152,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1912','61:05b5383b75bb1d4de759ee5be098b7aa',1912,'post','ajde_events',0,0,NULL,NULL,'New Member Social','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-06 21:14:05','2022-11-07 05:14:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'https://test-site.wlvrotary.org/?page_id=1877','45:95025d5099fc51a3e66f836313abecce',1877,'post','page',1,0,NULL,NULL,'Our Causes','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-27 02:47:23','2022-09-27 09:47:23',1,NULL,NULL,NULL,NULL,0,13,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'https://test-site.wlvrotary.org/2022/08/24/curabitur-arcu-erat-accumsan-id-imperdiet-et-porttitor/','98:5164f00f2b63297ee5cf22ddc5879ba1',19,'post','post',1,0,NULL,NULL,'Curabitur arcu erat, accumsan id imperdiet et, porttitor','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,NULL,NULL,'2022-09-27 22:41:31','2022-09-28 05:41:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(129,'https://test-site.wlvrotary.org/category/nutrition/','51:2b19857ee0dbaf3d9c8b05a0f1ae8c0b',6,'term','category',NULL,NULL,NULL,NULL,'Nutrition',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-28 08:00:09','2022-09-28 15:00:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(130,'https://test-site.wlvrotary.org/2022/08/24/fusce-cursus-dolor-sit-amet/','71:91f99be45bfdd577f97f4b9643706f21',11,'post','post',1,0,NULL,NULL,'Fusce cursus dolor sit amet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,NULL,NULL,'2022-09-28 08:16:40','2022-09-28 15:16:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(131,'https://test-site.wlvrotary.org/category/plumbing/','50:dc579d6a1d0bf14be309b891c6ca5815',22,'term','category',NULL,NULL,NULL,NULL,'Plumbing',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-28 08:45:17','2022-09-28 15:45:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 11:55:20','2021-01-28 11:55:20'),(132,'https://test-site.wlvrotary.org/2021/01/28/staining-your-decking/','65:95d44b7a4d6612333a6608b97ca40802',253,'post','post',1,0,NULL,NULL,'Staining Your Decking','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-02.jpg',NULL,'1369','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-02.jpg','1369','featured-image','{\"width\":1500,\"height\":794,\"filesize\":298198,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-02.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-02.jpg\",\"size\":\"full\",\"id\":1369,\"alt\":\"blog-02\",\"pixels\":1191000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-09-28 09:48:51','2022-09-28 16:48:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 11:55:20','2021-01-28 11:55:20'),(133,'https://test-site.wlvrotary.org/category/sports/','48:185a363ee581ed03c7b04efb3ce1637d',8,'term','category',NULL,NULL,NULL,NULL,'Sports',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-28 21:46:54','2022-09-29 04:46:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(134,'https://test-site.wlvrotary.org/2022/08/24/nulla-porttitor-accumsan-tincidunt-mauris-blandit/','93:042e54ba6f0d5c8684ca7ca7c200cc61',15,'post','post',1,0,NULL,NULL,'Nulla porttitor accumsan tincidunt mauris blandit.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,NULL,NULL,'2022-09-29 10:43:06','2022-09-29 17:43:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(135,'https://test-site.wlvrotary.org/2022/08/24/aliquam-luctus-sem-massa/','68:1c6c43b326163514bba911020b39a7d1',12,'post','post',1,0,NULL,NULL,'Aliquam luctus sem massa','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,NULL,NULL,'2022-09-29 11:07:34','2022-09-29 18:07:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(136,'https://test-site.wlvrotary.org/category/architecture/','54:b3e582e47846bd3c1b7789b206d9b937',3,'term','category',NULL,NULL,NULL,NULL,'Architecture',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-29 20:13:32','2022-09-30 03:13:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(137,'https://test-site.wlvrotary.org/2022/08/24/how-to-use-instagram-feeds-to-boost-traffic-and-conversions/','103:a919c1e55b903127aeefd970dfb31ede',17,'post','post',1,0,NULL,NULL,'How to Use Instagram Feeds to Boost Traffic and Conversions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,NULL,NULL,'2022-09-30 04:18:33','2022-09-30 11:18:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(138,'https://test-site.wlvrotary.org/2022/08/24/curabitur-arcu-erat-accumsan-id-imperdiet-et-porttitor-2/','100:c8089b8c113b4ad34d821f7fa7bb43be',20,'post','post',1,0,NULL,NULL,'Curabitur arcu erat, accumsan id imperdiet et, porttitor','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/08/avada-placeholder.svg',NULL,'7','featured-image',NULL,NULL,NULL,'7','featured-image',NULL,NULL,NULL,NULL,'2022-09-30 05:20:32','2022-09-30 12:20:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(139,'https://test-site.wlvrotary.org/2021/01/26/home-office-decor/','61:10ebe1eaa5fbf6c126b2735ef4cc417d',131,'post','post',1,0,NULL,NULL,'Home Office Decor','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-04.jpg',NULL,'1374','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-04.jpg','1374','featured-image','{\"width\":1215,\"height\":644,\"filesize\":145679,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-04.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-04.jpg\",\"size\":\"full\",\"id\":1374,\"alt\":\"blog-04\",\"pixels\":782460,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-09-30 18:36:36','2022-10-01 01:36:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-26 09:47:22','2021-01-26 09:47:22'),(140,'https://test-site.wlvrotary.org/slide/service-above-self-2/','59:c2273c245fc2cf8f08793c80d40b564c',1895,'post','slide',1,0,NULL,NULL,'Serving Locally &#038; Globally','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/sunrise-rotary-collaboration-hero.jpg',NULL,'1926','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/sunrise-rotary-collaboration-hero.jpg','1926','featured-image','{\"width\":1000,\"height\":500,\"filesize\":\"267671\",\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2022/10/sunrise-rotary-collaboration-hero.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2022/10/sunrise-rotary-collaboration-hero.jpg\",\"size\":\"full\",\"id\":1926,\"alt\":\"\",\"pixels\":500000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2022-10-04 20:11:40','2023-01-10 07:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 23:20:20','2022-10-04 20:11:40'),(141,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master.png','79:95ee007cc47c892158cde6f39e4f641b',1899,'post','attachment',1,0,NULL,NULL,'hitv-logo-master','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master.png',NULL,'1899','attachment-image',NULL,NULL,NULL,'1899','attachment-image',NULL,NULL,1,NULL,'2022-10-04 20:38:10','2022-10-04 20:38:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-10-04 20:38:10','2022-10-04 20:38:10'),(142,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2.png','81:71c88c688b070de2e153429c4aa15494',1901,'post','attachment',1,0,NULL,NULL,'hitv-social-std-v2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2.png',NULL,'1901','attachment-image',NULL,NULL,NULL,'1901','attachment-image',NULL,NULL,1,NULL,'2022-10-04 20:43:58','2022-10-04 20:45:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-10-04 20:43:58','2022-10-04 20:43:58'),(143,'https://test-site.wlvrotary.org/2021/01/26/planning-the-perfect-patio/','70:e9b13705edadf1f286bacbf6b4136169',124,'post','post',1,0,NULL,NULL,'Planning The Perfect Patio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-07.jpg',NULL,'1382','featured-image',NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-07.jpg','1382','featured-image','{\"width\":1220,\"height\":646,\"filesize\":152989,\"url\":\"https://test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-07.jpg\",\"path\":\"/home/midura5/public_html/test-site.wlvrotary.org/wp-content/uploads/2021/01/blog-07.jpg\",\"size\":\"full\",\"id\":1382,\"alt\":\"blog-07\",\"pixels\":788120,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-10-05 09:56:18','2022-10-05 16:56:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-26 09:07:28','2021-01-26 09:07:28'),(144,'https://test-site.wlvrotary.org/category/maintenance/','53:48a9099aafb79b6b1c23340d70fce500',21,'term','category',NULL,NULL,NULL,NULL,'Maintenance',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-05 10:54:53','2022-10-05 17:54:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 11:55:20','2021-01-28 11:55:20'),(145,'https://test-site.wlvrotary.org/category/real-estate/','53:3971485e2be8810d950f00158849c322',7,'term','category',NULL,NULL,NULL,NULL,'Real Estate',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-05 10:55:13','2022-10-05 17:55:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-24 00:12:55','2022-08-24 00:12:55'),(146,'https://test-site.wlvrotary.org/category/decorating/','52:12a7494b480eb3018847822f9cfca989',19,'term','category',NULL,NULL,NULL,NULL,'Decorating',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-14 11:12:04','2022-10-14 18:12:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 11:55:20','2021-01-26 09:07:28'),(147,'https://test-site.wlvrotary.org/?post_type=ajde_events&p=1904','61:86e5084ded22f5ba1cbb0bdcc7e94237',1904,'post','ajde_events',0,0,NULL,NULL,'District Governor Scott Philips Attends','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-17 06:43:17','2022-10-17 13:43:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(168,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg','112:1ada08a31dfb6b90d4a841b7f7cfc30f',2020,'post','attachment',1,0,NULL,NULL,'301991414_10159385165463983_7662799712929491455_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg',NULL,'2020','attachment-image',NULL,NULL,NULL,'2020','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:13:01','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:13:01','2023-01-09 04:13:01'),(169,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg','112:6cb5621dbacc6581d595a1f605bdcb71',2021,'post','attachment',1,0,NULL,NULL,'307095892_10159387979733983_7386056637225188270_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg',NULL,'2021','attachment-image',NULL,NULL,NULL,'2021','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:13:11','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:13:11','2023-01-09 04:13:11'),(170,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg','112:96d380dbc65fac5acedf85afb7f7c16b',2022,'post','attachment',1,0,NULL,NULL,'312885301_10159482823458983_5084243080734781731_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg',NULL,'2022','attachment-image',NULL,NULL,NULL,'2022','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:13:23','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:13:23','2023-01-09 04:13:23'),(171,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg','112:9691cba48b2bfe123dcf4b0e0f5016de',2023,'post','attachment',1,0,NULL,NULL,'318727845_10159613300583983_5045946195972474127_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg',NULL,'2023','attachment-image',NULL,NULL,NULL,'2023','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:13:33','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:13:33','2023-01-09 04:13:33'),(172,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg','112:182d1fce25f366b6b39307adf95801cf',2024,'post','attachment',1,0,NULL,NULL,'318582538_10159613301998983_1987186392258756093_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg',NULL,'2024','attachment-image',NULL,NULL,NULL,'2024','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:13:46','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:13:46','2023-01-09 04:13:46'),(173,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg','112:f06c872107f0a25986025448f99605e5',2025,'post','attachment',1,0,NULL,NULL,'318757345_10159613302743983_7713379438399103532_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg',NULL,'2025','attachment-image',NULL,NULL,NULL,'2025','attachment-image',NULL,NULL,3,NULL,'2023-01-09 04:13:56','2023-01-09 04:30:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:13:56','2023-01-09 04:13:56'),(174,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg','110:90db9f7dcf09430c0cd46c8642e9952f',2026,'post','attachment',1,0,NULL,NULL,'318557333_469677518613136_2605719804160828751_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg',NULL,'2026','attachment-image',NULL,NULL,NULL,'2026','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:14:06','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:14:06','2023-01-09 04:14:06'),(175,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg','110:ae9f67b213fcf4989f9d7350689cac71',2027,'post','attachment',1,0,NULL,NULL,'317698060_469521041962117_5593228658645240584_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg',NULL,'2027','attachment-image',NULL,NULL,NULL,'2027','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:14:16','2023-01-09 05:13:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:14:16','2023-01-09 04:14:16'),(176,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg','110:cc4526f2cf067a3fd7d45b4c6c4e23e1',2028,'post','attachment',1,0,NULL,NULL,'317994691_469520881962133_8379635794478368818_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg',NULL,'2028','attachment-image',NULL,NULL,NULL,'2028','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:14:27','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:14:27','2023-01-09 04:14:27'),(177,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg','109:7538ec3b641c11d8d1550a145f322d18',2029,'post','attachment',1,0,NULL,NULL,'318216901_469510238629864_153245366860277909_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg',NULL,'2029','attachment-image',NULL,NULL,NULL,'2029','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:14:43','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:14:43','2023-01-09 04:14:43'),(178,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg','110:750722fbef84a03148556b260471a1a3',2030,'post','attachment',1,0,NULL,NULL,'318181818_469508225296732_8609996761227991316_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg',NULL,'2030','attachment-image',NULL,NULL,NULL,'2030','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:14:54','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:14:54','2023-01-09 04:14:54'),(179,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg','110:4db4a54b734ca4aa35d17508ba973400',2031,'post','attachment',1,0,NULL,NULL,'317902162_469677445279810_3412274826300968702_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg',NULL,'2031','attachment-image',NULL,NULL,NULL,'2031','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:15:10','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:15:10','2023-01-09 04:15:10'),(180,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg','110:b232af1838cb50a4612720afba3fdb6c',2032,'post','attachment',1,0,NULL,NULL,'318441233_469673885280166_5091768336215275208_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg',NULL,'2032','attachment-image',NULL,NULL,NULL,'2032','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:15:22','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:15:22','2023-01-09 04:15:22'),(181,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg','110:f174efd37e06e49c8886b0263028bd67',2033,'post','attachment',1,0,NULL,NULL,'317909255_471073988473489_6496672276787256581_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg',NULL,'2033','attachment-image',NULL,NULL,NULL,'2033','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:15:32','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:15:32','2023-01-09 04:15:32'),(182,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg','102:3d0ad80a8876d8831d02df80b9262bf7',2034,'post','attachment',1,0,NULL,NULL,'C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg',NULL,'2034','attachment-image',NULL,NULL,NULL,'2034','attachment-image',NULL,NULL,3,NULL,'2023-01-09 04:15:45','2023-01-09 15:57:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:15:45','2023-01-09 04:15:45'),(183,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8.jpg','92:f9567120e212c35f21a628d13fd1ae12',2035,'post','attachment',1,0,NULL,NULL,'120422_HolidaysInTheVillage-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8.jpg',NULL,'2035','attachment-image',NULL,NULL,NULL,'2035','attachment-image',NULL,NULL,1,NULL,'2023-01-09 04:16:01','2023-01-09 04:22:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:16:01','2023-01-09 04:16:01'),(184,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18.jpg','93:676281081e761753ac025a1ee6032575',2036,'post','attachment',1,0,NULL,NULL,'120422_HolidaysInTheVillage-18','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18.jpg',NULL,'2036','attachment-image',NULL,NULL,NULL,'2036','attachment-image',NULL,NULL,2,NULL,'2023-01-09 04:16:27','2023-01-09 04:49:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:16:27','2023-01-09 04:16:27'),(186,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png','98:2407c0803a192f8c597a9633b5b62070',2047,'post','attachment',1,0,NULL,NULL,'Screenshot 2023-01-08 at 8.41.23 PM','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png',NULL,'2047','attachment-image',NULL,NULL,NULL,'2047','attachment-image',NULL,NULL,1,NULL,'2023-01-09 04:41:43','2023-01-09 04:43:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:41:43','2023-01-09 04:41:43'),(187,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.11-PM.png','98:89ff86f4ceaad053abcbb69634c13f7c',2048,'post','attachment',1,0,NULL,NULL,'Screenshot 2023-01-08 at 8.41.11 PM','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.11-PM.png',NULL,'2048','attachment-image',NULL,NULL,NULL,'2048','attachment-image',NULL,NULL,NULL,NULL,'2023-01-09 04:42:26','2023-01-09 12:42:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:42:26','2023-01-09 04:42:26'),(188,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png','98:8a0556f2e8745a3d4c02b24026cea752',2049,'post','attachment',1,0,NULL,NULL,'Screenshot 2023-01-08 at 8.41.00 PM','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png',NULL,'2049','attachment-image',NULL,NULL,NULL,'2049','attachment-image',NULL,NULL,1,NULL,'2023-01-09 04:43:00','2023-01-10 04:46:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:43:00','2023-01-09 04:43:00'),(189,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318792128_10159617131168983_807962145973987535_n.jpg','111:03653e3261dfec8c9fd0ed367d935b53',2052,'post','attachment',1,0,NULL,NULL,'318792128_10159617131168983_807962145973987535_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318792128_10159617131168983_807962145973987535_n.jpg',NULL,'2052','attachment-image',NULL,NULL,NULL,'2052','attachment-image',NULL,NULL,1,NULL,'2023-01-09 04:48:54','2023-01-09 04:49:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 04:48:54','2023-01-09 04:48:54'),(190,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n.jpg','112:4047062a3e0821779599dba12c6bfd93',2069,'post','attachment',1,0,NULL,NULL,'246339353_10158813569543983_4115597201873383475_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n.jpg',NULL,'2069','attachment-image',NULL,NULL,NULL,'2069','attachment-image',NULL,NULL,1,NULL,'2023-01-09 05:13:38','2023-01-09 05:13:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:13:38','2023-01-09 05:13:38'),(191,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg','112:582650b5c2e50b0725fe49d25d639a42',2072,'post','attachment',1,0,NULL,NULL,'307691786_10159387843938983_7196370717298419686_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg',NULL,'2072','attachment-image',NULL,NULL,NULL,'2072','attachment-image',NULL,NULL,1,NULL,'2023-01-09 05:18:53','2023-01-09 05:23:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:18:53','2023-01-09 05:18:53'),(192,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/265099237_10158920847618983_8229145687643592132_n.jpg','112:a6d4a28c2afc9d1f7b9464e4c1b89dcb',2073,'post','attachment',1,0,NULL,NULL,'265099237_10158920847618983_8229145687643592132_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/265099237_10158920847618983_8229145687643592132_n.jpg',NULL,'2073','attachment-image',NULL,NULL,NULL,'2073','attachment-image',NULL,NULL,NULL,NULL,'2023-01-09 05:19:01','2023-01-09 13:19:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:19:01','2023-01-09 05:19:01'),(193,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690.jpg','71:1e2c2781825e0d8ead51beb9e703d0ba',2074,'post','attachment',1,0,NULL,NULL,'IMG-9690','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690.jpg',NULL,'2074','attachment-image',NULL,NULL,NULL,'2074','attachment-image',NULL,NULL,1,NULL,'2023-01-09 05:22:07','2023-01-10 05:00:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:22:07','2023-01-09 05:22:07'),(194,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.svg','74:0ebf415c1938329f28e7e589a77a8108',2077,'post','attachment',1,0,NULL,NULL,'environment','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2023-01-09 05:36:35','2023-01-09 06:47:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:36:35','2023-01-09 05:36:35'),(195,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/economy.svg','70:7793aadcb2a2609286cb60cf69a91c81',2080,'post','attachment',1,0,NULL,NULL,'economy','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2023-01-09 05:43:13','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:43:13','2023-01-09 05:43:13'),(196,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.svg','72:473b14121440d71fe87647fc6b996550',2081,'post','attachment',1,0,NULL,NULL,'education','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2023-01-09 05:52:01','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:52:01','2023-01-09 05:52:01'),(197,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.svg','68:afa1bb2bb19c970b359b1cfd751c390d',2083,'post','attachment',1,0,NULL,NULL,'peace','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2023-01-09 05:53:20','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:53:20','2023-01-09 05:53:20'),(198,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.svg','70:3a53ac78a677680c241c042a15f8c010',2084,'post','attachment',1,0,NULL,NULL,'disease','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2023-01-09 05:57:28','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:57:28','2023-01-09 05:57:28'),(199,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.svg','71:245111557415c40bdcd9c4b6e407df6d',2085,'post','attachment',1,0,NULL,NULL,'maternal','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2023-01-09 05:58:55','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 05:58:55','2023-01-09 05:58:55'),(206,'https://test-site.wlvrotary.org/presidents-message/','51:fd8c91498249e1d0f2c8828da94d764d',2115,'post','page',1,0,NULL,NULL,'President&#8217;s Message','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2023-01-09 15:54:40','2023-01-10 04:37:19',1,NULL,NULL,NULL,NULL,0,5,2,'2023-01-09 15:57:52','2023-01-09 15:54:40'),(201,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg','70:56a2c0afa1be5d09767aabe7ab77ed85',2095,'post','attachment',1,0,NULL,NULL,'econmic','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg',NULL,'2095','attachment-image',NULL,NULL,NULL,'2095','attachment-image',NULL,NULL,1,NULL,'2023-01-09 06:28:22','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:28:22','2023-01-09 06:28:22'),(202,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg','72:0468fe22587ac74f76a85a84fae981f3',2096,'post','attachment',1,0,NULL,NULL,'education','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg',NULL,'2096','attachment-image',NULL,NULL,NULL,'2096','attachment-image',NULL,NULL,1,NULL,'2023-01-09 06:28:28','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:28:28','2023-01-09 06:28:28'),(203,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg','74:2a183862520cecc0e16d5f4070fdbc5d',2097,'post','attachment',1,0,NULL,NULL,'environment','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg',NULL,'2097','attachment-image',NULL,NULL,NULL,'2097','attachment-image',NULL,NULL,1,NULL,'2023-01-09 06:28:38','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:28:38','2023-01-09 06:28:38'),(204,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg','71:20ac00552558f5e70a6cec3568c1ac36',2098,'post','attachment',1,0,NULL,NULL,'maternal','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg',NULL,'2098','attachment-image',NULL,NULL,NULL,'2098','attachment-image',NULL,NULL,1,NULL,'2023-01-09 06:28:43','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:28:43','2023-01-09 06:28:43'),(205,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg','68:63992b42c05efb78f2c5402f56240802',2099,'post','attachment',1,0,NULL,NULL,'peace','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg',NULL,'2099','attachment-image',NULL,NULL,NULL,'2099','attachment-image',NULL,NULL,1,NULL,'2023-01-09 06:28:50','2023-01-09 06:31:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-09 06:28:50','2023-01-09 06:28:50'),(207,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n-1.jpg','114:831fc87468795fa31993fad0f2337b5f',2141,'post','attachment',1,0,NULL,NULL,'246339353_10158813569543983_4115597201873383475_n','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n-1.jpg',NULL,'2141','attachment-image',NULL,NULL,NULL,'2141','attachment-image',NULL,NULL,NULL,NULL,'2023-01-10 04:44:03','2023-01-10 12:44:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-10 04:44:03','2023-01-10 04:44:03');
/*!40000 ALTER TABLE `wpwlvrot_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wpwlvrot_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_yoast_indexable_hierarchy`
--

LOCK TABLES `wpwlvrot_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wpwlvrot_yoast_indexable_hierarchy` VALUES (17,0,0,1),(123,0,0,1),(117,0,0,1),(119,0,0,1),(127,0,0,1),(32,0,0,1),(45,0,0,1),(46,0,0,1),(47,0,0,1),(1,0,0,1),(50,0,0,1),(12,0,0,1),(9,0,0,1),(53,0,0,1),(59,0,0,1),(89,0,0,1),(101,0,0,1),(98,0,0,1),(97,0,0,1),(94,0,0,1),(93,0,0,1),(88,0,0,1),(100,0,0,1),(96,0,0,1),(92,0,0,1),(90,0,0,1),(91,0,0,1),(99,0,0,1),(64,0,0,1),(68,0,0,1),(81,0,0,1),(79,0,0,1),(78,0,0,1),(77,0,0,1),(65,0,0,1),(67,0,0,1),(73,0,0,1),(75,0,0,1),(76,0,0,1),(82,0,0,1),(83,0,0,1),(85,0,0,1),(86,0,0,1),(87,0,0,1),(104,0,0,1),(105,0,0,1),(106,0,0,1),(206,0,0,1),(19,0,0,1),(95,0,0,1),(115,0,0,1),(74,0,0,1),(84,0,0,1),(120,0,0,1),(80,0,0,1),(66,0,0,1),(151,0,0,1),(125,0,0,1),(44,0,0,1),(69,0,0,1),(128,0,0,1),(22,0,0,1),(129,0,0,1),(130,0,0,1),(131,0,0,1),(132,0,0,1),(133,0,0,1),(134,0,0,1),(135,0,0,1),(136,0,0,1),(137,0,0,1),(138,0,0,1),(24,0,0,1),(139,0,0,1),(18,0,0,1),(140,0,0,1),(143,0,0,1),(23,0,0,1),(5,0,0,1),(20,0,0,1),(144,0,0,1),(145,0,0,1),(21,0,0,1),(146,0,0,1);
/*!40000 ALTER TABLE `wpwlvrot_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_yoast_migrations`
--

DROP TABLE IF EXISTS `wpwlvrot_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `wpwlvrot_yoast_migrations_version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_yoast_migrations`
--

LOCK TABLES `wpwlvrot_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wpwlvrot_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404');
/*!40000 ALTER TABLE `wpwlvrot_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwlvrot_yoast_primary_term`
--

DROP TABLE IF EXISTS `wpwlvrot_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_yoast_primary_term`
--

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

--
-- Table structure for table `wpwlvrot_yoast_seo_links`
--

DROP TABLE IF EXISTS `wpwlvrot_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpwlvrot_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=197 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwlvrot_yoast_seo_links`
--

LOCK TABLES `wpwlvrot_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wpwlvrot_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wpwlvrot_yoast_seo_links` VALUES (109,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg',1700,2002,'image-in',17,161,1440,1440,455139,NULL,NULL),(160,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg',1829,2018,'image-in',115,166,720,960,107818,NULL,NULL),(167,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg',1851,2034,'image-in',120,182,1485,1980,485121,NULL,NULL),(91,'https://test-site.wlvrotary.org/about-us/',1700,1829,'internal',17,115,NULL,NULL,NULL,NULL,NULL),(169,'https://test-site.wlvrotary.org/sunrise-rotary-foundation/',1829,1847,'internal',115,119,NULL,NULL,NULL,NULL,NULL),(170,'https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg',1829,1917,'image-in',115,155,450,360,46037,NULL,NULL),(168,'https://test-site.wlvrotary.org/sunrise-rotary-foundation/',1829,1847,'internal',115,119,NULL,NULL,NULL,NULL,NULL),(163,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg',1847,2016,'image-in',119,164,1079,1980,189959,NULL,NULL),(172,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/246339353_10158813569543983_4115597201873383475_n.jpg',1847,2069,'image-in',119,190,1800,1440,332497,NULL,NULL),(171,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/donation.jpg',1829,2002,'image-in',115,161,1440,1440,455139,NULL,NULL),(120,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg',1700,2026,'internal',17,174,NULL,NULL,NULL,NULL,NULL),(119,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg',1700,2027,'internal',17,175,NULL,NULL,NULL,NULL,NULL),(118,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg',1700,2028,'internal',17,176,NULL,NULL,NULL,NULL,NULL),(115,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg',1700,2031,'internal',17,179,NULL,NULL,NULL,NULL,NULL),(116,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg',1700,2030,'internal',17,178,NULL,NULL,NULL,NULL,NULL),(174,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307691786_10159387843938983_7196370717298419686_n.jpg',1840,2072,'image-in',117,191,1440,1440,475082,NULL,NULL),(173,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg',1840,2015,'image-in',117,163,1485,1980,418989,NULL,NULL),(117,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg',1700,2029,'internal',17,177,NULL,NULL,NULL,NULL,NULL),(114,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg',1700,2032,'internal',17,180,NULL,NULL,NULL,NULL,NULL),(110,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg',1700,NULL,'internal',17,NULL,NULL,NULL,NULL,NULL,NULL),(113,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg',1700,2033,'internal',17,181,NULL,NULL,NULL,NULL,NULL),(111,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8-scaled.jpg',1700,NULL,'internal',17,NULL,NULL,NULL,NULL,NULL,NULL),(112,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg',1700,2034,'internal',17,182,NULL,NULL,NULL,NULL,NULL),(162,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.23-PM.png',1829,2047,'image-in',115,186,1344,1646,3375888,NULL,NULL),(196,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/IMG-9690-scaled.jpg',1858,2074,'image-in',123,193,2560,1920,797107,NULL,NULL),(123,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg',1700,2023,'internal',17,171,NULL,NULL,NULL,NULL,NULL),(122,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg',1700,2024,'internal',17,172,NULL,NULL,NULL,NULL,NULL),(121,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg',1700,2025,'internal',17,173,NULL,NULL,NULL,NULL,NULL),(194,'https://test-site.wlvrotary.org/get-involved/',1858,1851,'internal',123,120,NULL,NULL,NULL,NULL,NULL),(94,'https://test-site.wlvrotary.org/why-rotary/',1700,1858,'internal',17,123,NULL,NULL,NULL,NULL,NULL),(95,'https://test-site.wlvrotary.org/get-involved/',1700,1851,'internal',17,120,NULL,NULL,NULL,NULL,NULL),(166,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318792128_10159617131168983_807962145973987535_n.jpg',1725,2052,'image-in',44,189,723,542,92731,NULL,NULL),(165,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg',1725,2036,'image-in',44,184,1707,2560,882812,NULL,NULL),(98,'https://test-site.wlvrotary.org/sunrise-rotary-foundation/',1700,1847,'internal',17,119,NULL,NULL,NULL,NULL,NULL),(108,'https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg',1700,1917,'image-in',17,155,450,360,46037,NULL,NULL),(107,'https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg',1700,1917,'image-in',17,155,450,360,46037,NULL,NULL),(104,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-logo-master-400x340.png',1725,1899,'image-in',44,141,1246,1464,147838,NULL,NULL),(105,'https://test-site.wlvrotary.org/wp-content/uploads/2022/10/hitv-social-std-v2-600x600.png',1700,1901,'image-in',17,142,1024,1024,1524893,NULL,NULL),(106,'https://holidaysinthevillage.org',1700,NULL,'external',17,NULL,NULL,NULL,NULL,NULL,NULL),(124,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg',1700,2022,'internal',17,170,NULL,NULL,NULL,NULL,NULL),(125,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg',1700,2021,'internal',17,169,NULL,NULL,NULL,NULL,NULL),(126,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg',1700,2020,'internal',17,168,NULL,NULL,NULL,NULL,NULL),(127,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg',1700,2019,'internal',17,167,NULL,NULL,NULL,NULL,NULL),(128,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg',1700,2018,'internal',17,166,NULL,NULL,NULL,NULL,NULL),(129,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg',1700,2017,'internal',17,165,NULL,NULL,NULL,NULL,NULL),(130,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg',1700,2016,'internal',17,164,NULL,NULL,NULL,NULL,NULL),(131,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg',1700,2015,'internal',17,163,NULL,NULL,NULL,NULL,NULL),(132,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg',1700,2014,'internal',17,162,NULL,NULL,NULL,NULL,NULL),(133,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-18-scaled.jpg',1700,2036,'image-in',17,184,1707,2560,882812,NULL,NULL),(134,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/120422_HolidaysInTheVillage-8-scaled.jpg',1700,2035,'image-in',17,183,1707,2560,659684,NULL,NULL),(135,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3-1.jpeg',1700,2034,'image-in',17,182,1485,1980,485121,NULL,NULL),(136,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317909255_471073988473489_6496672276787256581_n.jpg',1700,2033,'image-in',17,181,1734,1425,302066,NULL,NULL),(137,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318441233_469673885280166_5091768336215275208_n.jpg',1700,2032,'image-in',17,180,598,960,64611,NULL,NULL),(138,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317902162_469677445279810_3412274826300968702_n.jpg',1700,2031,'image-in',17,179,1536,2048,440940,NULL,NULL),(139,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318181818_469508225296732_8609996761227991316_n.jpg',1700,2030,'image-in',17,178,2048,1536,600669,NULL,NULL),(140,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318216901_469510238629864_153245366860277909_n.jpg',1700,2029,'image-in',17,177,1536,2048,423431,NULL,NULL),(141,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317994691_469520881962133_8379635794478368818_n.jpg',1700,2028,'image-in',17,176,2048,1536,373729,NULL,NULL),(142,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/317698060_469521041962117_5593228658645240584_n.jpg',1700,2027,'image-in',17,175,1536,2048,368769,NULL,NULL),(143,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318557333_469677518613136_2605719804160828751_n.jpg',1700,2026,'image-in',17,174,1080,1440,222377,NULL,NULL),(144,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg',1700,2025,'image-in',17,173,1365,2048,558631,NULL,NULL),(145,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318582538_10159613301998983_1987186392258756093_n.jpg',1700,2024,'image-in',17,172,1365,2048,557283,NULL,NULL),(146,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318727845_10159613300583983_5045946195972474127_n.jpg',1700,2023,'image-in',17,171,1365,2048,598408,NULL,NULL),(147,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/312885301_10159482823458983_5084243080734781731_n.jpg',1700,2022,'image-in',17,170,1365,2048,600000,NULL,NULL),(148,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/307095892_10159387979733983_7386056637225188270_n.jpg',1700,2021,'image-in',17,169,2048,1536,380353,NULL,NULL),(149,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/301991414_10159385165463983_7662799712929491455_n.jpg',1700,2020,'image-in',17,168,1365,2048,508047,NULL,NULL),(150,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/275178804_10159062672773983_1714578608944652308_n.jpg',1700,2019,'image-in',17,167,1640,2048,618558,NULL,NULL),(151,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/230420288_10158672174568983_2007906273844971703_n.jpg',1700,2018,'image-in',17,166,720,960,107818,NULL,NULL),(152,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/hitv-brats.jpg',1700,2017,'image-in',17,165,960,1280,256700,NULL,NULL),(153,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/DSC02517.jpg',1700,2016,'image-in',17,164,1079,1980,189959,NULL,NULL),(154,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/619608EB-DE58-4CF7-ACDE-684778326DA2.jpeg',1700,2015,'image-in',17,163,1485,1980,418989,NULL,NULL),(155,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/C8D7A26C-D4F5-4158-9B0F-ABD05D6256A3.jpeg',1700,2014,'image-in',17,162,1485,1980,485121,NULL,NULL),(186,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/disease.jpg',1840,2094,'image-in',117,200,402,403,70178,NULL,NULL),(158,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/318757345_10159613302743983_7713379438399103532_n.jpg',1829,2025,'image-in',115,173,1365,2048,558631,NULL,NULL),(185,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/environment.jpg',1840,2097,'image-in',117,203,402,418,81915,NULL,NULL),(184,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/peace.jpg',1840,2099,'image-in',117,205,402,414,83493,NULL,NULL),(183,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/education.jpg',1840,2096,'image-in',117,202,402,408,77533,NULL,NULL),(182,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/econmic.jpg',1840,2095,'image-in',117,201,403,402,82202,NULL,NULL),(187,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/maternal.jpg',1840,2098,'image-in',117,204,414,403,66023,NULL,NULL),(189,'https://test-site.wlvrotary.org/wp-content/uploads/2022/12/e00f5922-442b-44a2-acef-4f7b4b7bea9b.jpg',2115,1917,'image-in',206,155,450,360,46037,NULL,NULL),(190,'https://test-site.wlvrotary.org/presidents-message/',1700,2115,'internal',17,206,NULL,NULL,NULL,NULL,NULL),(191,'https://test-site.wlvrotary.org/presidents-message/',1829,2115,'internal',115,206,NULL,NULL,NULL,NULL,NULL),(192,'https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-by-laws.pdf',1829,NULL,'internal',115,NULL,NULL,NULL,NULL,NULL,NULL),(193,'https://test-site.wlvrotary.org/pdf/rotary-club-of-westlake-village-sunrise-continuing-resolutions.pdf',1829,NULL,'internal',115,NULL,NULL,NULL,NULL,NULL,NULL),(195,'https://test-site.wlvrotary.org/wp-content/uploads/2023/01/Screenshot-2023-01-08-at-8.41.00-PM.png',1858,2049,'image-in',123,188,1360,1804,4793299,NULL,NULL);
/*!40000 ALTER TABLE `wpwlvrot_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2023-01-10 12:46:24
